summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg/pmipkg.h
Side-by-side diff
Diffstat (limited to 'noncore/unsupported/oipkg/pmipkg.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/pmipkg.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/noncore/unsupported/oipkg/pmipkg.h b/noncore/unsupported/oipkg/pmipkg.h
index e6486ff..8718f49 100644
--- a/noncore/unsupported/oipkg/pmipkg.h
+++ b/noncore/unsupported/oipkg/pmipkg.h
@@ -11,10 +11,6 @@
#include "debug.h"
-//#define DIA
-#include <qpe/qcopenvelope_qws.h>
-
-//class PmIpkg : public RunWindow
class PmIpkg : public QObject
{
@@ -22,5 +18,4 @@ class PmIpkg : public QObject
public:
PmIpkg( PackageManagerSettings* , QWidget* p=0, const char * name=0, WFlags f=0 );
- // PmIpkg( QObject*, PackageManagerSettings* );
~PmIpkg();
@@ -28,9 +23,13 @@ public:
void update();
PackageList* getPackageList();
+ void showButtons(bool b=true);
+ void show( bool buttons=true );
private:
PackageManagerSettings* settings;
RunWindow *runwindow;
- QCopChannel *linkDest;
+ QStringList to_remove;
+ QStringList to_install;
+ bool runwindowopen;
void makeLinks(QString);
@@ -41,4 +40,7 @@ private:
public slots:
+ void doIt();
+ void install();
+ void remove();
void linkDestination( const QString, const QByteArray );
};