selectstyle.h 427 B

12345678910111213141516171819202122
  1. #ifndef SELECTSTYLE_H
  2. #define SELECTSTYLE_H
  3. #include "ui_selectstyle.h"
  4. class SelectStyle : public QDialog, public Ui::SelectStyle
  5. {
  6. Q_OBJECT
  7. public:
  8. SelectStyle(QWidget* parent = 0, const char* name = 0, bool modal = false, Qt::WindowFlags fl = 0);
  9. ~SelectStyle();
  10. public slots:
  11. virtual void customStyle_toggled( bool on );
  12. protected slots:
  13. virtual void languageChange();
  14. };
  15. #endif // SELECTSTYLE_H