summaryrefslogtreecommitdiff
path: root/noncore/settings/packagemanager/packageinfodlg.h
authordrw <drw>2004-02-05 16:34:04 (UTC)
committer drw <drw>2004-02-05 16:34:04 (UTC)
commitef8ece225a663f0ff1262989085fc214500beebe (patch) (unidiff)
tree2d6902575eb29de18a0ed7f3a33acadabd37021b /noncore/settings/packagemanager/packageinfodlg.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/packageinfodlg.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/packagemanager/packageinfodlg.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/noncore/settings/packagemanager/packageinfodlg.h b/noncore/settings/packagemanager/packageinfodlg.h
index 09af6f4..13a15e2 100644
--- a/noncore/settings/packagemanager/packageinfodlg.h
+++ b/noncore/settings/packagemanager/packageinfodlg.h
@@ -39,6 +39,7 @@
39 39
40class QPushButton; 40class QPushButton;
41 41
42class OPackage;
42class OPackageManager; 43class OPackageManager;
43 44
44class PackageInfoDlg : public QWidget 45class PackageInfoDlg : public QWidget
@@ -47,19 +48,20 @@ class PackageInfoDlg : public QWidget
47 48
48public: 49public:
49 PackageInfoDlg( QWidget *parent = 0x0, OPackageManager *pm = 0x0, const QString &package = QString::null ); 50 PackageInfoDlg( QWidget *parent = 0x0, OPackageManager *pm = 0x0, const QString &package = QString::null );
51 ~PackageInfoDlg();
50 52
51private: 53private:
52 OPackageManager *m_packman; // Pointer to application instance of package manager 54 OPackageManager *m_packman; // Pointer to application instance of package manager
55 OPackage *m_package; // Pointer to package to display information for
53 56
54 // UI controls 57 // UI controls
55 QMultiLineEdit m_information; // Multi-line edit to display package information 58 QMultiLineEdit m_information; // Multi-line edit to display package information
56 QMultiLineEdit m_files; // Multi-line edit to display package file list 59 QMultiLineEdit m_files; // Multi-line edit to display package file list
57 60
58private slots: 61private slots:
59 void slotBtnClose(); 62 void slotBtnFileScan();
60 63 void slotInfo( char *info );
61signals: 64 void slotFiles( char *filelist );
62 void closeInfoDlg();
63}; 65};
64 66
65#endif 67#endif