mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
[UI] Remove DolphinQt
This commit is contained in:
@ -1,77 +0,0 @@
|
||||
// Copyright 2014 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <QMainWindow>
|
||||
|
||||
#include "Core/Core.h"
|
||||
|
||||
#include "DolphinQt/GameList/GameTracker.h"
|
||||
#include "DolphinQt/VideoInterface/RenderWidget.h"
|
||||
|
||||
// Predefinitions
|
||||
namespace Ui
|
||||
{
|
||||
class DMainWindow;
|
||||
}
|
||||
|
||||
class DMainWindow final : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit DMainWindow(QWidget* parent_widget = nullptr);
|
||||
~DMainWindow();
|
||||
|
||||
// DRenderWidget
|
||||
bool RenderWidgetHasFocus() const { return m_render_widget->isActiveWindow(); }
|
||||
DRenderWidget* GetRenderWidget() { return m_render_widget.get(); }
|
||||
|
||||
signals:
|
||||
void CoreStateChanged(Core::EState state);
|
||||
|
||||
public slots:
|
||||
// Main toolbar (also used by DRenderWidget)
|
||||
bool OnStop();
|
||||
|
||||
private slots:
|
||||
// Emulation
|
||||
void StartGame(const QString filename);
|
||||
void OnCoreStateChanged(Core::EState state);
|
||||
|
||||
// Main toolbar
|
||||
void OnBrowse();
|
||||
void OnPlay();
|
||||
void OnReset();
|
||||
|
||||
// View menu
|
||||
void OnGameListStyleChanged();
|
||||
|
||||
// Misc.
|
||||
void UpdateIcons();
|
||||
|
||||
private:
|
||||
bool event(QEvent* e) override;
|
||||
void closeEvent(QCloseEvent* ce) override;
|
||||
std::unique_ptr<Ui::DMainWindow> m_ui;
|
||||
DGameTracker* m_game_tracker;
|
||||
|
||||
// Misc.
|
||||
void DisableScreensaver();
|
||||
void EnableScreensaver();
|
||||
// Emulation
|
||||
QString RequestBootFilename();
|
||||
QString ShowFileDialog();
|
||||
QString ShowFolderDialog();
|
||||
void DoStartPause();
|
||||
bool Stop();
|
||||
|
||||
std::unique_ptr<DRenderWidget> m_render_widget;
|
||||
bool m_isStopping = false;
|
||||
};
|
||||
|
||||
// Pointer to the only instance of DMainWindow, used by Host_*
|
||||
extern DMainWindow* g_main_window;
|
Reference in New Issue
Block a user