~pac72/ubuntu/lucid/ddd/devel

« back to all changes in this revision

Viewing changes to ddd/GraphEditP.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Schepler
  • Date: 2004-07-22 03:49:37 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040722034937-cysl08t1jvba4jrx
Tags: 1:3.3.9-3
USERINFO has been renamed to USERINFO.txt; adjust debian/rules code
to match, to get correct information on the About DDD dialog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// $Id: GraphEditP.h,v 1.24 2001/04/26 11:08:06 zeller Exp $
 
1
// $Id$
2
2
// GraphEdit Widget -- private interface
3
3
 
4
4
// Copyright (C) 1995 Technische Universitaet Braunschweig, Germany.
161
161
    XtCallbackList preLayoutProc;         // Called before layouting
162
162
    XtCallbackList postLayoutProc;        // Called after layouting
163
163
    XtCallbackList preSelectionProc;      // Called before selection
 
164
} GraphEditPart;
164
165
 
 
166
typedef struct _GraphEditPartPrivate {
165
167
    // Private state
166
168
    GraphEditState state;       // Current state
167
169
 
187
189
    Boolean sizeChanged;        // Flag: size changed in SetValues
188
190
    Boolean redisplayEnabled;   // Flag: redisplay is enabled
189
191
 
190
 
} GraphEditPart;
 
192
} GraphEditPartPrivate;
191
193
 
 
194
// This struct is split into two parts. The first is a POD and can therefore
 
195
// be used with "offsetof". The second contains classes.
192
196
typedef struct _GraphEditRec {
 
197
  struct Res {
193
198
    CorePart        core;
194
199
    XmPrimitivePart primitive;
195
200
    GraphEditPart   graphEdit;
 
201
  };
 
202
  Res res_;                             // Plain Old Data (POD)
 
203
  GraphEditPartPrivate graphEditP;      // Class
196
204
} GraphEditRec;
197
205
 
198
206
#endif // _DDD_GraphEditP_h