]> Shamusworld >> Repos - architektonas/blob - src/drawingsettingsdlg.h
Added base units & display style to drawing.
[architektonas] / src / drawingsettingsdlg.h
1 #ifndef __DRAWINGSETTINGSDLG_H__
2 #define __DRAWINGSETTINGSDLG_H__
3
4 #include <QtWidgets>
5
6 class DrawingSettingsDlg: public QDialog
7 {
8         Q_OBJECT
9
10         public:
11                 DrawingSettingsDlg(QWidget * parent = 0);
12                 ~DrawingSettingsDlg();
13
14         private:
15                 QDialogButtonBox * buttonBox;
16
17         public:
18                 QComboBox * baseUnit;
19                 QComboBox * unitStyle;
20                 QComboBox * decimalPrecision;
21                 QComboBox * fractionalPrecision;
22 };
23
24 #endif  // __DRAWINGSETTINGSDLG_H__