settingswidget.h 867 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #ifndef SettingsWidget_H
  2. #define SettingsWidget_H
  3. #include <QWidget>
  4. #include <QTimer>
  5. #include <QSettings>
  6. #include <QPropertyAnimation>
  7. #include <QPushButton>
  8. namespace Ui {
  9. class SettingsWidget;
  10. }
  11. class PatchDownloader;
  12. class LotroDatManager;
  13. class SettingsWidget : public QWidget
  14. {
  15. Q_OBJECT
  16. public:
  17. explicit SettingsWidget(QSettings* settings, PatchDownloader* patch_downloader, LotroDatManager* lotro_dat_manager, QWidget *parent = 0);
  18. ~SettingsWidget();
  19. private slots:
  20. void on_interface_scale_combobox_common_currentIndexChanged(const QString &arg1);
  21. void on_change_folder_button_clicked();
  22. void on_lotro_language_combobox_currentIndexChanged(int index);
  23. private:
  24. QSettings* app_settings;
  25. PatchDownloader* patch_updater;
  26. LotroDatManager* lotro_manager;
  27. Ui::SettingsWidget *ui;
  28. };
  29. #endif // SettingsWidget_H