2015-12-04 04:41:17 +00:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QAction>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QToolBar>
|
|
|
|
|
|
|
|
class ToolBar final : public QToolBar
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
Q_OBJECT
|
2015-12-04 04:41:17 +00:00
|
|
|
|
|
|
|
public:
|
2016-06-24 08:43:46 +00:00
|
|
|
explicit ToolBar(QWidget* parent = nullptr);
|
2015-12-04 04:41:17 +00:00
|
|
|
|
|
|
|
public slots:
|
2016-06-24 08:43:46 +00:00
|
|
|
void EmulationStarted();
|
|
|
|
void EmulationPaused();
|
|
|
|
void EmulationStopped();
|
2015-12-04 04:41:17 +00:00
|
|
|
|
|
|
|
signals:
|
2016-06-24 08:43:46 +00:00
|
|
|
void OpenPressed();
|
|
|
|
void PlayPressed();
|
|
|
|
void PausePressed();
|
|
|
|
void StopPressed();
|
|
|
|
void FullScreenPressed();
|
|
|
|
void ScreenShotPressed();
|
|
|
|
|
|
|
|
void PathsPressed();
|
|
|
|
void SettingsPressed();
|
|
|
|
|
2015-12-04 04:41:17 +00:00
|
|
|
private:
|
2016-06-24 08:43:46 +00:00
|
|
|
void MakeActions();
|
|
|
|
void UpdateIcons();
|
|
|
|
|
|
|
|
QAction* m_open_action;
|
|
|
|
QAction* m_play_action;
|
|
|
|
QAction* m_pause_action;
|
|
|
|
QAction* m_stop_action;
|
|
|
|
QAction* m_fullscreen_action;
|
|
|
|
QAction* m_screenshot_action;
|
|
|
|
QAction* m_paths_action;
|
|
|
|
QAction* m_config_action;
|
|
|
|
QAction* m_controllers_action;
|
2015-12-04 04:41:17 +00:00
|
|
|
};
|