Subversion Repositories f9daq

Rev

Rev 305 | 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) */
311 f9daq 22
#define  PA_HTMON                         7       /* control type: numeric, callback function: (none) */
23
#define  PA_TMON                          8       /* control type: numeric, callback function: (none) */
24
#define  PA_DEBUG_1                       9       /* control type: radioButton, callback function: (none) */
25
#define  PA_LOG                           10      /* control type: radioButton, callback function: (none) */
26
#define  PA_GRAPH_VMON                    11      /* control type: strip, callback function: (none) */
27
#define  PA_GRAPH_3                       12      /* control type: strip, callback function: (none) */
28
#define  PA_GRAPH                         13      /* control type: strip, callback function: (none) */
29
#define  PA_FNAME                         14      /* control type: string, callback function: (none) */
30
#define  PA_ONOFF                         15      /* control type: binary, callback function: SwitchOnOffCB */
31
#define  PA_CHANNEL                       16      /* control type: numeric, callback function: SelectChannelCB */
32
#define  PA_IMAX                          17      /* control type: numeric, callback function: (none) */
33
#define  PA_VMAX                          18      /* control type: numeric, callback function: (none) */
34
#define  PA_VSET                          19      /* control type: numeric, callback function: (none) */
35
#define  PA_VMON                          20      /* control type: numeric, callback function: (none) */
36
#define  PA_ISET                          21      /* control type: numeric, callback function: (none) */
37
#define  PA_POLAR                         22      /* control type: ring, callback function: (none) */
38
#define  PA_IMON                          23      /* control type: numeric, callback function: (none) */
39
#define  PA_CVCC                          24      /* control type: LED, callback function: (none) */
40
#define  PA_PRESET                        25      /* control type: numeric, callback function: SetPresetCB */
41
#define  PA_FAN                           26      /* control type: binary, callback function: SwitchCoolingOnOffCB */
42
#define  PA_ARDUINO                       27      /* control type: string, callback function: (none) */
303 f9daq 43
 
44
 
45
     /* Control Arrays: */
46
 
47
          /* (no control arrays in the resource file) */
48
 
49
 
50
     /* Menu Bars, Menus, and Menu Items: */
51
 
52
          /* (no menu bars in the resource file) */
53
 
54
 
55
     /* Callback Prototypes: */
56
 
57
int  CVICALLBACK ExitCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
58
int  CVICALLBACK SelectChannelCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
59
int  CVICALLBACK SetPresetCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
60
int  CVICALLBACK StartCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
61
int  CVICALLBACK StopCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
311 f9daq 62
int  CVICALLBACK SwitchCoolingOnOffCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
303 f9daq 63
int  CVICALLBACK SwitchOnOffCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
64
 
65
 
66
#ifdef __cplusplus
67
    }
68
#endif