summaryrefslogtreecommitdiff
path: root/noncore/settings
Unidiff
Diffstat (limited to 'noncore/settings') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/networkpkgmgr.cpp65
1 files changed, 61 insertions, 4 deletions
diff --git a/noncore/settings/aqpkg/networkpkgmgr.cpp b/noncore/settings/aqpkg/networkpkgmgr.cpp
index 06e2a03..0bc01df 100644
--- a/noncore/settings/aqpkg/networkpkgmgr.cpp
+++ b/noncore/settings/aqpkg/networkpkgmgr.cpp
@@ -32,6 +32,7 @@ using namespace std;
32#endif 32#endif
33#include <qlabel.h> 33#include <qlabel.h>
34#include <qfile.h> 34#include <qfile.h>
35#include <qmessagebox.h>
35 36
36#include "datamgr.h" 37#include "datamgr.h"
37#include "networkpkgmgr.h" 38#include "networkpkgmgr.h"
@@ -97,6 +98,7 @@ void NetworkPackageManager :: initGui()
97 packagesList = new QListView( this ); 98 packagesList = new QListView( this );
98 update = new QPushButton( "Refresh List", this ); 99 update = new QPushButton( "Refresh List", this );
99 download = new QPushButton( "Download", this ); 100 download = new QPushButton( "Download", this );
101 upgrade = new QPushButton( "Upgrade", this );
100 apply = new QPushButton( "Apply", this ); 102 apply = new QPushButton( "Apply", this );
101 103
102 QVBoxLayout *vbox = new QVBoxLayout( this, 0, -1, "VBox" ); 104 QVBoxLayout *vbox = new QVBoxLayout( this, 0, -1, "VBox" );
@@ -110,6 +112,7 @@ void NetworkPackageManager :: initGui()
110 QHBoxLayout *hbox2 = new QHBoxLayout( vbox, -1, "HBox2" ); 112 QHBoxLayout *hbox2 = new QHBoxLayout( vbox, -1, "HBox2" );
111 hbox2->addWidget( update ); 113 hbox2->addWidget( update );
112 hbox2->addWidget( download ); 114 hbox2->addWidget( download );
115 hbox2->addWidget( upgrade );
113 hbox2->addWidget( apply ); 116 hbox2->addWidget( apply );
114} 117}
115 118
@@ -118,14 +121,15 @@ void NetworkPackageManager :: setupConnections()
118 connect( serversList, SIGNAL(activated( int )), this, SLOT(serverSelected( int ))); 121 connect( serversList, SIGNAL(activated( int )), this, SLOT(serverSelected( int )));
119 connect( apply, SIGNAL(released()), this, SLOT(applyChanges()) ); 122 connect( apply, SIGNAL(released()), this, SLOT(applyChanges()) );
120 connect( download, SIGNAL(released()), this, SLOT(downloadPackage()) ); 123 connect( download, SIGNAL(released()), this, SLOT(downloadPackage()) );
124 connect( upgrade, SIGNAL( released()), this, SLOT(upgradePackages()) );
121 connect( update, SIGNAL(released()), this, SLOT(updateServer()) ); 125 connect( update, SIGNAL(released()), this, SLOT(updateServer()) );
122} 126}
123 127
124void NetworkPackageManager :: showProgressDialog() 128void NetworkPackageManager :: showProgressDialog( char *initialText )
125{ 129{
126 if ( !progressDlg ) 130 if ( !progressDlg )
127 progressDlg = new ProgressDlg( this, "Progress", false ); 131 progressDlg = new ProgressDlg( this, "Progress", false );
128 progressDlg->setText( "Reading installed packages" ); 132 progressDlg->setText( initialText );
129 progressDlg->show(); 133 progressDlg->show();
130} 134}
131 135
@@ -175,16 +179,24 @@ void NetworkPackageManager :: serverSelected( int )
175 } 179 }
176 180
177 // If the local server or the local ipkgs server disable the download button 181 // If the local server or the local ipkgs server disable the download button
178 download->setText( "Download" );
179 if ( serverName == LOCAL_SERVER ) 182 if ( serverName == LOCAL_SERVER )
183 {
184 upgrade->setEnabled( false );
185 download->setText( "Download" );
180 download->setEnabled( false ); 186 download->setEnabled( false );
187 }
181 else if ( serverName == LOCAL_IPKGS ) 188 else if ( serverName == LOCAL_IPKGS )
182 { 189 {
190 upgrade->setEnabled( false );
183 download->setEnabled( true ); 191 download->setEnabled( true );
184 download->setText( "Remove" ); 192 download->setText( "Remove" );
185 } 193 }
186 else 194 else
195 {
196 upgrade->setEnabled( true );
187 download->setEnabled( true ); 197 download->setEnabled( true );
198 download->setText( "Download" );
199 }
188} 200}
189 201
190void NetworkPackageManager :: updateServer() 202void NetworkPackageManager :: updateServer()
@@ -225,6 +237,34 @@ void NetworkPackageManager :: updateServer()
225 delete dlg; 237 delete dlg;
226} 238}
227 239
240void NetworkPackageManager :: upgradePackages()
241{
242 // We're gonna do an upgrade of all packages
243 // First warn user that this isn't recommended
244 QString text = "WARNING: Upgrading while\nOpie/Qtopia is running\nis NOT recommended!\n\nAre you sure?\n";
245 QMessageBox warn("Warning", text, QMessageBox::Warning,
246 QMessageBox::Yes,
247 QMessageBox::No | QMessageBox::Escape | QMessageBox::Default ,
248 0, this );
249 warn.adjustSize();
250
251 if ( warn.exec() == QMessageBox::Yes )
252 {
253 // First, write out ipkg_conf file so that ipkg can use it
254 dataMgr->writeOutIpkgConf();
255
256 // Now run upgrade
257 InstallDlgImpl dlg( this, "Upgrade", true );
258 dlg.showDlg();
259
260 // Reload data
261 dataMgr->reloadServerData( LOCAL_SERVER );
262
263 dataMgr->reloadServerData( serversList->currentText() );
264 serverSelected(-1);
265 }
266}
267
228 268
229void NetworkPackageManager :: downloadPackage() 269void NetworkPackageManager :: downloadPackage()
230{ 270{
@@ -343,6 +383,7 @@ void NetworkPackageManager :: applyChanges()
343 383
344 // Reload data 384 // Reload data
345 dataMgr->reloadServerData( LOCAL_SERVER ); 385 dataMgr->reloadServerData( LOCAL_SERVER );
386
346 dataMgr->reloadServerData( serversList->currentText() ); 387 dataMgr->reloadServerData( serversList->currentText() );
347 serverSelected(-1); 388 serverSelected(-1);
348 389
@@ -384,7 +425,23 @@ QString NetworkPackageManager :: dealWithItem( QCheckListItem *item )
384 else 425 else
385 { 426 {
386 if ( p->getVersion() == p->getInstalledVersion() ) 427 if ( p->getVersion() == p->getInstalledVersion() )
387 return QString( "D" ) + name; 428 {
429 QString msgtext;
430 msgtext.sprintf( "Do you wish to remove or reinstall\n%s?", (const char *)name );
431 switch( QMessageBox::information( this, "Remove or ReInstall",
432 msgtext, "Remove", "ReInstall" ) )
433 {
434 case 0: // Try again or Enter
435 return QString( "D" ) + name;
436 break;
437 case 1: // Quit or Escape
438 return QString( "U" ) + name;
439 break;
440 }
441
442 // User hit cancel (on dlg - assume remove)
443 return QString( "D" ) + name;
444 }
388 else 445 else
389 return QString( "U" ) + name; 446 return QString( "U" ) + name;
390 } 447 }