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