Rev | Line | |
---|
[20] | 1 | #ifndef SCREENGENERATOR_H |
---|
| 2 | #define SCREENGENERATOR_H |
---|
| 3 | |
---|
| 4 | #include <math.h> |
---|
| 5 | #include <QtGui> |
---|
| 6 | #include <QtGui/QMainWindow> |
---|
| 7 | #include "ui_screenGenerator.h" |
---|
| 8 | |
---|
| 9 | class screenGenerator : public QMainWindow |
---|
| 10 | { |
---|
| 11 | Q_OBJECT |
---|
| 12 | |
---|
| 13 | public: |
---|
| 14 | screenGenerator(QWidget *parent = 0, Qt::WFlags flags = 0); |
---|
| 15 | ~screenGenerator(); |
---|
| 16 | |
---|
| 17 | private: |
---|
| 18 | Ui::screenGeneratorClass ui; |
---|
| 19 | |
---|
| 20 | double rad2deg( double deg) {return deg*180.0/3.14159265358979323846;}; |
---|
| 21 | double deg2rad( double rad) {return rad*3.14159265358979323846/180.0;}; |
---|
| 22 | |
---|
| 23 | |
---|
| 24 | private slots: |
---|
| 25 | void on_actionAbout_screenGenerator_triggered(); |
---|
| 26 | void on_actionAbout_Qt_triggered(); |
---|
| 27 | void on_pBGenerate_clicked(); |
---|
| 28 | }; |
---|
| 29 | |
---|
| 30 | #endif // SCREENGENERATOR_H |
---|
Note: See
TracBrowser
for help on using the repository browser.