-
Notifications
You must be signed in to change notification settings - Fork 1
/
axSubW.h
61 lines (54 loc) · 1.99 KB
/
axSubW.h
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
/*************************************************************************\
* Copyright (c) 2002 The University of Chicago, as Operator of Argonne
* National Laboratory.
* Copyright (c) 2002 Deutches Elektronen-Synchrotron in der Helmholtz-
* Gemelnschaft (DESY).
* Copyright (c) 2002 Berliner Speicherring-Gesellschaft fuer Synchrotron-
* Strahlung mbH (BESSY).
* Copyright (c) 2002 Southeastern Universities Research Association, as
* Operator of Thomas Jefferson National Accelerator Facility.
* Copyright (c) 2002 The Regents of the University of California, as
* Operator of Los Alamos National Laboratory.
* This file is distributed subject to a Software License Agreement found
* in the file LICENSE that is included with this distribution.
\*************************************************************************/
/* axSubW.h */
/************************DESCRIPTION***********************************
structure for subWindows
**********************************************************************/
#ifndef INCaxSubWh
#define INCaxSubWh
#include <Xm/Xm.h>
#include "sllLib.h"
/* display sub window structure */
struct subWindow {
/* ----- Window info ----- */
void *area;
Widget drawing_area;
Widget scrolled_w;
Widget form_vsb;
Widget sevrAboveInd;
Widget vsb;
Widget sevrBelowInd;
Dimension viewHeight;
Dimension rowHeight;
Dimension marginHeight;
int viewRowCount;
int oldViewRowCount;
/* ----- Config info ----- */
int modified;
void *parentLink;
int viewConfigCount;
int oldViewConfigCount;
unsigned int viewOffset;
/* ----- view routines ----- */
void *(*alViewNth)();
void *(*alViewNext)();
int (*alViewMaxSevrN)();
/* ----- Selection info ----- */
void *selectionLink;
Widget selectionWidget;
/* ----- line item info ----- */
SLIST *lines;
};
#endif