1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
/*******************************************************************************
* *
* Viewmol *
* *
* T A B B O O K . H *
* *
* Copyright (c) Joerg-R. Hill, October 2003 *
* *
********************************************************************************
*
* $Id: TabBook.h,v 1.2 2003/11/07 12:53:27 jrh Exp $
* $Log: TabBook.h,v $
* Revision 1.2 2003/11/07 12:53:27 jrh
* Release 2.4
*
* Revision 1.1 2000/12/10 15:40:37 jrh
* Initial revision
*
*/
/*
TabBook.h - Public definitions for TabBook widget
See TabBook documentation
Copyright 1996 COMPUTER GENERATION, INC.,
The software is provided "as is", without warranty of any kind, express
or implied, including but not limited to the warranties of
merchantability, fitness for a particular purpose and noninfringement.
In no event shall Computer Generation, inc. nor the author be liable for
any claim, damages or other liability, whether in an action of contract,
tort or otherwise, arising from, out of or in connection with the
software or the use or other dealings in the software.
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation.
Author:
Gary Aviv
Computer Generation, Inc.,
gary@compgen.com
*/
/* Revision History:
$Log: TabBook.h,v $
Revision 1.2 2003/11/07 12:53:27 jrh
Release 2.4
Revision 1.1 2000/12/10 15:40:37 jrh
Initial revision
Revision 1.1 1997/05/01 22:20:51 eric
Initial revision
$log
Initial
$log
*/
#ifndef _XcgTabBook_h
#define _XcgTabBook_h
/***********************************************************************
*
* TabBook Widget
*
***********************************************************************/
/*
New resource names/classes
*/
#define XcgNautoManage "autoManage"
#define XcgCAutoManage "AutoManage"
#define XcgNactivePage "activePage"
#define XcgCActivePage "ActivePage"
#define XcgNnewPageCallback "newPageCallback,"
#define XcgCNewPageCallback "NewPageCallback,"
/*
Constraint resource names/classes
*/
#define XcgNresizeChild "resizeChild"
#define XcgCResizeChild "ResizeChild"
#define XcgRESIZE_NONE 0
#define XcgRESIZE_VERTICAL 1
#define XcgRESIZE_HORIZONTAL 2
#define XcgRESIZE_BOTH (XcgRESIZE_VERTICAL | XcgRESIZE_HORIZONTAL)
#define XcgNanchorChild "anchorChild"
#define XcgCAnchorChild "AnchorChild"
#define XcgANCHOR_CENTER 0
#define XcgANCHOR_EAST 1
#define XcgANCHOR_NORTH 2
#define XcgANCHOR_NORTHEAST 3
#define XcgANCHOR_NORTHWEST 4
#define XcgANCHOR_SOUTH 5
#define XcgANCHOR_SOUTHEAST 6
#define XcgANCHOR_SOUTHWEST 7
#define XcgANCHOR_WEST 8
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
typedef struct _TabBookClassRec *TabBookWidgetClass;
typedef struct _TabBookRec *TabBookWidget;
extern WidgetClass xcgTabBookWidgetClass;
#define XcgTabBook_OPT_NO_CB 1
Boolean XcgTabBookSetActivePage(Widget w, int page, int option );
int XcgTabBookGetActivePage(Widget w );
Widget XcgTabBookGetActivePageWidget(Widget w);
#if defined(__cplusplus) || defined(c_plusplus)
}
#endif
/*
* Callback reasons. Try to stay out of range of the Motif XmCR_* reasons.
*/
typedef enum _XcgTabBookgReasonType {
XcgNewPage = 202 /* New page is active */
} XcgTabBookReasonType;
/*
** Struct passed to application when called back
*/
typedef struct _XcgTabBookCallbackData
{
XcgTabBookReasonType reason; /* reason for callback */
XEvent *event; /* button event, NULL if emulated */
int prev_active_page; /* 0 when initially called */
int active_page; /* new active page */
Widget button; /* the button widget which was
pressed (emulated or actual*/
Boolean ret_veto; /* caller may set to True to stop page change */
int future1;
void * future2;
} XcgTabBookCallbackData;
#endif /* _XcgTabBook_h */
|