summaryrefslogtreecommitdiff
path: root/noncore/settings/packagemanager/oipkg.h
authordrw <drw>2004-02-05 16:34:04 (UTC)
committer drw <drw>2004-02-05 16:34:04 (UTC)
commitef8ece225a663f0ff1262989085fc214500beebe (patch) (side-by-side diff)
tree2d6902575eb29de18a0ed7f3a33acadabd37021b /noncore/settings/packagemanager/oipkg.h
parent823399a552c04821fb0b49d816d733fa21a12a21 (diff)
downloadopie-ef8ece225a663f0ff1262989085fc214500beebe.zip
opie-ef8ece225a663f0ff1262989085fc214500beebe.tar.gz
opie-ef8ece225a663f0ff1262989085fc214500beebe.tar.bz2
Completed package information dialog and a couple of other minor tweaks
Diffstat (limited to 'noncore/settings/packagemanager/oipkg.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/packagemanager/oipkg.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/noncore/settings/packagemanager/oipkg.h b/noncore/settings/packagemanager/oipkg.h
index 824fa17..ea126cf 100644
--- a/noncore/settings/packagemanager/oipkg.h
+++ b/noncore/settings/packagemanager/oipkg.h
@@ -79,23 +79,27 @@ public:
bool executeCommand( OPackage::Command command = OPackage::NotDefined, QStringList *parameters = 0x0,
const QString &destination = QString::null, const QObject *receiver = 0x0,
const char *slotOutput = 0x0, bool rawOutput = true );
void abortCommand();
- void ipkgOutput( char *msg );
+ void ipkgMessage( char *msg );
+ void ipkgStatus( char *status );
+ void ipkgList( char *filelist );
private:
Config *m_config; // Pointer to application configuration file
args_t m_ipkgArgs; // libipkg configuration arguments
OConfItemList *m_confInfo; // Contains info from all Ipkg configuration files
int m_ipkgExecOptions; // Bit-mapped flags for Ipkg execution options
int m_ipkgExecVerbosity; // Ipkg execution verbosity level
void loadConfiguration();
OConfItemList *filterConfItems( OConfItem::Type typefilter = OConfItem::NotDefined );
signals:
- void execOutput( char *msg );
+ void signalIpkgMessage( char *msg );
+ void signalIpkgStatus( char *status );
+ void signalIpkgList( char *filelist );
};
#endif