SystemInfo.h 472 B

1234567891011121314151617181920212223242526272829303132
  1. // Copyright 2014 Dolphin Emulator Project
  2. // Licensed under GPLv2+
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include <memory>
  6. #include <QDialog>
  7. namespace Ui
  8. {
  9. class DSystemInfo;
  10. }
  11. class DSystemInfo : public QDialog
  12. {
  13. Q_OBJECT
  14. public:
  15. explicit DSystemInfo(QWidget* parent_widget = nullptr);
  16. ~DSystemInfo();
  17. private slots:
  18. void CopyPressed();
  19. private:
  20. std::unique_ptr<Ui::DSystemInfo> m_ui;
  21. void UpdateSystemInfo();
  22. QString GetOS() const;
  23. };