dolphin/Source/Core/DolphinQt/SystemInfo.h
Augustin Cavalier 74291017e5 SystemInfo: various cleanup.
* Rename the copy slot to match naming convention elsewhere
 * Remove the Mac 10.7/10.8 detection as we don't support it now
2014-11-26 15:40:38 -05:00

31 lines
471 B
C++

// Copyright 2014 Dolphin Emulator Project
// 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();
QString GetOS() const;
};