Commit | Autor | Alter | ||
8c7455 | 1 | // UnitsDlg.h |
JS | 2 | |
3 | #ifndef UNITSDLG_H_ | |
4 | #define UNITSDLG_H_ | |
5 | ||
6 | #include "ModDlg.h" | |
7 | ||
8 | class UnitsDlg : public ModalDlg { | |
9 | ||
10 | private: | |
11 | ||
12 | int m_posUnit; | |
13 | int m_oriUnit; | |
14 | ||
15 | virtual void update_data(); | |
16 | static void OnPosRadio(GtkToggleButton*,gpointer); | |
17 | static void OnOriRadio(GtkToggleButton*,gpointer); | |
18 | ||
19 | public: | |
20 | ||
21 | UnitsDlg(int,int); | |
22 | void GetUnits(int&,int&); | |
23 | ||
24 | }; | |
25 | ||
26 | #endif |