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.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/noncore/settings/aqpkg/mainwin.cpp b/noncore/settings/aqpkg/mainwin.cpp
index 0b5a5eb..3c72f2b 100644
--- a/noncore/settings/aqpkg/mainwin.cpp
+++ b/noncore/settings/aqpkg/mainwin.cpp
@@ -29,32 +29,34 @@
29 29
30MainWindow :: MainWindow( QWidget *p, char *name ) 30MainWindow :: MainWindow( QWidget *p, char *name )
31 :QMainWindow( p, name ) 31 :QMainWindow( p, name )
32{ 32{
33#ifdef QWS 33#ifdef QWS
34 showMaximized(); 34 showMaximized();
35#endif 35#endif
36 36
37 setCaption( "AQPkg - Package Manager" ); 37 setCaption( "AQPkg - Package Manager" );
38 38
39 // Create our menu 39 // Create our menu
40 QPopupMenu *help = new QPopupMenu( this ); 40 QPopupMenu *help = new QPopupMenu( this );
41
41 help->insertItem( "&General", this, SLOT(displayHelp()), Qt::CTRL+Qt::Key_H ); 42 help->insertItem( "&General", this, SLOT(displayHelp()), Qt::CTRL+Qt::Key_H );
42 help->insertItem( "&About", this, SLOT(displayAbout()), Qt::CTRL+Qt::Key_A ); 43 help->insertItem( "&About", this, SLOT(displayAbout()), Qt::CTRL+Qt::Key_A );
43 44
44 QPopupMenu *settings = new QPopupMenu( this ); 45 QPopupMenu *settings = new QPopupMenu( this );
45 settings->insertItem( "&Settings", this, SLOT(displaySettings()), Qt::CTRL+Qt::Key_S ); 46 settings->insertItem( "&Settings", this, SLOT(displaySettings()), Qt::CTRL+Qt::Key_S );
46 47
47 QPopupMenu *edit = new QPopupMenu( this ); 48 QPopupMenu *edit = new QPopupMenu( this );
48 edit->insertItem( "&Search", this, SLOT(searchForPackage()), Qt::CTRL+Qt::Key_F ); 49 edit->insertItem( "&Find", this, SLOT(searchForPackage()), Qt::CTRL+Qt::Key_F );
50 edit->insertItem( "&Find Next", this, SLOT(repeatSearchForPackage()), Qt::CTRL+Qt::Key_R );
49 51
50 // Create the main menu 52 // Create the main menu
51 QMenuBar *menu = menuBar(); //new QMenuBar( this ); 53 QMenuBar *menu = menuBar(); //new QMenuBar( this );
52 menu->insertItem( "&Settings", settings ); 54 menu->insertItem( "&Settings", settings );
53 menu->insertItem( "&Edit", edit ); 55 menu->insertItem( "&Edit", edit );
54 menu->insertItem( "&Help", help ); 56 menu->insertItem( "&Help", help );
55 57
56 mgr = new DataManager(); 58 mgr = new DataManager();
57 mgr->loadServers(); 59 mgr->loadServers();
58 60
59 stack = new QWidgetStack( this ); 61 stack = new QWidgetStack( this );
60 62
@@ -86,19 +88,24 @@ void MainWindow :: displaySettings()
86 delete dlg; 88 delete dlg;
87} 89}
88 90
89void MainWindow :: displayHelp() 91void MainWindow :: displayHelp()
90{ 92{
91 HelpWindow *dlg = new HelpWindow( this ); 93 HelpWindow *dlg = new HelpWindow( this );
92 dlg->exec(); 94 dlg->exec();
93 delete dlg; 95 delete dlg;
94} 96}
95 97
96void MainWindow :: searchForPackage() 98void MainWindow :: searchForPackage()
97{ 99{
98 networkPkgWindow->searchForPackage(); 100 networkPkgWindow->searchForPackage( false );
101}
102
103void MainWindow :: repeatSearchForPackage()
104{
105 networkPkgWindow->searchForPackage( true );
99} 106}
100 107
101void MainWindow :: displayAbout() 108void MainWindow :: displayAbout()
102{ 109{
103 QMessageBox::about( this, "About AQPkg", VERSION_TEXT ); 110 QMessageBox::about( this, "About AQPkg", VERSION_TEXT );
104} 111}