author | greg |
Wed, 16 Sep 2009 15:16:19 +0200 | |
changeset 588 | ee181b4f177b |
parent 385 | fff25f16c923 |
permissions | -rw-r--r-- |
246
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
1 |
#ifndef MAIN_H_ |
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
2 |
#define MAIN_H_ |
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
3 |
|
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
4 |
#include <wx/tglbtn.h> |
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
5 |
#include <wx/slider.h> |
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
6 |
#include <wx/brush.h> |
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
7 |
#include <wx/dynarray.h> |
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
8 |
#include <wx/listbox.h> |
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
9 |
#include <wx/gauge.h> |
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
10 |
#include <wx/spinctrl.h> |
316 | 11 |
#include <wx/notebook.h> |
246
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
12 |
|
385
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
13 |
class MyApp:public wxApp |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
14 |
{ |
246
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
15 |
public: |
385
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
16 |
virtual bool OnInit (); |
246
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
17 |
}; |
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
18 |
|
385
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
19 |
class MyFrame:public wxFrame |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
20 |
{ |
246
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
21 |
public: |
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
22 |
|
385
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
23 |
wxNotebook * book; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
24 |
wxButton *stop; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
25 |
wxButton *start; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
26 |
wxTextCtrl *busname; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
27 |
wxSpinCtrl *inst1; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
28 |
wxSpinCtrl *inst2; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
29 |
wxSpinCtrl *inst3; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
30 |
wxSpinCtrl *inst4; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
31 |
wxSpinCtrl *inst5; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
32 |
wxSpinCtrl *inst6; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
33 |
wxSpinCtrl *inst7; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
34 |
wxSpinCtrl *inst8; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
35 |
wxTextCtrl *drivername; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
36 |
wxSpinCtrl *node_id; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
37 |
wxToggleButton *inbt1; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
38 |
wxToggleButton *inbt2; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
39 |
wxToggleButton *inbt3; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
40 |
wxToggleButton *inbt4; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
41 |
wxToggleButton *inbt5; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
42 |
wxToggleButton *inbt6; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
43 |
wxToggleButton *inbt7; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
44 |
wxToggleButton *inbt8; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
45 |
wxSlider *ins1; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
46 |
wxSlider *ins2; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
47 |
wxSlider *ins3; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
48 |
wxSlider *ins4; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
49 |
wxSlider *ins5; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
50 |
wxSlider *ins6; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
51 |
wxSlider *ins7; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
52 |
wxSlider *ins8; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
53 |
wxToggleButton *outbt1; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
54 |
wxToggleButton *outbt2; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
55 |
wxToggleButton *outbt3; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
56 |
wxToggleButton *outbt4; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
57 |
wxToggleButton *outbt5; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
58 |
wxToggleButton *outbt6; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
59 |
wxToggleButton *outbt7; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
60 |
wxToggleButton *outbt8; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
61 |
wxGauge *outs1; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
62 |
wxGauge *outs2; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
63 |
wxGauge *outs3; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
64 |
wxGauge *outs4; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
65 |
wxStaticText *outst1; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
66 |
wxStaticText *outst2; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
67 |
wxStaticText *outst3; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
68 |
wxStaticText *outst4; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
69 |
wxSlider *echelle; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
70 |
wxPanel *mygraphpan; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
71 |
wxPanel *mylegpan; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
72 |
wxListBox *inlist; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
73 |
wxArrayInt in; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
74 |
wxTimer m_timer; |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
75 |
|
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
76 |
MyFrame (const wxString & title); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
77 |
|
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
78 |
void OnListBoxDoubleClick (wxCommandEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
79 |
void OnInbt1 (wxCommandEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
80 |
void OnInbt2 (wxCommandEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
81 |
void OnInbt3 (wxCommandEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
82 |
void OnInbt4 (wxCommandEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
83 |
void OnInbt5 (wxCommandEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
84 |
void OnInbt6 (wxCommandEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
85 |
void OnInbt7 (wxCommandEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
86 |
void OnInbt8 (wxCommandEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
87 |
void OnQuit (wxCommandEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
88 |
void OnAdd (wxCommandEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
89 |
void OnRemove (wxCommandEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
90 |
void OnAbout (wxCommandEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
91 |
void OnStart (wxCommandEvent & WXUNUSED (event)); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
92 |
void Start (); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
93 |
void OnStop (wxCommandEvent & WXUNUSED (event)); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
94 |
void OnFreqBoxClick (wxCommandEvent & WXUNUSED (event)); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
95 |
void OnLoad (wxCommandEvent & WXUNUSED (event)); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
96 |
void OnPaint (wxPaintEvent & WXUNUSED (event)); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
97 |
void OnIns1 (wxScrollEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
98 |
void OnIns2 (wxScrollEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
99 |
void OnIns3 (wxScrollEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
100 |
void OnIns4 (wxScrollEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
101 |
void OnIns5 (wxScrollEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
102 |
void OnIns6 (wxScrollEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
103 |
void OnIns7 (wxScrollEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
104 |
void OnIns8 (wxScrollEvent & event); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
105 |
void OnInst1 (wxSpinEvent & ev); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
106 |
void OnInst2 (wxSpinEvent & ev); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
107 |
void OnInst3 (wxSpinEvent & ev); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
108 |
void OnInst4 (wxSpinEvent & ev); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
109 |
void OnInst5 (wxSpinEvent & ev); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
110 |
void OnInst6 (wxSpinEvent & ev); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
111 |
void OnInst7 (wxSpinEvent & ev); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
112 |
void OnInst8 (wxSpinEvent & ev); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
113 |
void Paint (); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
114 |
void OnTimer (wxTimerEvent & event); |
246
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
115 |
private: |
385
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
116 |
DECLARE_EVENT_TABLE ()}; |
246
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
117 |
|
385
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
118 |
void actu (void); |
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
119 |
void actu_output (void); |
246
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
120 |
|
d635cfc520ee
Added contribution from Nicolas GRANDEMANGE. DS-401 slave GUI based on wxwidget.
etisserant
parents:
diff
changeset
|
121 |
|
385
fff25f16c923
Cleaned DS-401GUI (definitively removed graph) added options to open directly on the right Input or Output page. Little fixes.
etisserant
parents:
316
diff
changeset
|
122 |
#endif /*MAIN_H_ */ |