Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
309 | 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 PANEL 1 |
||
17 | #define PANEL_EXIT 2 /* control type: command, callback function: ExitCB */ |
||
18 | #define PANEL_READ 3 /* control type: command, callback function: ReadCB */ |
||
19 | #define PANEL_DRAW 4 /* control type: command, callback function: DrawCB */ |
||
20 | #define PANEL_LOAD 5 /* control type: command, callback function: LoadCB */ |
||
21 | #define PANEL_TEXTBOX 6 /* control type: textBox, callback function: (none) */ |
||
22 | #define PANEL_TIMERON 7 /* control type: binary, callback function: TimerOnOffCB */ |
||
23 | #define PANEL_TINTERVAL 8 /* control type: numeric, callback function: SetIntervalCB */ |
||
24 | #define PANEL_TIMER 9 /* control type: timer, callback function: TimerCB */ |
||
25 | |||
26 | |||
27 | /* Control Arrays: */ |
||
28 | |||
29 | /* (no control arrays in the resource file) */ |
||
30 | |||
31 | |||
32 | /* Menu Bars, Menus, and Menu Items: */ |
||
33 | |||
34 | /* (no menu bars in the resource file) */ |
||
35 | |||
36 | |||
37 | /* Callback Prototypes: */ |
||
38 | |||
39 | int CVICALLBACK DrawCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
40 | int CVICALLBACK ExitCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
41 | int CVICALLBACK LoadCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
42 | int CVICALLBACK ReadCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
43 | int CVICALLBACK SetIntervalCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
44 | int CVICALLBACK TimerCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
45 | int CVICALLBACK TimerOnOffCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
46 | |||
47 | |||
48 | #ifdef __cplusplus |
||
49 | } |
||
50 | #endif |