Rev 303 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
303 | f9daq | 1 | /**************************************************************************/ |
2 | /* LabWindows/CVI User Interface Resource (UIR) Include File */ |
||
3 | /* */ |
||
4 | /* WARNING: Do not add to, delete from, or otherwise modify the contents */ |
||
5 | /* of this include file. */ |
||
6 | /**************************************************************************/ |
||
7 | |||
8 | #include <userint.h> |
||
9 | |||
10 | #ifdef __cplusplus |
||
11 | extern "C" { |
||
12 | #endif |
||
13 | |||
14 | /* Panels and Controls: */ |
||
15 | |||
16 | #define PA 1 |
||
17 | #define PA_EXIT 2 /* control type: command, callback function: ExitCB */ |
||
18 | #define PA_STOP 3 /* control type: command, callback function: StopCB */ |
||
19 | #define PA_START 4 /* control type: command, callback function: StartCB */ |
||
20 | #define PA_TSET 5 /* control type: numeric, callback function: (none) */ |
||
305 | f9daq | 21 | #define PA_HUMIDITY 6 /* control type: numeric, callback function: (none) */ |
22 | #define PA_TMON 7 /* control type: numeric, callback function: (none) */ |
||
23 | #define PA_DEBUG_1 8 /* control type: radioButton, callback function: (none) */ |
||
24 | #define PA_LOG 9 /* control type: radioButton, callback function: (none) */ |
||
25 | #define PA_GRAPH_VMON 10 /* control type: strip, callback function: (none) */ |
||
26 | #define PA_GRAPH_3 11 /* control type: strip, callback function: (none) */ |
||
27 | #define PA_GRAPH 12 /* control type: strip, callback function: (none) */ |
||
28 | #define PA_FNAME 13 /* control type: string, callback function: (none) */ |
||
29 | #define PA_ONOFF 14 /* control type: binary, callback function: SwitchOnOffCB */ |
||
30 | #define PA_CHANNEL 15 /* control type: numeric, callback function: SelectChannelCB */ |
||
31 | #define PA_IMAX 16 /* control type: numeric, callback function: (none) */ |
||
32 | #define PA_VMAX 17 /* control type: numeric, callback function: (none) */ |
||
33 | #define PA_VSET 18 /* control type: numeric, callback function: (none) */ |
||
34 | #define PA_VMON 19 /* control type: numeric, callback function: (none) */ |
||
35 | #define PA_ISET 20 /* control type: numeric, callback function: (none) */ |
||
36 | #define PA_POLAR 21 /* control type: ring, callback function: (none) */ |
||
37 | #define PA_IMON 22 /* control type: numeric, callback function: (none) */ |
||
38 | #define PA_CVCC 23 /* control type: LED, callback function: (none) */ |
||
39 | #define PA_PRESET 24 /* control type: numeric, callback function: SetPresetCB */ |
||
303 | f9daq | 40 | |
41 | |||
42 | /* Control Arrays: */ |
||
43 | |||
44 | /* (no control arrays in the resource file) */ |
||
45 | |||
46 | |||
47 | /* Menu Bars, Menus, and Menu Items: */ |
||
48 | |||
49 | /* (no menu bars in the resource file) */ |
||
50 | |||
51 | |||
52 | /* Callback Prototypes: */ |
||
53 | |||
54 | int CVICALLBACK ExitCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
55 | int CVICALLBACK SelectChannelCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
56 | int CVICALLBACK SetPresetCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
57 | int CVICALLBACK StartCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
58 | int CVICALLBACK StopCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
59 | int CVICALLBACK SwitchOnOffCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
60 | |||
61 | |||
62 | #ifdef __cplusplus |
||
63 | } |
||
64 | #endif |