settingswidget.h 565 B

1234567891011121314151617181920212223242526272829303132
  1. #ifndef SETTINGSWIDGET_H
  2. #define SETTINGSWIDGET_H
  3. #include <QWidget>
  4. namespace Ui {
  5. class SettingsWidget;
  6. }
  7. class LegacyApp;
  8. class SettingsWidget : public QWidget
  9. {
  10. Q_OBJECT
  11. public:
  12. explicit SettingsWidget(LegacyApp *_app, QWidget *parent = 0);
  13. ~SettingsWidget();
  14. private slots:
  15. void UpdateFolderPath();
  16. void on_download_restrict_slider_valueChanged(int value);
  17. void on_interface_scale_combobox_common_currentIndexChanged(const QString &arg1);
  18. private:
  19. Ui::SettingsWidget *ui;
  20. LegacyApp *app;
  21. };
  22. #endif // SETTINGSWIDGET_H