Subversion Repositories f9daq

Rev

Rev 197 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
195 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_STOP                       3       /* control type: command, callback function: StopCB */
19
#define  PANEL_START                      4       /* control type: command, callback function: StartCB */
20
#define  PANEL_TRGTYPE                    5       /* control type: numeric, callback function: (none) */
21
#define  PANEL_TRGLEVEL                   6       /* control type: numeric, callback function: (none) */
22
#define  PANEL_TRGDELAY                   7       /* control type: numeric, callback function: (none) */
23
#define  PANEL_RANGE                      8       /* control type: numeric, callback function: (none) */
24
#define  PANEL_TRGCHANNEL                 9       /* control type: numeric, callback function: (none) */
25
#define  PANEL_CEVE                       10      /* control type: numeric, callback function: (none) */
26
#define  PANEL_NEVE                       11      /* control type: numeric, callback function: (none) */
27
#define  PANEL_FREQUENCY                  12      /* control type: numeric, callback function: (none) */
28
#define  PANEL_TRGPOLARITY                13      /* control type: binary, callback function: (none) */
29
#define  PANEL_MASK                       14      /* control type: string, callback function: (none) */
30
#define  PANEL_FILENAME                   15      /* control type: string, callback function: (none) */
31
#define  PANEL_GRAPH                      16      /* control type: graph, callback function: (none) */
32
#define  PANEL_DEBUG                      17      /* control type: radioButton, callback function: (none) */
33
#define  PANEL_TIMER                      18      /* control type: timer, callback function: (none) */
34
 
35
 
36
     /* Control Arrays: */
37
 
38
          /* (no control arrays in the resource file) */
39
 
40
 
41
     /* Menu Bars, Menus, and Menu Items: */
42
 
43
          /* (no menu bars in the resource file) */
44
 
45
 
46
     /* Callback Prototypes: */
47
 
48
int  CVICALLBACK ExitCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
49
int  CVICALLBACK StartCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
50
int  CVICALLBACK StopCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
51
 
52
 
53
#ifdef __cplusplus
54
    }
55
#endif