-rw-r--r-- | noncore/unsupported/oipkg/mainwindow.cpp | 16 | ||||
-rw-r--r-- | noncore/unsupported/oipkg/mainwindow.h | 2 | ||||
-rw-r--r-- | noncore/unsupported/oipkg/pksettings.cpp | 4 | ||||
-rw-r--r-- | noncore/unsupported/oipkg/pmipkg.cpp | 24 | ||||
-rw-r--r-- | noncore/unsupported/oipkg/pmipkg.h | 1 |
5 files changed, 33 insertions, 14 deletions
diff --git a/noncore/unsupported/oipkg/mainwindow.cpp b/noncore/unsupported/oipkg/mainwindow.cpp index 6bf9a7a..c95f482 100644 --- a/noncore/unsupported/oipkg/mainwindow.cpp +++ b/noncore/unsupported/oipkg/mainwindow.cpp | |||
@@ -15,31 +15,37 @@ | |||
15 | #include <qstring.h> | 15 | #include <qstring.h> |
16 | #include <qlabel.h> | 16 | #include <qlabel.h> |
17 | #include <qfile.h> | 17 | #include <qfile.h> |
18 | #include <qlistview.h> | 18 | #include <qlistview.h> |
19 | #include <qtextview.h> | 19 | #include <qtextview.h> |
20 | #include <qlineedit.h> | 20 | #include <qlineedit.h> |
21 | #include <qtabwidget.h> | 21 | #include <qtabwidget.h> |
22 | #include <qcombobox.h> | 22 | #include <qcombobox.h> |
23 | #include <qmessagebox.h> | ||
23 | #include <qlayout.h> | 24 | #include <qlayout.h> |
24 | 25 | ||
25 | #include "pksettingsbase.h" | 26 | #include "pksettingsbase.h" |
26 | #include "packagelistitem.h" | 27 | #include "packagelistitem.h" |
27 | 28 | ||
29 | |||
28 | MainWindow::MainWindow( QWidget *parent, const char *name, WFlags f = 0 ) : | 30 | MainWindow::MainWindow( QWidget *parent, const char *name, WFlags f = 0 ) : |
29 | QMainWindow( parent, name, f ) | 31 | QMainWindow( parent, name, f ) |
30 | { | 32 | { |
31 | settings = new PackageManagerSettings(this,0,TRUE); | 33 | settings = new PackageManagerSettings(this,0,TRUE); |
32 | listViewPackages = new PackageListView( this,"listViewPackages",settings ); | 34 | listViewPackages = new PackageListView( this,"listViewPackages",settings ); |
33 | ipkg = new PmIpkg( settings, this ); | 35 | ipkg = new PmIpkg( settings, this ); |
34 | 36 | ||
35 | setCentralWidget( listViewPackages ); | 37 | setCentralWidget( listViewPackages ); |
36 | setCaption( tr("Package Manager") ); | 38 | setCaption( tr("Package Manager") ); |
37 | 39 | ||
40 | //wait = new QMessageBox(tr("oipkg"),tr("Please wait")//,QMessageBox::Information,QMessageBox::NoButton,QMessageBox::NoButton,QMessageBox::NoButton); | ||
41 | wait = new QMessageBox(this); | ||
42 | wait->setText(tr("Please wait")); | ||
43 | |||
38 | channel = new QCopChannel( "QPE/Application/oipkg", this ); | 44 | channel = new QCopChannel( "QPE/Application/oipkg", this ); |
39 | connect( channel, SIGNAL(received(const QCString&, const QByteArray&)), | 45 | connect( channel, SIGNAL(received(const QCString&, const QByteArray&)), |
40 | this, SLOT(receive(const QCString&, const QByteArray&)) ); | 46 | this, SLOT(receive(const QCString&, const QByteArray&)) ); |
41 | 47 | ||
42 | makeMenu(); | 48 | makeMenu(); |
43 | 49 | ||
44 | connect( section, SIGNAL( activated(int) ), | 50 | connect( section, SIGNAL( activated(int) ), |
45 | this, SLOT( sectionChanged() ) ); | 51 | this, SLOT( sectionChanged() ) ); |
@@ -189,40 +195,48 @@ void MainWindow::runIpkg() | |||
189 | QCopEnvelope e("QPE/System", "linkChanged(QString)"); | 195 | QCopEnvelope e("QPE/System", "linkChanged(QString)"); |
190 | QString lf = QString::null; | 196 | QString lf = QString::null; |
191 | e << lf; | 197 | e << lf; |
192 | displayList(); | 198 | displayList(); |
193 | } | 199 | } |
194 | 200 | ||
195 | void MainWindow::updateList() | 201 | void MainWindow::updateList() |
196 | { | 202 | { |
203 | wait->show(); | ||
197 | QTimer *t = new QTimer( this ); | 204 | QTimer *t = new QTimer( this ); |
198 | connect( t, SIGNAL(timeout()), SLOT( rotateUpdateIcon() ) ); | 205 | connect( t, SIGNAL(timeout()), SLOT( rotateUpdateIcon() ) ); |
199 | t->start( 0, false ); | 206 | t->start( 0, false ); |
200 | packageList.clear(); | 207 | packageList.clear(); |
201 | ipkg->update(); | 208 | ipkg->update(); |
202 | getList(); | 209 | getList(); |
203 | t->stop(); | 210 | t->stop(); |
211 | wait->hide(); | ||
212 | |||
204 | } | 213 | } |
205 | 214 | ||
206 | void MainWindow::getList() | 215 | void MainWindow::getList() |
207 | { | 216 | { |
217 | wait->show(); | ||
208 | packageList.update(); | 218 | packageList.update(); |
209 | displayList(); | 219 | displayList(); |
220 | wait->hide(); | ||
210 | } | 221 | } |
211 | 222 | ||
212 | void MainWindow::filterList() | 223 | void MainWindow::filterList() |
213 | { | 224 | { |
225 | wait->show(); | ||
214 | QString f = ""; | 226 | QString f = ""; |
215 | if ( findAction->isOn() ) f = findEdit->text(); | 227 | if ( findAction->isOn() ) f = findEdit->text(); |
216 | packageList.filterPackages( f ); | 228 | packageList.filterPackages( f ); |
229 | wait->hide(); | ||
217 | } | 230 | } |
218 | 231 | ||
219 | void MainWindow::displayList() | 232 | void MainWindow::displayList() |
220 | { | 233 | { |
234 | wait->hide(); | ||
221 | filterList(); | 235 | filterList(); |
222 | listViewPackages->clear(); | 236 | listViewPackages->clear(); |
223 | Package *pack = packageList.first(); | 237 | Package *pack = packageList.first(); |
224 | while( pack ) | 238 | while( pack ) |
225 | { | 239 | { |
226 | if ( pack && (pack->name() != "") ) | 240 | if ( pack && (pack->name() != "") ) |
227 | listViewPackages->insertItem( new PackageListItem( listViewPackages, pack, settings ) ); | 241 | listViewPackages->insertItem( new PackageListItem( listViewPackages, pack, settings ) ); |
228 | pack = packageList.next(); | 242 | pack = packageList.next(); |
diff --git a/noncore/unsupported/oipkg/mainwindow.h b/noncore/unsupported/oipkg/mainwindow.h index bcb0cc9..a713d00 100644 --- a/noncore/unsupported/oipkg/mainwindow.h +++ b/noncore/unsupported/oipkg/mainwindow.h | |||
@@ -11,16 +11,17 @@ | |||
11 | #include "pksettings.h" | 11 | #include "pksettings.h" |
12 | #include "packagelistview.h" | 12 | #include "packagelistview.h" |
13 | 13 | ||
14 | class QComboBox; | 14 | class QComboBox; |
15 | class QPEToolBar; | 15 | class QPEToolBar; |
16 | class QLineEdit; | 16 | class QLineEdit; |
17 | class PackageListItem; | 17 | class PackageListItem; |
18 | class QCopChannel; | 18 | class QCopChannel; |
19 | class QMessageBox; | ||
19 | 20 | ||
20 | class MainWindow : public QMainWindow | 21 | class MainWindow : public QMainWindow |
21 | { | 22 | { |
22 | Q_OBJECT | 23 | Q_OBJECT |
23 | 24 | ||
24 | 25 | ||
25 | public: | 26 | public: |
26 | MainWindow( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); | 27 | MainWindow( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); |
@@ -64,13 +65,14 @@ private: | |||
64 | QAction *findAction; | 65 | QAction *findAction; |
65 | QAction *sectionAction; | 66 | QAction *sectionAction; |
66 | PackageListView *listViewPackages; | 67 | PackageListView *listViewPackages; |
67 | QPEToolBar *findBar; | 68 | QPEToolBar *findBar; |
68 | QLineEdit *findEdit; | 69 | QLineEdit *findEdit; |
69 | QPEToolBar *sectionBar; | 70 | QPEToolBar *sectionBar; |
70 | QComboBox *section; | 71 | QComboBox *section; |
71 | QComboBox *subsection; | 72 | QComboBox *subsection; |
73 | QMessageBox *wait; | ||
72 | private slots: | 74 | private slots: |
73 | void rotateUpdateIcon(); | 75 | void rotateUpdateIcon(); |
74 | }; | 76 | }; |
75 | 77 | ||
76 | #endif | 78 | #endif |
diff --git a/noncore/unsupported/oipkg/pksettings.cpp b/noncore/unsupported/oipkg/pksettings.cpp index f84a9c4..be01837 100644 --- a/noncore/unsupported/oipkg/pksettings.cpp +++ b/noncore/unsupported/oipkg/pksettings.cpp | |||
@@ -289,19 +289,19 @@ void PackageManagerSettings::readInstallationSetting(int setting) | |||
289 | QString dest = cfg.readEntry( "dest" ); | 289 | QString dest = cfg.readEntry( "dest" ); |
290 | QString linkdest = cfg.readEntry( "linkdest" ); | 290 | QString linkdest = cfg.readEntry( "linkdest" ); |
291 | pvDebug(3, "dest="+dest); | 291 | pvDebug(3, "dest="+dest); |
292 | pvDebug(3, "linkdest="+linkdest); | 292 | pvDebug(3, "linkdest="+linkdest); |
293 | 293 | ||
294 | for ( int i = 0; i < activeDestination->count(); i++) | 294 | for ( int i = 0; i < activeDestination->count(); i++) |
295 | { | 295 | { |
296 | if ( activeDestination->text( i ) == dest ) | 296 | if ( activeDestination->text( i ) == dest ) |
297 | activeDestination->setCurrentItem( i ); | 297 | activeDestination->setCurrentItem( i ); |
298 | if ( activeLinkDestination->text( i ) == linkdest ) | 298 | if ( activeLinkDestination->text( i ) == linkdest ) |
299 | activeLinkDestination->setCurrentItem( i ); | 299 | activeLinkDestination->setCurrentItem( i ); |
300 | } | 300 | } |
301 | } | 301 | } |
302 | 302 | ||
303 | void PackageManagerSettings::writeCurrentInstallationSetting() | 303 | void PackageManagerSettings::writeCurrentInstallationSetting() |
304 | { | 304 | { |
305 | Config cfg( "oipkg", Config::User ); | 305 | Config cfg( "oipkg", Config::User ); |
306 | changed = false; | 306 | changed = false; |
307 | cfg.setGroup( "Setting_" + QString::number(currentSetting) ); | 307 | cfg.setGroup( "Setting_" + QString::number(currentSetting) ); |
diff --git a/noncore/unsupported/oipkg/pmipkg.cpp b/noncore/unsupported/oipkg/pmipkg.cpp index f0992f5..ecc97b2 100644 --- a/noncore/unsupported/oipkg/pmipkg.cpp +++ b/noncore/unsupported/oipkg/pmipkg.cpp | |||
@@ -197,93 +197,94 @@ void PmIpkg::commit( PackageList pl ) | |||
197 | } | 197 | } |
198 | 198 | ||
199 | startDialog(); | 199 | startDialog(); |
200 | 200 | ||
201 | } | 201 | } |
202 | 202 | ||
203 | void PmIpkg::startDialog() | 203 | void PmIpkg::startDialog() |
204 | { | 204 | { |
205 | QDialog *d = new QDialog(); | 205 | installDialog = new QDialog(0,0,true); |
206 | QGridLayout *RunWindowLayout = new QGridLayout( d ); | 206 | QGridLayout *RunWindowLayout = new QGridLayout( installDialog ); |
207 | RunWindowLayout->setSpacing( 2 ); | 207 | RunWindowLayout->setSpacing( 2 ); |
208 | RunWindowLayout->setMargin( 2 ); | 208 | RunWindowLayout->setMargin( 2 ); |
209 | 209 | ||
210 | QHBoxLayout *buttons = new QHBoxLayout; | 210 | QHBoxLayout *buttons = new QHBoxLayout; |
211 | buttons->setSpacing( 6 ); | 211 | buttons->setSpacing( 6 ); |
212 | buttons->setMargin( 0 ); | 212 | buttons->setMargin( 0 ); |
213 | 213 | ||
214 | PackageListView *plv = new PackageListView(d, "install",settings); | 214 | PackageListView *plv = new PackageListView(installDialog, "install",settings); |
215 | RunWindowLayout->addWidget( plv, 1, 0 ); | 215 | RunWindowLayout->addWidget( plv, 1, 0 ); |
216 | for (Package *it=to_remove.first(); it != 0; it=to_remove.next() ) | 216 | for (Package *it=to_remove.first(); it != 0; it=to_remove.next() ) |
217 | { | 217 | { |
218 | plv->insertItem( new PackageListItem(plv, it,settings) ); | 218 | plv->insertItem( new PackageListItem(plv, it,settings) ); |
219 | } | 219 | } |
220 | for (Package *it=to_install.first(); it != 0; it=to_install.next() ) | 220 | for (Package *it=to_install.first(); it != 0; it=to_install.next() ) |
221 | { | 221 | { |
222 | plv->insertItem( new PackageListItem(plv, it,settings) ); | 222 | plv->insertItem( new PackageListItem(plv, it,settings) ); |
223 | } | 223 | } |
224 | QPushButton *doItButton = new QPushButton( d, "doItButton" ); | 224 | QPushButton *doItButton = new QPushButton( installDialog, "doItButton" ); |
225 | doItButton->setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)0, (QSizePolicy::SizeType)0, doItButton->sizePolicy().hasHeightForWidth() ) ); | 225 | doItButton->setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)0, (QSizePolicy::SizeType)0, doItButton->sizePolicy().hasHeightForWidth() ) ); |
226 | QFont doItButton_font( doItButton->font() ); | 226 | QFont doItButton_font( doItButton->font() ); |
227 | doItButton_font.setPointSize( 8 ); | 227 | doItButton_font.setPointSize( 8 ); |
228 | doItButton->setFont( doItButton_font ); | 228 | doItButton->setFont( doItButton_font ); |
229 | doItButton->setText( tr( "Do all " ) ); | 229 | doItButton->setText( tr( "Do all " ) ); |
230 | doItButton->setAutoResize( FALSE ); | 230 | doItButton->setAutoResize( FALSE ); |
231 | buttons->addWidget( doItButton ); | 231 | buttons->addWidget( doItButton ); |
232 | 232 | ||
233 | QPushButton *installButton = new QPushButton( d, "installButton" ); | 233 | QPushButton *installButton = new QPushButton( installDialog, "installButton" ); |
234 | QFont installButton_font( installButton->font() ); | 234 | QFont installButton_font( installButton->font() ); |
235 | installButton_font.setPointSize( 8 ); | 235 | installButton_font.setPointSize( 8 ); |
236 | installButton->setFont( installButton_font ); | 236 | installButton->setFont( installButton_font ); |
237 | installButton->setText( tr( "Install" ) ); | 237 | installButton->setText( tr( "Install" ) ); |
238 | installButton->setAutoResize( TRUE ); | 238 | installButton->setAutoResize( TRUE ); |
239 | buttons->addWidget( installButton ); | 239 | buttons->addWidget( installButton ); |
240 | 240 | ||
241 | QPushButton *removeButton = new QPushButton( d, "removeButton" ); | 241 | QPushButton *removeButton = new QPushButton( installDialog, "removeButton" ); |
242 | QFont removeButton_font( removeButton->font() ); | 242 | QFont removeButton_font( removeButton->font() ); |
243 | removeButton_font.setPointSize( 7 ); | 243 | removeButton_font.setPointSize( 7 ); |
244 | removeButton->setFont( removeButton_font ); | 244 | removeButton->setFont( removeButton_font ); |
245 | removeButton->setText( tr( "Remove" ) ); | 245 | removeButton->setText( tr( "Remove" ) ); |
246 | removeButton->setAutoResize( TRUE ); | 246 | removeButton->setAutoResize( TRUE ); |
247 | buttons->addWidget( removeButton ); | 247 | buttons->addWidget( removeButton ); |
248 | 248 | ||
249 | QPushButton *cancelButton = new QPushButton( d, "cancelButton" ); | 249 | QPushButton *cancelButton = new QPushButton( installDialog, "cancelButton" ); |
250 | QFont cancelButton_font( cancelButton->font() ); | 250 | QFont cancelButton_font( cancelButton->font() ); |
251 | cancelButton_font.setPointSize( 8 ); | 251 | cancelButton_font.setPointSize( 8 ); |
252 | cancelButton->setFont( cancelButton_font ); | 252 | cancelButton->setFont( cancelButton_font ); |
253 | cancelButton->setText( tr( "Cancel" ) ); | 253 | cancelButton->setText( tr( "Cancel" ) ); |
254 | cancelButton->setAutoResize( TRUE ); | 254 | cancelButton->setAutoResize( TRUE ); |
255 | buttons->addWidget( cancelButton ); | 255 | buttons->addWidget( cancelButton ); |
256 | 256 | ||
257 | RunWindowLayout->addLayout( buttons, 3, 0 ); | 257 | RunWindowLayout->addLayout( buttons, 3, 0 ); |
258 | 258 | ||
259 | connect( doItButton, SIGNAL( clicked() ), | 259 | connect( doItButton, SIGNAL( clicked() ), |
260 | this, SLOT( doIt() ) ); | 260 | this, SLOT( doIt() ) ); |
261 | connect( installButton, SIGNAL( clicked() ), | 261 | connect( installButton, SIGNAL( clicked() ), |
262 | this, SLOT( install() ) ); | 262 | this, SLOT( install() ) ); |
263 | connect( removeButton, SIGNAL( clicked() ), | 263 | connect( removeButton, SIGNAL( clicked() ), |
264 | this, SLOT( remove() ) ); | 264 | this, SLOT( remove() ) ); |
265 | connect( cancelButton, SIGNAL( clicked() ), | 265 | connect( cancelButton, SIGNAL( clicked() ), |
266 | d, SLOT( close() ) ); | 266 | installDialog, SLOT( close() ) ); |
267 | d->showMaximized(); | 267 | installDialog->showMaximized(); |
268 | d->exec(); | 268 | if ( installDialog->exec() ) doIt(); |
269 | // d->close(); | 269 | installDialog->close(); |
270 | } | 270 | } |
271 | 271 | ||
272 | void PmIpkg::doIt() | 272 | void PmIpkg::doIt() |
273 | { | 273 | { |
274 | remove(); | 274 | remove(); |
275 | install(); | 275 | install(); |
276 | } | 276 | } |
277 | 277 | ||
278 | 278 | ||
279 | void PmIpkg::remove() | 279 | void PmIpkg::remove() |
280 | { | 280 | { |
281 | if ( to_remove.count() == 0 ) return; | 281 | if ( to_remove.count() == 0 ) return; |
282 | installDialog->close(); | ||
282 | show( true ); | 283 | show( true ); |
283 | 284 | ||
284 | out("<hr><hr><b>"+tr("Removing")+"<br>"+tr("please wait")+"</b><br>"); | 285 | out("<hr><hr><b>"+tr("Removing")+"<br>"+tr("please wait")+"</b><br>"); |
285 | 286 | ||
286 | for (Package *it=to_remove.first(); it != 0; it=to_remove.next() ) | 287 | for (Package *it=to_remove.first(); it != 0; it=to_remove.next() ) |
287 | { | 288 | { |
288 | if ( runIpkg("remove " + it->name()) == 0) | 289 | if ( runIpkg("remove " + it->name()) == 0) |
289 | { | 290 | { |
@@ -295,16 +296,17 @@ void PmIpkg::remove() | |||
295 | } | 296 | } |
296 | } | 297 | } |
297 | } | 298 | } |
298 | 299 | ||
299 | 300 | ||
300 | void PmIpkg::install() | 301 | void PmIpkg::install() |
301 | { | 302 | { |
302 | if ( to_install.count() == 0 ) return; | 303 | if ( to_install.count() == 0 ) return; |
304 | installDialog->close(); | ||
303 | show( true ); | 305 | show( true ); |
304 | out("<hr><hr><b>"+tr("Installing")+"<br>"+tr("please wait")+"</b><br>"); | 306 | out("<hr><hr><b>"+tr("Installing")+"<br>"+tr("please wait")+"</b><br>"); |
305 | for (Package *it=to_install.first(); it != 0; it=to_install.next() ) | 307 | for (Package *it=to_install.first(); it != 0; it=to_install.next() ) |
306 | { | 308 | { |
307 | 309 | ||
308 | if ( runIpkg("install " + it->getPackageName(), it->dest() ) == 0 ) | 310 | if ( runIpkg("install " + it->getPackageName(), it->dest() ) == 0 ) |
309 | { | 311 | { |
310 | runwindow->progress->setProgress( it->size().toInt() + runwindow->progress->progress()); | 312 | runwindow->progress->setProgress( it->size().toInt() + runwindow->progress->progress()); |
diff --git a/noncore/unsupported/oipkg/pmipkg.h b/noncore/unsupported/oipkg/pmipkg.h index f70283e..c5e6255 100644 --- a/noncore/unsupported/oipkg/pmipkg.h +++ b/noncore/unsupported/oipkg/pmipkg.h | |||
@@ -23,16 +23,17 @@ public: | |||
23 | void update(); | 23 | void update(); |
24 | PackageList* getPackageList(); | 24 | PackageList* getPackageList(); |
25 | void showButtons(bool b=true); | 25 | void showButtons(bool b=true); |
26 | void show( bool buttons=true ); | 26 | void show( bool buttons=true ); |
27 | 27 | ||
28 | private: | 28 | private: |
29 | PackageManagerSettings* settings; | 29 | PackageManagerSettings* settings; |
30 | RunWindow *runwindow; | 30 | RunWindow *runwindow; |
31 | QDialog *installDialog; | ||
31 | QList<Package> to_remove; | 32 | QList<Package> to_remove; |
32 | QList<Package> to_install; | 33 | QList<Package> to_install; |
33 | bool runwindowopen; | 34 | bool runwindowopen; |
34 | QString fileNameToInstall; | 35 | QString fileNameToInstall; |
35 | 36 | ||
36 | void startDialog(); | 37 | void startDialog(); |
37 | void makeLinks(Package*); | 38 | void makeLinks(Package*); |
38 | void linkPackage( QString, QString ); | 39 | void linkPackage( QString, QString ); |