helpwidget.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #ifndef HelpWidget_H
  2. #define HelpWidget_H
  3. #include <QWidget>
  4. #include <QTimer>
  5. #include <QSettings>
  6. #include <QPropertyAnimation>
  7. #include <QPushButton>
  8. namespace Ui {
  9. class HelpWidget;
  10. }
  11. class PatchDownloader;
  12. class LotroDatManager;
  13. class HelpWidget : public QWidget
  14. {
  15. Q_OBJECT
  16. public:
  17. explicit HelpWidget(QSettings* settings, PatchDownloader* patch_downloader, LotroDatManager* lotro_dat_manager, QWidget *parent = 0);
  18. ~HelpWidget();
  19. private slots:
  20. void handleContentScrolling(int value);
  21. void moveMenuHoverWidget(QPushButton* target);
  22. void scrollContentToWidget(QWidget* widget);
  23. void on_menuentry_1_clicked();
  24. void on_menuentry_2_clicked();
  25. void on_menuentry_3_clicked();
  26. void on_menuentry_4_clicked();
  27. void on_menuentry_5_clicked();
  28. private:
  29. QSettings* app_settings;
  30. PatchDownloader* patch_updater;
  31. LotroDatManager* lotro_manager;
  32. QPushButton* currently_active_entry = nullptr;
  33. QPropertyAnimation* menuHoverWidgetAnimation = nullptr;
  34. QPropertyAnimation* scrollAreaContentsAnimation = nullptr;
  35. Ui::HelpWidget *ui;
  36. };
  37. #endif // HelpWidget_H