summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg/packagelistview.h
Unidiff
Diffstat (limited to 'noncore/unsupported/oipkg/packagelistview.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/packagelistview.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/noncore/unsupported/oipkg/packagelistview.h b/noncore/unsupported/oipkg/packagelistview.h
index d371a34..00c0320 100644
--- a/noncore/unsupported/oipkg/packagelistview.h
+++ b/noncore/unsupported/oipkg/packagelistview.h
@@ -11,44 +11,51 @@
11 * This program is free software; you can redistribute it and/or modify * 11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by * 12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or * 13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. * 14 * (at your option) any later version. *
15 * * 15 * *
16 ***************************************************************************/ 16 ***************************************************************************/
17 17
18#ifndef PACKAGELISTVIEW_H 18#ifndef PACKAGELISTVIEW_H
19#define PACKAGELISTVIEW_H 19#define PACKAGELISTVIEW_H
20 20
21#include <qlistview.h> 21#include <qlistview.h>
22#include <qaction.h> 22#include <qaction.h>
23#include <qdict.h>
24#include <qstring.h>
23#include <qtimer.h> 25#include <qtimer.h>
24#include <qwidget.h> 26#include <qwidget.h>
25#include <qpopupmenu.h> 27#include <qpopupmenu.h>
28#include "packagelist.h"
26#include "debug.h" 29#include "debug.h"
27 30
28class PackageListItem; 31class PackageListItem;
29class Package; 32class Package;
30class PackageManagerSettings; 33class PackageManagerSettings;
31 34
32class PackageListView : public QListView 35class PackageListView : public QListView
33{ 36{
34 Q_OBJECT 37 Q_OBJECT
35 38
36public: 39public:
37 PackageListView(QWidget*, const char*, PackageManagerSettings*); 40 PackageListView(QWidget*, const char*, PackageManagerSettings*);
41 void addList( QString, PackageList* );
38 //~PackageListView(); 42 //~PackageListView();
39 QTimer *popupTimer; 43 QTimer *popupTimer;
40private: 44private:
45 QDict<PackageList> PackageLists;
46 QDict<QCheckListItem> rootItems;
41 PackageManagerSettings *settings; 47 PackageManagerSettings *settings;
42 Package *activePackage; 48 Package *activePackage;
43 PackageListItem *activePackageListItem; 49 PackageListItem *activePackageListItem;
44 QPopupMenu *popupMenu; 50 QPopupMenu *popupMenu;
45 QPopupMenu *destsMenu; 51 QPopupMenu *destsMenu;
46public slots: 52public slots:
47 void showPopup(); 53 void showPopup();
48 void changePackageDest( int ); 54 void changePackageDest( int );
49 void setCurrent( QListViewItem* ); 55 void setCurrent( QListViewItem* );
50 void stopTimer( QListViewItem* ); 56 void stopTimer( QListViewItem* );
51 void toggleProcess(); 57 void toggleProcess();
58 void display();
52}; 59};
53 60
54#endif 61#endif