mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-28 21:26:07 +00:00
DolphinQt: initial commit.
This adds the beginning of the DolphinQt user interface. It doesn't do anything useful yet and only builds via CMake.
This commit is contained in:
parent
847f78e4cc
commit
16c6a19190
10 changed files with 445 additions and 2 deletions
27
Source/Core/DolphinQt/AboutDialog.h
Normal file
27
Source/Core/DolphinQt/AboutDialog.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
// Copyright 2014 Dolphin Emulator Project
|
||||
// Licensed under GPLv2
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
// Predefinitions
|
||||
namespace Ui {
|
||||
class DAboutDialog;
|
||||
}
|
||||
|
||||
class DAboutDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit DAboutDialog(QWidget *p = 0);
|
||||
~DAboutDialog();
|
||||
|
||||
private slots:
|
||||
void on_label_linkActivated(const QString &link);
|
||||
|
||||
private:
|
||||
Ui::DAboutDialog *ui;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue