-rw-r--r-- | noncore/settings/aqpkg/mainwin.cpp | 68 |
1 files changed, 33 insertions, 35 deletions
diff --git a/noncore/settings/aqpkg/mainwin.cpp b/noncore/settings/aqpkg/mainwin.cpp index e184f6b..e489d2d 100644 --- a/noncore/settings/aqpkg/mainwin.cpp +++ b/noncore/settings/aqpkg/mainwin.cpp | |||
@@ -93,52 +93,19 @@ MainWindow :: MainWindow() | |||
93 | a = new QAction( tr( "Apply changes" ), Resource::loadPixmap( "aqpkg/apply" ), QString::null, 0, this, 0 ); | 93 | a = new QAction( tr( "Apply changes" ), Resource::loadPixmap( "aqpkg/apply" ), QString::null, 0, this, 0 ); |
94 | a->setWhatsThis( tr( "Click here to install, remove or upgrade currently selected package(s)." ) ); | 94 | a->setWhatsThis( tr( "Click here to install, remove or upgrade currently selected package(s)." ) ); |
95 | connect( a, SIGNAL( activated() ), networkPkgWindow, SLOT( applyChanges() ) ); | 95 | connect( a, SIGNAL( activated() ), networkPkgWindow, SLOT( applyChanges() ) ); |
96 | a->addTo( popup ); | 96 | a->addTo( popup ); |
97 | a->addTo( bar ); | 97 | a->addTo( bar ); |
98 | 98 | ||
99 | mb->insertItem( tr( "Packages" ), popup ); | 99 | mb->insertItem( tr( "Packages" ), popup ); |
100 | 100 | ||
101 | // Search menu | ||
102 | popup = new QPopupMenu( this ); | ||
103 | |||
104 | a = new QAction( tr( "Find" ), Resource::loadPixmap( "find" ), QString::null, 0, this, 0 ); | ||
105 | a->setWhatsThis( tr( "Click here to search for text in package names." ) ); | ||
106 | connect( a, SIGNAL( activated() ), this, SLOT( displayFindBar() ) ); | ||
107 | a->addTo( popup ); | ||
108 | |||
109 | actionFindNext = new QAction( tr( "Find next" ), Resource::loadIconSet( "next" ), QString::null, 0, this, 0 ); | ||
110 | actionFindNext->setEnabled( FALSE ); | ||
111 | actionFindNext->setWhatsThis( tr( "Click here to search for the package name containing the text you are searching for." ) ); | ||
112 | connect( actionFindNext, SIGNAL( activated() ), this, SLOT( repeatFind() ) ); | ||
113 | actionFindNext->addTo( popup ); | ||
114 | actionFindNext->addTo( findBar ); | ||
115 | |||
116 | // Show 'quick jump' keypad? | ||
117 | |||
118 | popup->insertSeparator(); | ||
119 | |||
120 | actionFilter = new QAction( tr( "Filter by category" ), Resource::loadPixmap( "aqpkg/filter" ), QString::null, 0, this, 0 ); | ||
121 | actionFilter->setToggleAction( TRUE ); | ||
122 | actionFilter->setWhatsThis( tr( "Click here to list packages belonging to one category." ) ); | ||
123 | connect( actionFilter, SIGNAL( activated() ), this, SLOT( filterCategory() ) ); | ||
124 | actionFilter->addTo( popup ); | ||
125 | |||
126 | a = new QAction( tr( "Set filter category" ), QString::null, 0, this, 0 ); | ||
127 | a->setWhatsThis( tr( "Click here to change package category to used filter." ) ); | ||
128 | connect( a, SIGNAL( activated() ), this, SLOT( setFilterCategory() ) ); | ||
129 | a->addTo( popup ); | ||
130 | |||
131 | mb->insertItem( tr( "Search" ), popup ); | ||
132 | |||
133 | |||
134 | // View menu | 101 | // View menu |
135 | popup = new QPopupMenu( this ); | 102 | popup = new QPopupMenu( this ); |
136 | 103 | ||
137 | actionUninstalled = new QAction( tr( "Show packages not installed" ), QString::null, 0, this, 0 ); | 104 | actionUninstalled = new QAction( tr( "Show packages not installed" ), QString::null, 0, this, 0 ); |
138 | actionUninstalled->setToggleAction( TRUE ); | 105 | actionUninstalled->setToggleAction( TRUE ); |
139 | actionUninstalled->setWhatsThis( tr( "Click here to show packages available which have not been installed." ) ); | 106 | actionUninstalled->setWhatsThis( tr( "Click here to show packages available which have not been installed." ) ); |
140 | connect( actionUninstalled, SIGNAL( activated() ), this, SLOT( filterUninstalledPackages() ) ); | 107 | connect( actionUninstalled, SIGNAL( activated() ), this, SLOT( filterUninstalledPackages() ) ); |
141 | actionUninstalled->addTo( popup ); | 108 | actionUninstalled->addTo( popup ); |
142 | 109 | ||
143 | actionInstalled = new QAction( tr( "Show installed packages" ), QString::null, 0, this, 0 ); | 110 | actionInstalled = new QAction( tr( "Show installed packages" ), QString::null, 0, this, 0 ); |
144 | actionInstalled->setToggleAction( TRUE ); | 111 | actionInstalled->setToggleAction( TRUE ); |
@@ -149,16 +116,47 @@ MainWindow :: MainWindow() | |||
149 | actionUpdated = new QAction( tr( "Show updated packages" ), QString::null, 0, this, 0 ); | 116 | actionUpdated = new QAction( tr( "Show updated packages" ), QString::null, 0, this, 0 ); |
150 | actionUpdated->setToggleAction( TRUE ); | 117 | actionUpdated->setToggleAction( TRUE ); |
151 | actionUpdated->setWhatsThis( tr( "Click here to show packages currently installed on this device which have a newer version available." ) ); | 118 | actionUpdated->setWhatsThis( tr( "Click here to show packages currently installed on this device which have a newer version available." ) ); |
152 | connect( actionUpdated, SIGNAL( activated() ), this, SLOT( filterUpgradedPackages() ) ); | 119 | connect( actionUpdated, SIGNAL( activated() ), this, SLOT( filterUpgradedPackages() ) ); |
153 | actionUpdated->addTo( popup ); | 120 | actionUpdated->addTo( popup ); |
154 | 121 | ||
155 | popup->insertSeparator(); | 122 | popup->insertSeparator(); |
156 | 123 | ||
124 | actionFilter = new QAction( tr( "Filter by category" ), Resource::loadPixmap( "aqpkg/filter" ), QString::null, 0, this, 0 ); | ||
125 | actionFilter->setToggleAction( TRUE ); | ||
126 | actionFilter->setWhatsThis( tr( "Click here to list packages belonging to one category." ) ); | ||
127 | connect( actionFilter, SIGNAL( activated() ), this, SLOT( filterCategory() ) ); | ||
128 | actionFilter->addTo( popup ); | ||
129 | |||
130 | a = new QAction( tr( "Set filter category" ), QString::null, 0, this, 0 ); | ||
131 | a->setWhatsThis( tr( "Click here to change package category to used filter." ) ); | ||
132 | connect( a, SIGNAL( activated() ), this, SLOT( setFilterCategory() ) ); | ||
133 | a->addTo( popup ); | ||
134 | |||
135 | popup->insertSeparator(); | ||
136 | |||
137 | a = new QAction( tr( "Find" ), Resource::loadPixmap( "find" ), QString::null, 0, this, 0 ); | ||
138 | a->setWhatsThis( tr( "Click here to search for text in package names." ) ); | ||
139 | connect( a, SIGNAL( activated() ), this, SLOT( displayFindBar() ) ); | ||
140 | a->addTo( popup ); | ||
141 | |||
142 | actionFindNext = new QAction( tr( "Find next" ), Resource::loadIconSet( "next" ), QString::null, 0, this, 0 ); | ||
143 | actionFindNext->setEnabled( FALSE ); | ||
144 | actionFindNext->setWhatsThis( tr( "Click here to find the next package name containing the text you are searching for." ) ); | ||
145 | connect( actionFindNext, SIGNAL( activated() ), this, SLOT( repeatFind() ) ); | ||
146 | actionFindNext->addTo( popup ); | ||
147 | actionFindNext->addTo( findBar ); | ||
148 | |||
149 | mb->insertItem( tr( "View" ), popup ); | ||
150 | |||
151 | |||
152 | // Options menu | ||
153 | popup = new QPopupMenu( this ); | ||
154 | |||
157 | a = new QAction( tr( "Configure" ), Resource::loadPixmap( "aqpkg/config" ), QString::null, 0, this, 0 ); | 155 | a = new QAction( tr( "Configure" ), Resource::loadPixmap( "aqpkg/config" ), QString::null, 0, this, 0 ); |
158 | a->setWhatsThis( tr( "Click here to configure this application." ) ); | 156 | a->setWhatsThis( tr( "Click here to configure this application." ) ); |
159 | connect( a, SIGNAL( activated() ), this, SLOT( displaySettings() ) ); | 157 | connect( a, SIGNAL( activated() ), this, SLOT( displaySettings() ) ); |
160 | a->addTo( popup ); | 158 | a->addTo( popup ); |
161 | 159 | ||
162 | popup->insertSeparator(); | 160 | popup->insertSeparator(); |
163 | 161 | ||
164 | a = new QAction( tr( "Help" ), Resource::loadPixmap( "help_icon" ), QString::null, 0, this, 0 ); | 162 | a = new QAction( tr( "Help" ), Resource::loadPixmap( "help_icon" ), QString::null, 0, this, 0 ); |
@@ -166,17 +164,17 @@ MainWindow :: MainWindow() | |||
166 | connect( a, SIGNAL( activated() ), this, SLOT( displayHelp() ) ); | 164 | connect( a, SIGNAL( activated() ), this, SLOT( displayHelp() ) ); |
167 | a->addTo( popup ); | 165 | a->addTo( popup ); |
168 | 166 | ||
169 | a = new QAction( tr( "About" ), Resource::loadPixmap( "UtilsIcon" ), QString::null, 0, this, 0 ); | 167 | a = new QAction( tr( "About" ), Resource::loadPixmap( "UtilsIcon" ), QString::null, 0, this, 0 ); |
170 | a->setWhatsThis( tr( "Click here for software version information." ) ); | 168 | a->setWhatsThis( tr( "Click here for software version information." ) ); |
171 | connect( a, SIGNAL( activated() ), this, SLOT( displayAbout() ) ); | 169 | connect( a, SIGNAL( activated() ), this, SLOT( displayAbout() ) ); |
172 | a->addTo( popup ); | 170 | a->addTo( popup ); |
173 | 171 | ||
174 | mb->insertItem( tr( "View" ), popup ); | 172 | mb->insertItem( tr( "Options" ), popup ); |
175 | 173 | ||
176 | // Finish find toolbar creation | 174 | // Finish find toolbar creation |
177 | a = new QAction( QString::null, Resource::loadPixmap( "close" ), QString::null, 0, this, 0 ); | 175 | a = new QAction( QString::null, Resource::loadPixmap( "close" ), QString::null, 0, this, 0 ); |
178 | a->setWhatsThis( tr( "Click here to hide the find toolbar." ) ); | 176 | a->setWhatsThis( tr( "Click here to hide the find toolbar." ) ); |
179 | connect( a, SIGNAL( activated() ), this, SLOT( hideFindBar() ) ); | 177 | connect( a, SIGNAL( activated() ), this, SLOT( hideFindBar() ) ); |
180 | a->addTo( findBar ); | 178 | a->addTo( findBar ); |
181 | findBar->hide(); | 179 | findBar->hide(); |
182 | 180 | ||