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
|
/*
* Motif Tools Library, Version 3.1
* $Id$
*
* Written by David Flanagan.
* Copyright (c) 1992-2001 by David Flanagan.
* All Rights Reserved. See the file COPYRIGHT for details.
* This is open source software. See the file LICENSE for details.
* There is no warranty for this software. See NO_WARRANTY for details.
*
* $Log$
* Revision 1.1.1.1 2001/07/18 11:06:02 root
* Initial checkin.
*
* Revision 1.2 2001/06/12 16:25:28 andre
* *** empty log message ***
*
*
*/
#ifndef _XmtHelpBrowserP_h
#define _XmtHelpBrowserP_h
#include <Xmt/HelpBrowser.h>
#include <Xmt/Help.h>
#include <Xmt/LayoutP.h>
#define UPBUTTONS 6
#define XREFBUTTONS 6
typedef struct _XmtHelpTree {
XmtHelpNode *help;
struct _XmtHelpTree **children;
short num_children;
short *crossrefs; /* index of crossrefs in the toc */
short num_crossrefs;
struct _XmtHelpTree *parent;
XmString title;
} XmtHelpTree;
typedef struct _XmtHelpBrowserClassPart {
XtPointer extension;
} XmtHelpBrowserClassPart;
typedef struct _XmtHelpBrowserClassRec {
CoreClassPart core_class;
CompositeClassPart composite_class;
ConstraintClassPart constraint_class;
XmManagerClassPart manager_class;
XmBulletinBoardClassPart bulletin_class;
XmtLayoutClassPart layout_class;
XmtHelpBrowserClassPart help_browser_class;
} XmtHelpBrowserClassRec;
externalref XmtHelpBrowserClassRec xmtHelpBrowserClassRec;
typedef struct _XmtHelpBrowserPart {
/* resources */
String title_label;
String toc_label;
String index_label;
String crossref_label;
String next_label;
String prev_label;
String done_label;
String top_node;
String current_node;
Pixmap title_pixmap;
XmFontList text_font_list; /* for the help text itself */
XmFontList section_font_list; /* for section titles */
XmFontList toc_font_list; /* for titles in the toc & xref widgets */
XmFontList index_font_list; /* for keywords in the index widget */
Pixel text_foreground;
Pixel text_background;
Dimension text_rows;
Dimension text_columns;
Dimension toc_rows;
/* child widgets */
Widget icon_g, title_g;
Widget toc_w, index_w;
Widget text_sw, label_sw;
Widget text_w, label_w;
Widget next_w, prev_w, done_w;
Widget text_title_w; /* an option menu */
Widget text_title_pane; /* a menu pane containing these items */
Widget title_up_items[UPBUTTONS];
Widget see_also_label;
Widget title_xref_items[XREFBUTTONS];
Widget toc_title_g, index_title_g, xref_title_g;
/* internal state */
XmtHelpTree *tree;
XmtHelpTree **toc;
short toc_len;
XmtHelpTree **index;
short index_len;
short current_node_number;
unsigned char current_format;
} XmtHelpBrowserPart;
typedef struct _XmtHelpBrowserRec {
CorePart core;
CompositePart composite;
ConstraintPart constraint;
XmManagerPart manager;
XmBulletinBoardPart bulletin_board;
XmtLayoutPart layout;
XmtHelpBrowserPart help_browser;
} XmtHelpBrowserRec;
#endif
|