X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdrawingsettingsdlg.h;fp=src%2Fdrawingsettingsdlg.h;h=19c9d985bfed48986fdef3bfff379885279a2856;hb=41644f6a841b45cb6f1f7a96c93fd550f67a7974;hp=0000000000000000000000000000000000000000;hpb=d9f34cb7917e396a1df805687234d5473d82283b;p=architektonas diff --git a/src/drawingsettingsdlg.h b/src/drawingsettingsdlg.h new file mode 100644 index 0000000..19c9d98 --- /dev/null +++ b/src/drawingsettingsdlg.h @@ -0,0 +1,24 @@ +#ifndef __DRAWINGSETTINGSDLG_H__ +#define __DRAWINGSETTINGSDLG_H__ + +#include + +class DrawingSettingsDlg: public QDialog +{ + Q_OBJECT + + public: + DrawingSettingsDlg(QWidget * parent = 0); + ~DrawingSettingsDlg(); + + private: + QDialogButtonBox * buttonBox; + + public: + QComboBox * baseUnit; + QComboBox * unitStyle; + QComboBox * decimalPrecision; + QComboBox * fractionalPrecision; +}; + +#endif // __DRAWINGSETTINGSDLG_H__