dolphin/Source/Core/DolphinQt/SystemInfo.h

32 lines
472 B
C
Raw Normal View History

// Copyright 2014 Dolphin Emulator Project
2015-05-17 23:08:10 +00:00
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <memory>
#include <QDialog>
namespace Ui
{
class DSystemInfo;
}
class DSystemInfo : public QDialog
{
Q_OBJECT
public:
explicit DSystemInfo(QWidget* parent_widget = nullptr);
~DSystemInfo();
private slots:
void CopyPressed();
private:
std::unique_ptr<Ui::DSystemInfo> m_ui;
void UpdateSystemInfo();
2014-10-26 01:51:58 +00:00
QString GetOS() const;
};