Subversion Repositories f9daq

Rev

Rev 354 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
354 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  p1                               1
17
#define  p1_LEFT_1                        2       /* control type: command, callback function: FreeMove1CB */
18
#define  p1_RIGHT_1                       3       /* control type: command, callback function: FreeMoveCB */
19
#define  p1_STOP_1                        4       /* control type: command, callback function: FreeMoveStopCB */
20
#define  p1_EXIT                          5       /* control type: command, callback function: ExitCB */
21
#define  p1_STOP                          6       /* control type: command, callback function: StopCB */
22
#define  p1_FOURIER                       7       /* control type: command, callback function: Fourier_TransCB */
23
#define  p1_START                         8       /* control type: command, callback function: StartCB */
24
#define  p1_VOLTAGE                       9       /* control type: numeric, callback function: (none) */
25
#define  p1_WAIT_TIME                     10      /* control type: numeric, callback function: (none) */
26
#define  p1_VOLTAGE_GRAPH                 11      /* control type: graph, callback function: (none) */
27
#define  p1_NUM_POINTS                    12      /* control type: ring, callback function: (none) */
28
#define  p1_F_NAME1                       13      /* control type: string, callback function: (none) */
29
#define  p1_F_NAME                        14      /* control type: string, callback function: (none) */
30
#define  p1_WIN_FUN                       15      /* control type: ring, callback function: (none) */
31
#define  p1_EXAMPLES                      16      /* control type: command, callback function: ExamplesCB */
32
#define  p1_FREQ2                         17      /* control type: numeric, callback function: (none) */
33
#define  p1_AMPL2                         18      /* control type: numeric, callback function: (none) */
34
#define  p1_AMPL1                         19      /* control type: numeric, callback function: (none) */
35
#define  p1_FREQ1                         20      /* control type: numeric, callback function: (none) */
36
#define  p1_VOLT_GRAPH                    21      /* control type: textButton, callback function: Only_voltageCB */
356 f9daq 37
#define  p1_POS0                          22      /* control type: command, callback function: Pos0CB */
38
#define  p1_RANGE                         23      /* control type: radioButton, callback function: RangeCB */
354 f9daq 39
 
40
 
41
     /* Control Arrays: */
42
 
43
          /* (no control arrays in the resource file) */
44
 
45
 
46
     /* Menu Bars, Menus, and Menu Items: */
47
 
48
          /* (no menu bars in the resource file) */
49
 
50
 
51
     /* Callback Prototypes: */
52
 
53
int  CVICALLBACK ExamplesCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
54
int  CVICALLBACK ExitCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
55
int  CVICALLBACK Fourier_TransCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
56
int  CVICALLBACK FreeMove1CB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
57
int  CVICALLBACK FreeMoveCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
58
int  CVICALLBACK FreeMoveStopCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
59
int  CVICALLBACK Only_voltageCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
60
int  CVICALLBACK Pos0CB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
61
int  CVICALLBACK RangeCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
62
int  CVICALLBACK StartCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
63
int  CVICALLBACK StopCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
64
 
65
 
66
#ifdef __cplusplus
67
    }
68
#endif