summaryrefslogtreecommitdiff
path: root/core/launcher
authorzecke <zecke>2003-08-28 14:39:57 (UTC)
committer zecke <zecke>2003-08-28 14:39:57 (UTC)
commit8aff9d2f2d079e4500b6bbbd9f410c16cee3f6a1 (patch) (unidiff)
treea1472e8731b122d8e9493c01b68884acb18d1cf8 /core/launcher
parent613dff8e20a2d02b0d9617da2ba94238d120a922 (diff)
downloadopie-8aff9d2f2d079e4500b6bbbd9f410c16cee3f6a1.zip
opie-8aff9d2f2d079e4500b6bbbd9f410c16cee3f6a1.tar.gz
opie-8aff9d2f2d079e4500b6bbbd9f410c16cee3f6a1.tar.bz2
Include fixes for Opie
Diffstat (limited to 'core/launcher') (more/less context) (show whitespace changes)
-rw-r--r--core/launcher/packageslave.h29
1 files changed, 25 insertions, 4 deletions
diff --git a/core/launcher/packageslave.h b/core/launcher/packageslave.h
index 036abed..878b4c3 100644
--- a/core/launcher/packageslave.h
+++ b/core/launcher/packageslave.h
@@ -1,5 +1,5 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of the Qtopia Environment.
5** 5**
@@ -23,2 +23,3 @@
23 23
24#include <qtopia/global.h>
24#include <qobject.h> 25#include <qobject.h>
@@ -26,4 +27,5 @@
26class QCopChannel; 27class QCopChannel;
28class QProcess;
27 29
28class PackageSlave : public QObject 30class PackageHandler : public QObject
29{ 31{
@@ -32,3 +34,6 @@ class PackageSlave : public QObject
32public: 34public:
33 PackageSlave( QObject *parent, char* name = 0 ); 35 PackageHandler( QObject *parent, char* name = 0 );
36
37public slots:
38 void redoPackages();
34 39
@@ -38,4 +43,16 @@ protected:
38 43
44 void addPackageFiles( const QString &location, const QString &listfile );
45 void addPackages( const QString &location );
46
47 void cleanupPackageFiles( const QString &listfile );
48 void cleanupPackages( const QString &location );
49
50 void prepareInstall( const QString& size, const QString& path );
51
39protected slots: 52protected slots:
40 void qcopMessage( const QCString &msg, const QByteArray &data ); 53 void qcopMessage( const QCString &msg, const QByteArray &data );
54 void iProcessExited();
55 void rmProcessExited();
56 void readyReadStdout();
57 void readyReadStderr();
41 58
@@ -46,2 +63,6 @@ private:
46 QCopChannel *packageChannel; 63 QCopChannel *packageChannel;
64 QProcess *currentProcess;
65 QString currentPackage;
66 QString currentProcessError;
67 bool mNoSpaceLeft;
47}; 68};