comparison FXAllan.h @ 135:77539f2597b1

Code cleanup
author Daniele Nicolodi <daniele.nicolodi@obspm.fr>
date Wed, 22 Jan 2014 12:29:38 +0100
parents d9aae7d7f2c6
children b3581a75a0b7
comparison
equal deleted inserted replaced
134:bd28161e5ac2 135:77539f2597b1
1 /**************************************************************************/ 1 /**************************************************************************/
2 /* LabWindows/CVI User Interface Resource (UIR) Include File */ 2 /* LabWindows/CVI User Interface Resource (UIR) Include File */
3 /* Copyright (c) National Instruments 2010. All Rights Reserved. */ 3 /* Copyright (c) National Instruments 2014. All Rights Reserved. */
4 /* */ 4 /* */
5 /* WARNING: Do not add to, delete from, or otherwise modify the contents */ 5 /* WARNING: Do not add to, delete from, or otherwise modify the contents */
6 /* of this include file. */ 6 /* of this include file. */
7 /**************************************************************************/ 7 /**************************************************************************/
8 8
13 #endif 13 #endif
14 14
15 /* Panels and Controls: */ 15 /* Panels and Controls: */
16 16
17 #define ALLANPANEL 1 /* callback function: CB_GeneralAllanPanel */ 17 #define ALLANPANEL 1 /* callback function: CB_GeneralAllanPanel */
18 #define ALLANPANEL_NORMALIZER 2 /* callback function: Allan_CB_ChangeNormalizer */ 18 #define ALLANPANEL_NORMALIZER 2 /* control type: numeric, callback function: Allan_CB_ChangeNormalization */
19 #define ALLANPANEL_ALLANPLOT 3 19 #define ALLANPANEL_ALLANPLOT 3 /* control type: graph, callback function: (none) */
20 #define ALLANPANEL_MAX 4 /* callback function: Allan_CB_ChangeMax */ 20 #define ALLANPANEL_MAX 4 /* control type: numeric, callback function: Allan_CB_ChangeYLim */
21 #define ALLANPANEL_MIN 5 /* callback function: Allan_CB_ChangeMin */ 21 #define ALLANPANEL_MIN 5 /* control type: numeric, callback function: Allan_CB_ChangeYLim */
22 #define ALLANPANEL_CHECKBOX_AUTOSCALE 6 /* callback function: Allan_CB_ChangeAutoScale */ 22 #define ALLANPANEL_CHECKBOX_AUTOSCALE 6 /* control type: radioButton, callback function: Allan_CB_ChangeAutoScale */
23 #define ALLANPANEL_RESETBUTTON 7 /* callback function: Allan_CB_Reset */ 23 #define ALLANPANEL_RESETBUTTON 7 /* control type: command, callback function: Allan_CB_Reset */
24 #define ALLANPANEL_DRIFT 8 24 #define ALLANPANEL_DRIFT 8 /* control type: numeric, callback function: (none) */
25 #define ALLANPANEL_DEDRIFT 9 25 #define ALLANPANEL_DEDRIFT 9 /* control type: radioButton, callback function: (none) */
26
27
28 /* Control Arrays: */
29
30 /* (no control arrays in the resource file) */
26 31
27 32
28 /* Menu Bars, Menus, and Menu Items: */ 33 /* Menu Bars, Menus, and Menu Items: */
29 34
30 /* (no menu bars in the resource file) */ 35 /* (no menu bars in the resource file) */
31 36
32 37
33 /* Callback Prototypes: */ 38 /* Callback Prototypes: */
34 39
35 int CVICALLBACK Allan_CB_ChangeAutoScale(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); 40 int CVICALLBACK Allan_CB_ChangeAutoScale(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
36 int CVICALLBACK Allan_CB_ChangeMax(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); 41 int CVICALLBACK Allan_CB_ChangeNormalization(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
37 int CVICALLBACK Allan_CB_ChangeMin(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); 42 int CVICALLBACK Allan_CB_ChangeYLim(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
38 int CVICALLBACK Allan_CB_ChangeNormalizer(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
39 int CVICALLBACK Allan_CB_Reset(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); 43 int CVICALLBACK Allan_CB_Reset(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
40 int CVICALLBACK CB_GeneralAllanPanel(int panel, int event, void *callbackData, int eventData1, int eventData2); 44 int CVICALLBACK CB_GeneralAllanPanel(int panel, int event, void *callbackData, int eventData1, int eventData2);
41 45
42 46
43 #ifdef __cplusplus 47 #ifdef __cplusplus