~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/3rdparty/qmon/Xmt310/Xmt/HelpBoxP.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 * Motif Tools Library, Version 3.1
 
3
 * $Id$
 
4
 * 
 
5
 * Written by David Flanagan.
 
6
 * Copyright (c) 1992-2001 by David Flanagan.
 
7
 * All Rights Reserved.  See the file COPYRIGHT for details.
 
8
 * This is open source software.  See the file LICENSE for details.
 
9
 * There is no warranty for this software.  See NO_WARRANTY for details.
 
10
 *
 
11
 * $Log$
 
12
 * Revision 1.1.1.1  2001/07/18 11:06:02  root
 
13
 * Initial checkin.
 
14
 *
 
15
 * Revision 1.2  2001/06/12 16:25:28  andre
 
16
 * *** empty log message ***
 
17
 *
 
18
 *
 
19
 */
 
20
 
 
21
#ifndef _XmtHelpBoxP_h
 
22
#define _XmtHelpBoxP_h    
 
23
 
 
24
#include <Xmt/LayoutP.h>
 
25
#include <Xmt/HelpBox.h>
 
26
 
 
27
typedef struct _XmtHelpBoxClassPart {
 
28
    XtPointer extension;
 
29
} XmtHelpBoxClassPart;
 
30
 
 
31
typedef struct _XmtHelpBoxClassRec {
 
32
    CoreClassPart               core_class;
 
33
    CompositeClassPart          composite_class;
 
34
    ConstraintClassPart         constraint_class;
 
35
    XmManagerClassPart          manager_class;
 
36
    XmBulletinBoardClassPart    bulletin_class;
 
37
    XmtLayoutClassPart          layout_class;
 
38
    XmtHelpBoxClassPart         help_box_class;
 
39
} XmtHelpBoxClassRec;
 
40
 
 
41
externalref XmtHelpBoxClassRec xmtHelpBoxClassRec;
 
42
 
 
43
typedef struct _XmtHelpBoxPart {
 
44
    /* resources */
 
45
    String help_text;
 
46
    String help_title;
 
47
    String help_node;
 
48
    Pixmap help_pixmap;
 
49
    short visible_lines;
 
50
    XmFontList help_font_list;
 
51
    Pixel title_foreground;
 
52
    Pixel help_foreground;
 
53
    Pixel help_background;
 
54
    /* child widgets */
 
55
    Widget pixmap_gadget;
 
56
    Widget title_gadget;
 
57
    Widget scrolled_widget;
 
58
    Widget label_widget;
 
59
    Widget button_widget;
 
60
} XmtHelpBoxPart;
 
61
 
 
62
typedef struct _XmtHelpBoxRec {
 
63
    CorePart            core;
 
64
    CompositePart       composite;
 
65
    ConstraintPart      constraint;
 
66
    XmManagerPart       manager;
 
67
    XmBulletinBoardPart bulletin_board;
 
68
    XmtLayoutPart       layout;
 
69
    XmtHelpBoxPart      help_box;
 
70
} XmtHelpBoxRec;
 
71
 
 
72
#endif /* _XmtHelpBoxP_h */