DQt2: Implement Paths config dialog

This commit is contained in:
spxtr
2015-12-30 19:03:13 -08:00
parent 787bf156f0
commit 5b2a76458d
15 changed files with 377 additions and 48 deletions

View File

@ -49,10 +49,6 @@ void ToolBar::EmulationStopped()
void ToolBar::MakeActions()
{
m_open_action = addAction(tr("Open"), this, SIGNAL(OpenPressed()));
m_paths_action = addAction(tr("Paths"), this, SIGNAL(PathsPressed()));
addSeparator();
m_play_action = addAction(tr("Play"), this, SIGNAL(PlayPressed()));
m_pause_action = addAction(tr("Pause"), this, SIGNAL(PausePressed()));
@ -69,6 +65,8 @@ void ToolBar::MakeActions()
addSeparator();
m_paths_action = addAction(tr("Paths"), this, SIGNAL(PathsPressed()));
m_config_action = addAction(tr("Settings"));
m_config_action->setEnabled(false);