mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06: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:

committed by
Shawn Hoffman

parent
847f78e4cc
commit
16c6a19190
32
Source/Core/DolphinQt/MainWindow.h
Normal file
32
Source/Core/DolphinQt/MainWindow.h
Normal file
@ -0,0 +1,32 @@
|
||||
// Copyright 2014 Dolphin Emulator Project
|
||||
// Licensed under GPLv2
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QMainWindow>
|
||||
|
||||
// Predefinitions
|
||||
namespace Ui {
|
||||
class DMainWindow;
|
||||
}
|
||||
|
||||
class DMainWindow : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit DMainWindow(QWidget *p = 0);
|
||||
~DMainWindow();
|
||||
|
||||
private slots:
|
||||
|
||||
// Help menu
|
||||
void on_actWebsite_triggered();
|
||||
void on_actOnlineDocs_triggered();
|
||||
void on_actGitHub_triggered();
|
||||
void on_actAbout_triggered();
|
||||
|
||||
private:
|
||||
Ui::DMainWindow *ui;
|
||||
};
|
Reference in New Issue
Block a user