mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
138 lines
4.6 KiB
C
138 lines
4.6 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
/*----------------------------------------------------------------------*/
|
|
/* */
|
|
/* Name: <Xfe/FancyBoxP.h> */
|
|
/* Description: XfeFancyBox widget private header file. */
|
|
/* Author: Ramiro Estrugo <ramiro@netscape.com> */
|
|
/* */
|
|
/*----------------------------------------------------------------------*/
|
|
|
|
#ifndef _XfeFancyBoxP_h_ /* start FancyBoxP.h */
|
|
#define _XfeFancyBoxP_h_
|
|
|
|
#include <Xfe/FancyBox.h>
|
|
#include <Xfe/ComboBoxP.h>
|
|
|
|
XFE_BEGIN_CPLUSPLUS_PROTECTION
|
|
|
|
/*----------------------------------------------------------------------*/
|
|
/* */
|
|
/* XfeFancyBoxClassPart */
|
|
/* */
|
|
/*----------------------------------------------------------------------*/
|
|
typedef struct
|
|
{
|
|
XtPointer extension; /* extension */
|
|
} XfeFancyBoxClassPart;
|
|
|
|
/*----------------------------------------------------------------------*/
|
|
/* */
|
|
/* XfeFancyBoxClassRec */
|
|
/* */
|
|
/*----------------------------------------------------------------------*/
|
|
typedef struct _XfeFancyBoxClassRec
|
|
{
|
|
CoreClassPart core_class;
|
|
CompositeClassPart composite_class;
|
|
ConstraintClassPart constraint_class;
|
|
XmManagerClassPart manager_class;
|
|
XfeManagerClassPart xfe_manager_class;
|
|
XfeComboBoxClassPart xfe_combo_box_class;
|
|
XfeFancyBoxClassPart xfe_fancy_box_class;
|
|
} XfeFancyBoxClassRec;
|
|
|
|
externalref XfeFancyBoxClassRec xfeFancyBoxClassRec;
|
|
|
|
/*----------------------------------------------------------------------*/
|
|
/* */
|
|
/* XfeFancyBoxPart */
|
|
/* */
|
|
/*----------------------------------------------------------------------*/
|
|
typedef struct _XfeFancyBoxPart
|
|
{
|
|
/* Icon resources */
|
|
Widget icon; /* Icon */
|
|
|
|
#if 0
|
|
/* List resources */
|
|
Widget list; /* List */
|
|
XmStringTable items; /* Items */
|
|
int item_count; /* Item count */
|
|
XmFontList list_font_list; /* List font list */
|
|
Dimension list_margin_height; /* List margin height */
|
|
Dimension list_margin_width; /* List margin width */
|
|
Dimension list_spacing; /* List spacing */
|
|
int top_item_position; /* Top item position */
|
|
int visible_item_count; /* Visible item count */
|
|
|
|
/* Arrow resources */
|
|
Widget arrow; /* Arrow */
|
|
|
|
/* Shell resources */
|
|
Boolean share_shell; /* Share shell */
|
|
Widget shell; /* Shell */
|
|
Boolean popped_up; /* Popped up ? */
|
|
|
|
/* Selected resources */
|
|
XmString selected_item; /* Selected */
|
|
int selected_position; /* Selected position */
|
|
|
|
/* Traversal resources */
|
|
Dimension highlight_thickness; /* Highlight thickness */
|
|
Boolean traversal_on; /* Traversal on ? */
|
|
|
|
/* Private data -- Dont even look past this comment -- */
|
|
Boolean highlighted; /* Highlighted ? */
|
|
#endif
|
|
|
|
} XfeFancyBoxPart;
|
|
|
|
/*----------------------------------------------------------------------*/
|
|
/* */
|
|
/* XfeFancyBoxRec */
|
|
/* */
|
|
/*----------------------------------------------------------------------*/
|
|
typedef struct _XfeFancyBoxRec
|
|
{
|
|
CorePart core;
|
|
CompositePart composite;
|
|
ConstraintPart constraint;
|
|
XmManagerPart manager;
|
|
XfeManagerPart xfe_manager;
|
|
XfeComboBoxPart xfe_combo_box;
|
|
XfeFancyBoxPart xfe_fancy_box;
|
|
} XfeFancyBoxRec;
|
|
|
|
/*----------------------------------------------------------------------*/
|
|
/* */
|
|
/* XfeFancyBoxPart Access Macro */
|
|
/* */
|
|
/*----------------------------------------------------------------------*/
|
|
#define _XfeFancyBoxPart(w) &(((XfeFancyBoxWidget) w) -> xfe_fancy_box)
|
|
|
|
XFE_END_CPLUSPLUS_PROTECTION
|
|
|
|
#endif /* end FancyBoxP.h */
|
|
|