commit | author | age | ||
69b66f | 1 | // IncrDlg.h |
JS | 2 | |
3 | #ifndef INCRDLG_H_ | |
4 | #define INCRDLG_H_ | |
5 | ||
6 | #include "ModDlg.h" | |
7 | ||
8 | class IncrDlg : public ModalDlg { | |
9 | ||
10 | private: | |
11 | float m_posIncr; | |
12 | float m_oriIncr; | |
13 | GtkWidget* m_entry_p; | |
14 | GtkWidget* m_entry_o; | |
15 | ||
16 | virtual void update_data(); | |
17 | ||
18 | public: | |
19 | ||
20 | IncrDlg(float,float); | |
21 | void get_increments(float&,float&); | |
22 | ||
23 | }; | |
24 | ||
25 | #endif |