summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/rbutilqt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilqt/rbutilqt.cpp')
-rw-r--r--rbutil/rbutilqt/rbutilqt.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/rbutilqt.cpp b/rbutil/rbutilqt/rbutilqt.cpp
index 21ccf92d59..5c64466119 100644
--- a/rbutil/rbutilqt/rbutilqt.cpp
+++ b/rbutil/rbutilqt/rbutilqt.cpp
@@ -105,6 +105,19 @@ RbUtilQt::RbUtilQt(QWidget *parent) : QMainWindow(parent)
105 connect(ui.buttonSmall, SIGNAL(clicked()), this, SLOT(smallInstall())); 105 connect(ui.buttonSmall, SIGNAL(clicked()), this, SLOT(smallInstall()));
106 connect(ui.buttonComplete, SIGNAL(clicked()), this, SLOT(completeInstall())); 106 connect(ui.buttonComplete, SIGNAL(clicked()), this, SLOT(completeInstall()));
107 107
108 // actions accessible from the menu
109 connect(ui.actionComplete_Installation, SIGNAL(triggered()), this, SLOT(completeInstall()));
110 connect(ui.actionSmall_Installation, SIGNAL(triggered()), this, SLOT(smallInstall()));
111 connect(ui.actionInstall_Bootloader, SIGNAL(triggered()), this, SLOT(installBootloaderBtn()));
112 connect(ui.actionInstall_Rockbox, SIGNAL(triggered()), this, SLOT(installBtn()));
113 connect(ui.actionFonts_Package, SIGNAL(triggered()), this, SLOT(installFontsBtn()));
114 connect(ui.actionInstall_Themes, SIGNAL(triggered()), this, SLOT(installThemes()));
115 connect(ui.actionInstall_Game_Files, SIGNAL(triggered()), this, SLOT(installDoomBtn()));
116 connect(ui.actionInstall_Voice_File, SIGNAL(triggered()), this, SLOT(installVoice()));
117 connect(ui.actionCreate_Talk_Files, SIGNAL(triggered()), this, SLOT(createTalkFiles()));
118 connect(ui.actionRemove_bootloader, SIGNAL(triggered()), this, SLOT(uninstallBootloader()));
119 connect(ui.actionUninstall_Rockbox, SIGNAL(triggered()), this, SLOT(uninstall()));
120
108#if !defined(STATIC) 121#if !defined(STATIC)
109 ui.actionInstall_Rockbox_Utility_on_player->setEnabled(false); 122 ui.actionInstall_Rockbox_Utility_on_player->setEnabled(false);
110#else 123#else