Mercurial > hg > fxanalyse
comparison FXPlot.h @ 0:d9aae7d7f2c6
Import
author | Daniele Nicolodi <daniele.nicolodi@obspm.fr> |
---|---|
date | Tue, 03 Jul 2012 10:38:59 +0200 |
parents | |
children | 77539f2597b1 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:d9aae7d7f2c6 |
---|---|
1 /**************************************************************************/ | |
2 /* LabWindows/CVI User Interface Resource (UIR) Include File */ | |
3 /* Copyright (c) National Instruments 2011. All Rights Reserved. */ | |
4 /* */ | |
5 /* WARNING: Do not add to, delete from, or otherwise modify the contents */ | |
6 /* of this include file. */ | |
7 /**************************************************************************/ | |
8 | |
9 #include <userint.h> | |
10 | |
11 #ifdef __cplusplus | |
12 extern "C" { | |
13 #endif | |
14 | |
15 /* Panels and Controls: */ | |
16 | |
17 #define PLOTPANEL 1 /* callback function: CB_PlotEvent */ | |
18 #define PLOTPANEL_MAX 2 /* callback function: Plot_CB_ChangeMax */ | |
19 #define PLOTPANEL_MIN 3 /* callback function: Plot_CB_ChangeMin */ | |
20 #define PLOTPANEL_TEXTMSG_3 4 | |
21 #define PLOTPANEL_TEXTMSG_4 5 | |
22 #define PLOTPANEL_CHECKBOX_AUTOSCALE 6 /* callback function: Plot_CB_ChangeAutoScale */ | |
23 #define PLOTPANEL_RESETBUTTON 7 /* callback function: Plot_CB_Reset */ | |
24 #define PLOTPANEL_TEXTMSG_6 8 | |
25 #define PLOTPANEL_FREQPLOT 9 | |
26 #define PLOTPANEL_ADEV 10 | |
27 #define PLOTPANEL_SLOPE 11 | |
28 #define PLOTPANEL_MEAN 12 | |
29 #define PLOTPANEL_TEXTMSG 13 | |
30 #define PLOTPANEL_SCALINGSTEP 14 /* callback function: Plot_CB_ChangeScalingStep */ | |
31 #define PLOTPANEL_TEXTMSG_8 15 | |
32 #define PLOTPANEL_DEDRIFT 16 /* callback function: Plot_CB_ChangeDrift */ | |
33 #define PLOTPANEL_GETSLOPEBUTTON 17 /* callback function: Plot_CB_GetDrift */ | |
34 #define PLOTPANEL_CHECKBOX_DEDRIFT 18 /* callback function: Plot_CB_Reset */ | |
35 | |
36 | |
37 /* Menu Bars, Menus, and Menu Items: */ | |
38 | |
39 /* (no menu bars in the resource file) */ | |
40 | |
41 | |
42 /* Callback Prototypes: */ | |
43 | |
44 int CVICALLBACK CB_PlotEvent(int panel, int event, void *callbackData, int eventData1, int eventData2); | |
45 int CVICALLBACK Plot_CB_ChangeAutoScale(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); | |
46 int CVICALLBACK Plot_CB_ChangeDrift(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); | |
47 int CVICALLBACK Plot_CB_ChangeMax(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); | |
48 int CVICALLBACK Plot_CB_ChangeMin(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); | |
49 int CVICALLBACK Plot_CB_ChangeScalingStep(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); | |
50 int CVICALLBACK Plot_CB_GetDrift(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); | |
51 int CVICALLBACK Plot_CB_Reset(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); | |
52 | |
53 | |
54 #ifdef __cplusplus | |
55 } | |
56 #endif |