configure_gamelist.h 684 B

1234567891011121314151617181920212223242526272829303132333435
  1. // Copyright 2016 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include <memory>
  6. #include <QWidget>
  7. namespace Ui {
  8. class ConfigureGameList;
  9. }
  10. class ConfigureGameList : public QWidget {
  11. Q_OBJECT
  12. public:
  13. explicit ConfigureGameList(QWidget* parent = nullptr);
  14. ~ConfigureGameList() override;
  15. void applyConfiguration();
  16. private:
  17. void RequestGameListUpdate();
  18. void setConfiguration();
  19. void changeEvent(QEvent*) override;
  20. void RetranslateUI();
  21. void InitializeIconSizeComboBox();
  22. void InitializeRowComboBoxes();
  23. std::unique_ptr<Ui::ConfigureGameList> ui;
  24. };