1 #ifndef REVERSELINE_SETTING_H 2 #define REVERSELINE_SETTING_H 3 4 #include <QDialog> 5 #include "reverselinewidget.h" 6 namespace Ui { 7 class ReverseLine_Setting; 8 } 9 10 class ReverseLine_Setting : public QDialog 11 { 12 Q_OBJECT 13 14 public: 15 explicit ReverseLine_Setting(QWidget *parent = 0); 16 ~ReverseLine_Setting(); 17 18 private slots: 19 void on_pushButton_2_clicked(); 20 21 void on_pushButton_3_clicked(); 22 23 void on_pushButton_4_clicked(); 24 25 void on_pushButton_clicked(); 26 27 private: 28 Ui::ReverseLine_Setting *ui; 29 void FormInCenter(); 30 reverseLineWidget* reverLinewidget; 31 signals: 32 void reverseLine_repaint(); 33 }; 34 35 #endif // REVERSELINE_SETTING_H 36