summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/TODO2
-rw-r--r--noncore/unsupported/oipkg/mainwindow.cpp18
-rw-r--r--noncore/unsupported/oipkg/mainwindow.h5
-rw-r--r--noncore/unsupported/oipkg/pmipkg.cpp40
-rw-r--r--noncore/unsupported/oipkg/pmipkg.h4
5 files changed, 65 insertions, 4 deletions
diff --git a/noncore/unsupported/oipkg/TODO b/noncore/unsupported/oipkg/TODO
index 744cba4..b07542a 100644
--- a/noncore/unsupported/oipkg/TODO
+++ b/noncore/unsupported/oipkg/TODO
@@ -1,3 +1,4 @@
1* setDocument function
1* Settings Class 2* Settings Class
2* tr() ;) 3* tr() ;)
3* Dialog to display ipkg output live 4* Dialog to display ipkg output live
@@ -6,3 +7,4 @@
6* qcop 7* qcop
7* error handling 8* error handling
8* manage links 9* manage links
10* dependency checking \ No newline at end of file
diff --git a/noncore/unsupported/oipkg/mainwindow.cpp b/noncore/unsupported/oipkg/mainwindow.cpp
index 25ca889..e3abf36 100644
--- a/noncore/unsupported/oipkg/mainwindow.cpp
+++ b/noncore/unsupported/oipkg/mainwindow.cpp
@@ -33,6 +33,10 @@ MainWindow::MainWindow( QWidget *parent, const char *name, WFlags f = 0 ) :
33 listViewPackages->setSelectionMode(QListView::NoSelection); 33 listViewPackages->setSelectionMode(QListView::NoSelection);
34 setCentralWidget( listViewPackages ); 34 setCentralWidget( listViewPackages );
35 35
36 channel = new QCopChannel( "QPE/Application/oipkg", this );
37 connect( channel, SIGNAL(received(const QCString&, const QByteArray&)),
38 this, SLOT(receive(const QCString&, const QByteArray&)) );
39
36 makeMenu(); 40 makeMenu();
37#ifdef NEWLAYOUT 41#ifdef NEWLAYOUT
38 listViewPackages->addColumn( tr("Package") ); 42 listViewPackages->addColumn( tr("Package") );
@@ -416,3 +420,17 @@ void MainWindow::stopTimer( QListViewItem* )
416 pvDebug( 5, "stop timer" ); 420 pvDebug( 5, "stop timer" );
417 popupTimer->stop(); 421 popupTimer->stop();
418} 422}
423
424void MainWindow::setDocument(const QString &fileName)
425{
426 ipkg->installFile( fileName );
427}
428
429void MainWindow::receive(const QCString &msg, const QByteArray &arg)
430{
431 pvDebug(3, "QCop "+msg);
432 if ( msg == "setDocument(QString)" )
433 {
434 setDocument( QString(arg) );
435 }
436} \ No newline at end of file
diff --git a/noncore/unsupported/oipkg/mainwindow.h b/noncore/unsupported/oipkg/mainwindow.h
index adc5e78..34943f2 100644
--- a/noncore/unsupported/oipkg/mainwindow.h
+++ b/noncore/unsupported/oipkg/mainwindow.h
@@ -16,6 +16,7 @@ class QPEToolBar;
16class QLineEdit; 16class QLineEdit;
17class QListView; 17class QListView;
18class PackageListItem; 18class PackageListItem;
19class QCopChannel;
19 20
20class MainWindow : public QMainWindow 21class MainWindow : public QMainWindow
21{ 22{
@@ -26,6 +27,8 @@ 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 );
27 ~MainWindow(); 28 ~MainWindow();
28 29
30 QCopChannel *channel;
31
29protected slots: 32protected slots:
30 void runIpkg(); 33 void runIpkg();
31 void getList(); 34 void getList();
@@ -36,6 +39,7 @@ protected slots:
36 void showSettings(); 39 void showSettings();
37 void showSettingsSrv(); 40 void showSettingsSrv();
38 void showSettingsDst(); 41 void showSettingsDst();
42 void setDocument (const QString &);
39 43
40public slots: 44public slots:
41 void showDetails(); 45 void showDetails();
@@ -49,6 +53,7 @@ public slots:
49 void showPopup(); 53 void showPopup();
50 void changePackageDest( int ); 54 void changePackageDest( int );
51 void stopTimer( QListViewItem* ); 55 void stopTimer( QListViewItem* );
56 void receive (const QCString &, const QByteArray &);
52 57
53private: 58private:
54 void makeMenu(); 59 void makeMenu();
diff --git a/noncore/unsupported/oipkg/pmipkg.cpp b/noncore/unsupported/oipkg/pmipkg.cpp
index 3b31b4d..45c89c5 100644
--- a/noncore/unsupported/oipkg/pmipkg.cpp
+++ b/noncore/unsupported/oipkg/pmipkg.cpp
@@ -111,10 +111,15 @@ void PmIpkg::makeLinks(Package *pack)
111 QString statusDir = cfg.readEntry( "statusDir", "" ); 111 QString statusDir = cfg.readEntry( "statusDir", "" );
112 } 112 }
113 QString fn = dest+"/"+statusDir+"/info/"+pack->name()+".list"; 113 QString fn = dest+"/"+statusDir+"/info/"+pack->name()+".list";
114 QFile f( fn ); 114 linkPackage( fn, dest );
115 if ( ! f.open(IO_ReadOnly) ) 115}
116
117void PmIpkg::linkPackage( QString packFileName, QString dest )
118{
119 QFile f( packFileName );
120 if ( ! f.open(IO_ReadOnly) )
116 { 121 {
117 out( "<b>Panik!</b> Could not open:<br>"+fn ); 122 out( "<b>Panik!</b> Could not open:<br>"+packFileName );
118 return; 123 return;
119 }; 124 };
120 QTextStream t( &f ); 125 QTextStream t( &f );
@@ -207,7 +212,7 @@ void PmIpkg::commit( PackageList pl )
207 runwindow, SLOT( close() ) ); 212 runwindow, SLOT( close() ) );
208 213
209 runwindow->exec(); 214 runwindow->exec();
210 return; 215 out("<h1>"+tr("Its now save to close this window")+"<h1>");
211} 216}
212 217
213void PmIpkg::doIt() 218void PmIpkg::doIt()
@@ -314,3 +319,30 @@ void PmIpkg::show(bool b)
314 else 319 else
315 runwindow->progress->show(); 320 runwindow->progress->show();
316} 321}
322
323void PmIpkg::installFile(const QString &fileName)
324{
325 pvDebug( 2,"PmIpkg::installFile "+ fileName);
326 show( false );
327 runwindow->outPut->setText("");
328 fileNameToInstall = fileName;
329 runwindow->doItButton->hide();
330 runwindow->removeButton->hide();
331 out("<b>"+tr("Install: ")+fileName);
332 connect( runwindow->installButton, SIGNAL( clicked() ),
333 this, SLOT( installFileName() ) );
334 connect( runwindow->cancelButton, SIGNAL( clicked() ),
335 runwindow, SLOT( close() ) );
336
337 runwindow->exec();
338}
339
340void PmIpkg::installFileName()
341{
342 if ( !QFile::exists( fileNameToInstall ) ) return;
343 out(tr("Installing pacakge ")+fileNameToInstall+"<br>"+tr("please wait")+"</b><br>");
344 runIpkg("install " + fileNameToInstall );
345 if ( settings->createLinks() )
346 linkPackage( fileNameToInstall, settings->getDestinationUrl() );
347 out("<h1>"+tr("Its now save to close this window")+"<h1>");
348} \ No newline at end of file
diff --git a/noncore/unsupported/oipkg/pmipkg.h b/noncore/unsupported/oipkg/pmipkg.h
index c57adb7..8e06f4c 100644
--- a/noncore/unsupported/oipkg/pmipkg.h
+++ b/noncore/unsupported/oipkg/pmipkg.h
@@ -31,8 +31,10 @@ private:
31 QList<Package> to_remove; 31 QList<Package> to_remove;
32 QList<Package> to_install; 32 QList<Package> to_install;
33 bool runwindowopen; 33 bool runwindowopen;
34 QString fileNameToInstall;
34 35
35 void makeLinks(Package*); 36 void makeLinks(Package*);
37 void linkPackage( QString, QString );
36 void processLinkDir( QString, QString ); 38 void processLinkDir( QString, QString );
37 int runIpkg(const QString& args, const QString& dest="" ); 39 int runIpkg(const QString& args, const QString& dest="" );
38 void out( QString ); 40 void out( QString );
@@ -40,7 +42,9 @@ private:
40public slots: 42public slots:
41 void doIt(); 43 void doIt();
42 void install(); 44 void install();
45 void installFileName();
43 void remove(); 46 void remove();
47 void installFile(const QString &fileName);
44 void linkDestination( const QString, const QByteArray ); 48 void linkDestination( const QString, const QByteArray );
45}; 49};
46 50