summaryrefslogtreecommitdiff
authordrw <drw>2003-01-10 21:36:13 (UTC)
committer drw <drw>2003-01-10 21:36:13 (UTC)
commit5199ee62d5478bbf5a8eb898c148352704f288e7 (patch) (unidiff)
tree15d48407fee127e10569a410659c954533f932c4
parent3d5b0fdc15ed9b3ee392e52254aa9db73e2b7dac (diff)
downloadopie-5199ee62d5478bbf5a8eb898c148352704f288e7.zip
opie-5199ee62d5478bbf5a8eb898c148352704f288e7.tar.gz
opie-5199ee62d5478bbf5a8eb898c148352704f288e7.tar.bz2
Changed menu layout
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/mainwin.cpp68
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
@@ -5,266 +5,264 @@
5 copyright : (C) 2002 by Andy Qua 5 copyright : (C) 2002 by Andy Qua
6 email : andy.qua@blueyonder.co.uk 6 email : andy.qua@blueyonder.co.uk
7 ***************************************************************************/ 7 ***************************************************************************/
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>
19using namespace std; 19using namespace std;
20 20
21#include <qpe/qpemenubar.h> 21#include <qpe/qpemenubar.h>
22#include <qpe/qpetoolbar.h> 22#include <qpe/qpetoolbar.h>
23#include <qpe/resource.h> 23#include <qpe/resource.h>
24 24
25#include <qaction.h> 25#include <qaction.h>
26#include <qlineedit.h> 26#include <qlineedit.h>
27#include <qmenubar.h> 27#include <qmenubar.h>
28#include <qmessagebox.h> 28#include <qmessagebox.h>
29#include <qpopupmenu.h> 29#include <qpopupmenu.h>
30#include <qtimer.h> 30#include <qtimer.h>
31#include <qwhatsthis.h> 31#include <qwhatsthis.h>
32#include <qwidgetstack.h> 32#include <qwidgetstack.h>
33 33
34#include "mainwin.h" 34#include "mainwin.h"
35#include "progresswidget.h" 35#include "progresswidget.h"
36#include "datamgr.h" 36#include "datamgr.h"
37#include "networkpkgmgr.h" 37#include "networkpkgmgr.h"
38#include "settingsimpl.h" 38#include "settingsimpl.h"
39#include "helpwindow.h" 39#include "helpwindow.h"
40#include "utils.h" 40#include "utils.h"
41#include "global.h" 41#include "global.h"
42 42
43MainWindow :: MainWindow() 43MainWindow :: MainWindow()
44 :QMainWindow( 0x0, 0x0, WStyle_ContextHelp ) 44 :QMainWindow( 0x0, 0x0, WStyle_ContextHelp )
45{ 45{
46 setCaption( tr( "AQPkg - Package Manager" ) ); 46 setCaption( tr( "AQPkg - Package Manager" ) );
47 47
48 // Create UI widgets 48 // Create UI widgets
49 progressWindow = new ProgressWidget( this ); 49 progressWindow = new ProgressWidget( this );
50 networkPkgWindow = new NetworkPackageManager( this ); 50 networkPkgWindow = new NetworkPackageManager( this );
51 51
52 // Build menu and tool bars 52 // Build menu and tool bars
53 setToolBarsMovable( FALSE ); 53 setToolBarsMovable( FALSE );
54 54
55 QPEToolBar *bar = new QPEToolBar( this ); 55 QPEToolBar *bar = new QPEToolBar( this );
56 bar->setHorizontalStretchable( TRUE ); 56 bar->setHorizontalStretchable( TRUE );
57 QPEMenuBar *mb = new QPEMenuBar( bar ); 57 QPEMenuBar *mb = new QPEMenuBar( bar );
58 mb->setMargin( 0 ); 58 mb->setMargin( 0 );
59 bar = new QPEToolBar( this ); 59 bar = new QPEToolBar( this );
60 60
61 // Find toolbar 61 // Find toolbar
62 findBar = new QPEToolBar( this ); 62 findBar = new QPEToolBar( this );
63 addToolBar( findBar, QMainWindow::Top, true ); 63 addToolBar( findBar, QMainWindow::Top, true );
64 findBar->setHorizontalStretchable( true ); 64 findBar->setHorizontalStretchable( true );
65 findEdit = new QLineEdit( findBar ); 65 findEdit = new QLineEdit( findBar );
66 QWhatsThis::add( findEdit, tr( "Type the text to search for here." ) ); 66 QWhatsThis::add( findEdit, tr( "Type the text to search for here." ) );
67 findBar->setStretchableWidget( findEdit ); 67 findBar->setStretchableWidget( findEdit );
68 connect( findEdit, SIGNAL( textChanged( const QString & ) ), this, SLOT( findPackage( const QString & ) ) ); 68 connect( findEdit, SIGNAL( textChanged( const QString & ) ), this, SLOT( findPackage( const QString & ) ) );
69 69
70 // Packages menu 70 // Packages menu
71 QPopupMenu *popup = new QPopupMenu( this ); 71 QPopupMenu *popup = new QPopupMenu( this );
72 72
73 QAction *a = new QAction( tr( "Update lists" ), Resource::loadPixmap( "aqpkg/update" ), QString::null, 0, this, 0 ); 73 QAction *a = new QAction( tr( "Update lists" ), Resource::loadPixmap( "aqpkg/update" ), QString::null, 0, this, 0 );
74 a->setWhatsThis( tr( "Click here to update package lists from servers." ) ); 74 a->setWhatsThis( tr( "Click here to update package lists from servers." ) );
75 connect( a, SIGNAL( activated() ), networkPkgWindow, SLOT( updateServer() ) ); 75 connect( a, SIGNAL( activated() ), networkPkgWindow, SLOT( updateServer() ) );
76 a->addTo( popup ); 76 a->addTo( popup );
77 a->addTo( bar ); 77 a->addTo( bar );
78 78
79 actionUpgrade = new QAction( tr( "Upgrade" ), Resource::loadPixmap( "aqpkg/upgrade" ), QString::null, 0, this, 0 ); 79 actionUpgrade = new QAction( tr( "Upgrade" ), Resource::loadPixmap( "aqpkg/upgrade" ), QString::null, 0, this, 0 );
80 actionUpgrade->setWhatsThis( tr( "Click here to upgrade all installed packages if a newer version is available." ) ); 80 actionUpgrade->setWhatsThis( tr( "Click here to upgrade all installed packages if a newer version is available." ) );
81 connect( actionUpgrade, SIGNAL( activated() ), networkPkgWindow, SLOT( upgradePackages() ) ); 81 connect( actionUpgrade, SIGNAL( activated() ), networkPkgWindow, SLOT( upgradePackages() ) );
82 actionUpgrade->addTo( popup ); 82 actionUpgrade->addTo( popup );
83 actionUpgrade->addTo( bar ); 83 actionUpgrade->addTo( bar );
84 84
85 iconDownload = Resource::loadPixmap( "aqpkg/download" ); 85 iconDownload = Resource::loadPixmap( "aqpkg/download" );
86 iconRemove = Resource::loadPixmap( "aqpkg/remove" ); 86 iconRemove = Resource::loadPixmap( "aqpkg/remove" );
87 actionDownload = new QAction( tr( "Download" ), iconDownload, QString::null, 0, this, 0 ); 87 actionDownload = new QAction( tr( "Download" ), iconDownload, QString::null, 0, this, 0 );
88 actionDownload->setWhatsThis( tr( "Click here to download the currently selected package(s)." ) ); 88 actionDownload->setWhatsThis( tr( "Click here to download the currently selected package(s)." ) );
89 connect( actionDownload, SIGNAL( activated() ), networkPkgWindow, SLOT( downloadPackage() ) ); 89 connect( actionDownload, SIGNAL( activated() ), networkPkgWindow, SLOT( downloadPackage() ) );
90 actionDownload->addTo( popup ); 90 actionDownload->addTo( popup );
91 actionDownload->addTo( bar ); 91 actionDownload->addTo( bar );
92 92
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 );
145 actionInstalled->setWhatsThis( tr( "Click here to show packages currently installed on this device." ) ); 112 actionInstalled->setWhatsThis( tr( "Click here to show packages currently installed on this device." ) );
146 connect( actionInstalled, SIGNAL( activated() ), this, SLOT( filterInstalledPackages() ) ); 113 connect( actionInstalled, SIGNAL( activated() ), this, SLOT( filterInstalledPackages() ) );
147 actionInstalled->addTo( popup ); 114 actionInstalled->addTo( popup );
148 115
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 );
165 a->setWhatsThis( tr( "Click here for help." ) ); 163 a->setWhatsThis( tr( "Click here for help." ) );
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
183 181
184 // Create widget stack and add UI widgets 182 // Create widget stack and add UI widgets
185 stack = new QWidgetStack( this ); 183 stack = new QWidgetStack( this );
186 stack->addWidget( progressWindow, 2 ); 184 stack->addWidget( progressWindow, 2 );
187 stack->addWidget( networkPkgWindow, 1 ); 185 stack->addWidget( networkPkgWindow, 1 );
188 setCentralWidget( stack ); 186 setCentralWidget( stack );
189 stack->raiseWidget( progressWindow ); 187 stack->raiseWidget( progressWindow );
190 188
191 // Delayed call to finish initialization 189 // Delayed call to finish initialization
192 QTimer::singleShot( 100, this, SLOT( init() ) ); 190 QTimer::singleShot( 100, this, SLOT( init() ) );
193} 191}
194 192
195MainWindow :: ~MainWindow() 193MainWindow :: ~MainWindow()
196{ 194{
197 delete mgr; 195 delete mgr;
198} 196}
199 197
200void MainWindow :: init() 198void MainWindow :: init()
201{ 199{
202 stack->raiseWidget( progressWindow ); 200 stack->raiseWidget( progressWindow );
203 201
204 mgr = new DataManager(); 202 mgr = new DataManager();
205 connect( mgr, SIGNAL( progressSetSteps( int ) ), progressWindow, SLOT( setSteps( int ) ) ); 203 connect( mgr, SIGNAL( progressSetSteps( int ) ), progressWindow, SLOT( setSteps( int ) ) );
206 connect( mgr, SIGNAL( progressSetMessage( const QString & ) ), 204 connect( mgr, SIGNAL( progressSetMessage( const QString & ) ),
207 progressWindow, SLOT( setMessage( const QString & ) ) ); 205 progressWindow, SLOT( setMessage( const QString & ) ) );
208 connect( mgr, SIGNAL( progressUpdate( int ) ), progressWindow, SLOT( update( int ) ) ); 206 connect( mgr, SIGNAL( progressUpdate( int ) ), progressWindow, SLOT( update( int ) ) );
209 mgr->loadServers(); 207 mgr->loadServers();
210 208
211 networkPkgWindow->setDataManager( mgr ); 209 networkPkgWindow->setDataManager( mgr );
212 networkPkgWindow->updateData(); 210 networkPkgWindow->updateData();
213 connect( networkPkgWindow, SIGNAL( appRaiseMainWidget() ), this, SLOT( raiseMainWidget() ) ); 211 connect( networkPkgWindow, SIGNAL( appRaiseMainWidget() ), this, SLOT( raiseMainWidget() ) );
214 connect( networkPkgWindow, SIGNAL( appRaiseProgressWidget() ), this, SLOT( raiseProgressWidget() ) ); 212 connect( networkPkgWindow, SIGNAL( appRaiseProgressWidget() ), this, SLOT( raiseProgressWidget() ) );
215 connect( networkPkgWindow, SIGNAL( appEnableUpgrade( bool ) ), this, SLOT( enableUpgrade( bool ) ) ); 213 connect( networkPkgWindow, SIGNAL( appEnableUpgrade( bool ) ), this, SLOT( enableUpgrade( bool ) ) );
216 connect( networkPkgWindow, SIGNAL( appEnableDownload( bool ) ), this, SLOT( enableDownload( bool ) ) ); 214 connect( networkPkgWindow, SIGNAL( appEnableDownload( bool ) ), this, SLOT( enableDownload( bool ) ) );
217 connect( networkPkgWindow, SIGNAL( progressSetSteps( int ) ), progressWindow, SLOT( setSteps( int ) ) ); 215 connect( networkPkgWindow, SIGNAL( progressSetSteps( int ) ), progressWindow, SLOT( setSteps( int ) ) );
218 connect( networkPkgWindow, SIGNAL( progressSetMessage( const QString & ) ), 216 connect( networkPkgWindow, SIGNAL( progressSetMessage( const QString & ) ),
219 progressWindow, SLOT( setMessage( const QString & ) ) ); 217 progressWindow, SLOT( setMessage( const QString & ) ) );
220 connect( networkPkgWindow, SIGNAL( progressUpdate( int ) ), progressWindow, SLOT( update( int ) ) ); 218 connect( networkPkgWindow, SIGNAL( progressUpdate( int ) ), progressWindow, SLOT( update( int ) ) );
221 219
222 stack->raiseWidget( networkPkgWindow ); 220 stack->raiseWidget( networkPkgWindow );
223} 221}
224 222
225void MainWindow :: setDocument( const QString &doc ) 223void MainWindow :: setDocument( const QString &doc )
226{ 224{
227 // Remove path from package 225 // Remove path from package
228 QString package = Utils::getPackageNameFromIpkFilename( doc ); 226 QString package = Utils::getPackageNameFromIpkFilename( doc );
229 std::cout << "Selecting package " << package << std::endl; 227 std::cout << "Selecting package " << package << std::endl;
230 networkPkgWindow->selectLocalPackage( package ); 228 networkPkgWindow->selectLocalPackage( package );
231} 229}
232 230
233void MainWindow :: displaySettings() 231void MainWindow :: displaySettings()
234{ 232{
235 SettingsImpl *dlg = new SettingsImpl( mgr, this, "Settings", true ); 233 SettingsImpl *dlg = new SettingsImpl( mgr, this, "Settings", true );
236 if ( dlg->showDlg( 0 ) ) 234 if ( dlg->showDlg( 0 ) )
237 networkPkgWindow->updateData(); 235 networkPkgWindow->updateData();
238 delete dlg; 236 delete dlg;
239} 237}
240 238
241void MainWindow :: displayHelp() 239void MainWindow :: displayHelp()
242{ 240{
243 HelpWindow *dlg = new HelpWindow( this ); 241 HelpWindow *dlg = new HelpWindow( this );
244 dlg->exec(); 242 dlg->exec();
245 delete dlg; 243 delete dlg;
246} 244}
247 245
248void MainWindow :: displayFindBar() 246void MainWindow :: displayFindBar()
249{ 247{
250 findBar->show(); 248 findBar->show();
251 findEdit->setFocus(); 249 findEdit->setFocus();
252} 250}
253 251
254void MainWindow :: repeatFind() 252void MainWindow :: repeatFind()
255{ 253{
256 networkPkgWindow->searchForPackage( findEdit->text() ); 254 networkPkgWindow->searchForPackage( findEdit->text() );
257} 255}
258 256
259void MainWindow :: findPackage( const QString &text ) 257void MainWindow :: findPackage( const QString &text )
260{ 258{
261 actionFindNext->setEnabled( !text.isEmpty() ); 259 actionFindNext->setEnabled( !text.isEmpty() );
262 networkPkgWindow->searchForPackage( text ); 260 networkPkgWindow->searchForPackage( text );
263} 261}
264 262
265void MainWindow :: hideFindBar() 263void MainWindow :: hideFindBar()
266{ 264{
267 findBar->hide(); 265 findBar->hide();
268} 266}
269 267
270void MainWindow :: displayAbout() 268void MainWindow :: displayAbout()