mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 12:48:57 +00:00
Reformat all the things. Have fun with merge conflicts.
This commit is contained in:
parent
2115e8a4a6
commit
3570c7f03a
1116 changed files with 187405 additions and 180344 deletions
|
@ -10,37 +10,38 @@
|
|||
|
||||
class ToolBar final : public QToolBar
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ToolBar(QWidget* parent = nullptr);
|
||||
explicit ToolBar(QWidget* parent = nullptr);
|
||||
|
||||
public slots:
|
||||
void EmulationStarted();
|
||||
void EmulationPaused();
|
||||
void EmulationStopped();
|
||||
void EmulationStarted();
|
||||
void EmulationPaused();
|
||||
void EmulationStopped();
|
||||
|
||||
signals:
|
||||
void OpenPressed();
|
||||
void PlayPressed();
|
||||
void PausePressed();
|
||||
void StopPressed();
|
||||
void FullScreenPressed();
|
||||
void ScreenShotPressed();
|
||||
void OpenPressed();
|
||||
void PlayPressed();
|
||||
void PausePressed();
|
||||
void StopPressed();
|
||||
void FullScreenPressed();
|
||||
void ScreenShotPressed();
|
||||
|
||||
void PathsPressed();
|
||||
void SettingsPressed();
|
||||
|
||||
void PathsPressed();
|
||||
void SettingsPressed();
|
||||
private:
|
||||
void MakeActions();
|
||||
void UpdateIcons();
|
||||
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;
|
||||
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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue