-rw-r--r-- | noncore/settings/aqpkg/mainwin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/settings/aqpkg/mainwin.cpp b/noncore/settings/aqpkg/mainwin.cpp index 3ddc582..5f0dabb 100644 --- a/noncore/settings/aqpkg/mainwin.cpp +++ b/noncore/settings/aqpkg/mainwin.cpp | |||
@@ -8,65 +8,65 @@ | |||
8 | 8 | ||
9 | /*************************************************************************** | 9 | /*************************************************************************** |
10 | * * | 10 | * * |
11 | * This program is free software; you can redistribute it and/or modify * | 11 | * This program is free software; you can redistribute it and/or modify * |
12 | * it under the terms of the GNU General Public License as published by * | 12 | * it under the terms of the GNU General Public License as published by * |
13 | * the Free Software Foundation; either version 2 of the License, or * | 13 | * the Free Software Foundation; either version 2 of the License, or * |
14 | * (at your option) any later version. * | 14 | * (at your option) any later version. * |
15 | * * | 15 | * * |
16 | ***************************************************************************/ | 16 | ***************************************************************************/ |
17 | 17 | ||
18 | #include <iostream> | 18 | #include <iostream> |
19 | using namespace std; | 19 | using namespace std; |
20 | 20 | ||
21 | #include <qmenubar.h> | 21 | #include <qmenubar.h> |
22 | #include <qpopupmenu.h> | 22 | #include <qpopupmenu.h> |
23 | #include <qmessagebox.h> | 23 | #include <qmessagebox.h> |
24 | 24 | ||
25 | #include "mainwin.h" | 25 | #include "mainwin.h" |
26 | #include "datamgr.h" | 26 | #include "datamgr.h" |
27 | #include "networkpkgmgr.h" | 27 | #include "networkpkgmgr.h" |
28 | #include "settingsimpl.h" | 28 | #include "settingsimpl.h" |
29 | #include "helpwindow.h" | 29 | #include "helpwindow.h" |
30 | #include "utils.h" | 30 | #include "utils.h" |
31 | #include "global.h" | 31 | #include "global.h" |
32 | 32 | ||
33 | MainWindow :: MainWindow( QWidget *p, char *name ) | 33 | MainWindow :: MainWindow( QWidget *p, char *name ) |
34 | :QMainWindow( p, name ) | 34 | :QMainWindow( p, name ) |
35 | { | 35 | { |
36 | #ifdef QWS | 36 | #ifdef QWS |
37 | showMaximized(); | 37 | showMaximized(); |
38 | #endif | 38 | #endif |
39 | 39 | ||
40 | setCaption( "AQPkg - Package Manager" ); | 40 | setCaption( tr( "AQPkg - Package Manager" ) ); |
41 | 41 | ||
42 | // Create our menu | 42 | // Create our menu |
43 | help = new QPopupMenu( this ); | 43 | help = new QPopupMenu( this ); |
44 | help->insertItem( "&General", this, SLOT(displayHelp()), Qt::CTRL+Qt::Key_G ); | 44 | help->insertItem( "&General", this, SLOT(displayHelp()), Qt::CTRL+Qt::Key_G ); |
45 | help->insertItem( "&About", this, SLOT(displayAbout()), Qt::CTRL+Qt::Key_A ); | 45 | help->insertItem( "&About", this, SLOT(displayAbout()), Qt::CTRL+Qt::Key_A ); |
46 | 46 | ||
47 | settings = new QPopupMenu( this ); | 47 | settings = new QPopupMenu( this ); |
48 | settings->insertItem( "&Settings", this, SLOT(displaySettings()), Qt::CTRL+Qt::Key_S ); | 48 | settings->insertItem( "&Settings", this, SLOT(displaySettings()), Qt::CTRL+Qt::Key_S ); |
49 | 49 | ||
50 | edit = new QPopupMenu( this ); | 50 | edit = new QPopupMenu( this ); |
51 | edit->insertItem( "&Find", this, SLOT(searchForPackage()), Qt::CTRL+Qt::Key_I ); | 51 | edit->insertItem( "&Find", this, SLOT(searchForPackage()), Qt::CTRL+Qt::Key_I ); |
52 | edit->insertItem( "Find &Next", this, SLOT(repeatSearchForPackage()), Qt::CTRL+Qt::Key_N ); | 52 | edit->insertItem( "Find &Next", this, SLOT(repeatSearchForPackage()), Qt::CTRL+Qt::Key_N ); |
53 | 53 | ||
54 | filter = new QPopupMenu( this ); | 54 | filter = new QPopupMenu( this ); |
55 | mnuShowUninstalledPkgsId = filter->insertItem( "Show &Non-Installed Packages", this, SLOT(filterUninstalledPackages()), Qt::CTRL+Qt::Key_U ); | 55 | mnuShowUninstalledPkgsId = filter->insertItem( "Show &Non-Installed Packages", this, SLOT(filterUninstalledPackages()), Qt::CTRL+Qt::Key_U ); |
56 | mnuShowInstalledPkgsId = filter->insertItem( "Show In&stalled Packages", this, SLOT(filterInstalledPackages()), Qt::CTRL+Qt::Key_S ); | 56 | mnuShowInstalledPkgsId = filter->insertItem( "Show In&stalled Packages", this, SLOT(filterInstalledPackages()), Qt::CTRL+Qt::Key_S ); |
57 | mnuShowUpgradedPkgsId = filter->insertItem( "Show U&pdated Packages", this, SLOT(filterUpgradedPackages()), Qt::CTRL+Qt::Key_P ); | 57 | mnuShowUpgradedPkgsId = filter->insertItem( "Show U&pdated Packages", this, SLOT(filterUpgradedPackages()), Qt::CTRL+Qt::Key_P ); |
58 | filter->insertSeparator(); | 58 | filter->insertSeparator(); |
59 | mnuFilterByCategory = filter->insertItem( "Filter By &Category", this, SLOT(filterCategory()), Qt::CTRL+Qt::Key_C ); | 59 | mnuFilterByCategory = filter->insertItem( "Filter By &Category", this, SLOT(filterCategory()), Qt::CTRL+Qt::Key_C ); |
60 | mnuSetFilterCategory = filter->insertItem( "Set Filter C&ategory", this, SLOT(setFilterCategory()), Qt::CTRL+Qt::Key_A ); | 60 | mnuSetFilterCategory = filter->insertItem( "Set Filter C&ategory", this, SLOT(setFilterCategory()), Qt::CTRL+Qt::Key_A ); |
61 | 61 | ||
62 | // Create the main menu | 62 | // Create the main menu |
63 | menu = menuBar(); //new QMenuBar( this ); | 63 | menu = menuBar(); //new QMenuBar( this ); |
64 | menu->insertItem( "&Settings", settings ); | 64 | menu->insertItem( "&Settings", settings ); |
65 | menu->insertItem( "&Edit", edit ); | 65 | menu->insertItem( "&Edit", edit ); |
66 | menu->insertItem( "&Filter", filter ); | 66 | menu->insertItem( "&Filter", filter ); |
67 | menu->insertItem( "&Help", help ); | 67 | menu->insertItem( "&Help", help ); |
68 | 68 | ||
69 | mgr = new DataManager(); | 69 | mgr = new DataManager(); |
70 | mgr->loadServers(); | 70 | mgr->loadServers(); |
71 | 71 | ||
72 | stack = new QWidgetStack( this ); | 72 | stack = new QWidgetStack( this ); |