summaryrefslogtreecommitdiff
path: root/noncore/settings/aqpkg/mainwin.cpp
Unidiff
Diffstat (limited to 'noncore/settings/aqpkg/mainwin.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/mainwin.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/noncore/settings/aqpkg/mainwin.cpp b/noncore/settings/aqpkg/mainwin.cpp
index 9f19dfa..0b5a5eb 100644
--- a/noncore/settings/aqpkg/mainwin.cpp
+++ b/noncore/settings/aqpkg/mainwin.cpp
@@ -44,9 +44,13 @@ MainWindow :: MainWindow( QWidget *p, char *name )
44 QPopupMenu *settings = new QPopupMenu( this ); 44 QPopupMenu *settings = new QPopupMenu( this );
45 settings->insertItem( "&Settings", this, SLOT(displaySettings()), Qt::CTRL+Qt::Key_S ); 45 settings->insertItem( "&Settings", this, SLOT(displaySettings()), Qt::CTRL+Qt::Key_S );
46 46
47 QPopupMenu *edit = new QPopupMenu( this );
48 edit->insertItem( "&Search", this, SLOT(searchForPackage()), Qt::CTRL+Qt::Key_F );
49
47 // Create the main menu 50 // Create the main menu
48 QMenuBar *menu = menuBar(); //new QMenuBar( this ); 51 QMenuBar *menu = menuBar(); //new QMenuBar( this );
49 menu->insertItem( "&Settings", settings ); 52 menu->insertItem( "&Settings", settings );
53 menu->insertItem( "&Edit", edit );
50 menu->insertItem( "&Help", help ); 54 menu->insertItem( "&Help", help );
51 55
52 mgr = new DataManager(); 56 mgr = new DataManager();
@@ -89,6 +93,11 @@ void MainWindow :: displayHelp()
89 delete dlg; 93 delete dlg;
90} 94}
91 95
96void MainWindow :: searchForPackage()
97{
98 networkPkgWindow->searchForPackage();
99}
100
92void MainWindow :: displayAbout() 101void MainWindow :: displayAbout()
93{ 102{
94 QMessageBox::about( this, "About AQPkg", VERSION_TEXT ); 103 QMessageBox::about( this, "About AQPkg", VERSION_TEXT );