File: BasicP.h

package info (click to toggle)
xpmumon 1.1.0
  • links: PTS
  • area: main
  • in suites: woody
  • size: 160 kB
  • ctags: 306
  • sloc: ansic: 1,787; makefile: 42
file content (63 lines) | stat: -rw-r--r-- 1,782 bytes parent folder | download | duplicates (2)
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
#ifndef _BasicP_h
#define _BasicP_h

/*
 *  Basic widget private data.
 *
 *  Copyright (c) 2002  Brendan O'Dea <bod@debian.org>
 *
 *  This is free software; you can redistribute it and/or modify it
 *  under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  General Public License for more details.
 *
 *  http://www.gnu.org/copyleft/gpl.txt
 */

#include "Basic.h"
#include <X11/Xaw/SimpleP.h>

/* New fields for the Basic widget class record */
typedef struct {
    XtPointer extension;
} BasicClassPart;

/* Class record declaration */
typedef struct {
    CoreClassPart core_class;
    SimpleClassPart simple_class;
    BasicClassPart basic_class;
} BasicClassRec;

extern BasicClassRec basicClassRec;

/* New fields for the Basic widget record */
typedef struct {
    /* resources */
    Pixel foreground;		/* scale colour */
    String label;		/* field label */
    int value;			/* current value */
    String string_value;	/* or an alternate string */
    Dimension internal_width;	/* padding on either side of label */
    XFontStruct *font;		/* ...using font */
    String units;		/* ...and optional units */
    int scale_factor;		/* ...scaled by this factor */
    int precision;		/* ...decimal places */

    /* private state */
    GC _gc;			/* GC for basic */
} BasicPart;

/* Instance record declaration */
typedef struct _BasicRec {
    CorePart core;
    SimplePart simple;
    BasicPart basic;
} BasicRec;

#endif /* _BasicP_h */