summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg/pmipkg.h
authortille <tille>2002-04-25 21:06:23 (UTC)
committer tille <tille>2002-04-25 21:06:23 (UTC)
commit054b0f3268189d6f8f06135960042a7f51117223 (patch) (side-by-side diff)
tree2ab5eef44d4e6604d6c0a45e51608390c8b3a521 /noncore/unsupported/oipkg/pmipkg.h
parentc06667cd62b945a05edce621aab34358ee0e964f (diff)
downloadopie-054b0f3268189d6f8f06135960042a7f51117223.zip
opie-054b0f3268189d6f8f06135960042a7f51117223.tar.gz
opie-054b0f3268189d6f8f06135960042a7f51117223.tar.bz2
installation messages working
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
@@ -10,28 +10,27 @@
#include "packagelist.h"
#include "debug.h"
-//#define DIA
-#include <qpe/qcopenvelope_qws.h>
-
-//class PmIpkg : public RunWindow
class PmIpkg : public QObject
{
Q_OBJECT
public:
PmIpkg( PackageManagerSettings* , QWidget* p=0, const char * name=0, WFlags f=0 );
- // PmIpkg( QObject*, PackageManagerSettings* );
~PmIpkg();
void commit( PackageList );
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);
void processLinkDir( QString, QString );
@@ -40,6 +39,9 @@ private:
void out( QString );
public slots:
+ void doIt();
+ void install();
+ void remove();
void linkDestination( const QString, const QByteArray );
};