summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg/mainwindow.h
Side-by-side diff
Diffstat (limited to 'noncore/unsupported/oipkg/mainwindow.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/mainwindow.h26
1 files changed, 19 insertions, 7 deletions
diff --git a/noncore/unsupported/oipkg/mainwindow.h b/noncore/unsupported/oipkg/mainwindow.h
index 95dcc90..0c1e474 100644
--- a/noncore/unsupported/oipkg/mainwindow.h
+++ b/noncore/unsupported/oipkg/mainwindow.h
@@ -1,62 +1,74 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <qmainwindow.h>
#include <qaction.h>
#include <qpopupmenu.h>
#include "packagelist.h"
#include "pmipkg.h"
#include "pksettings.h"
#include "pkdesc.h"
-#include "pkwindow.h"
+class QComboBox;
+class QPEToolBar;
+class QLineEdit;
+class QListView;
+
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow( QWidget *parent = 0, const char *name = 0, WFlags f = 0 );
~MainWindow();
-
-protected:
- PackageWindow *table;
-
-
protected slots:
void runIpkg();
void getList();
void updateList();
- void filterList();
void displayList();
void subSectionChanged();
void sectionChanged();
void showSettings();
void showSettingsSrv();
void showSettingsDst();
public slots:
void showDetails();
void toggleActivePackage();
void setCurrent( QListViewItem* );
+ void sectionClose();
+ void sectionShow(bool);
+ void findClose();
+ void findShow(bool);
+ void filterList();
private:
void makeMenu();
void setSections();
void setSubSections();
PmIpkg* ipkg;
PackageManagerSettings *settings;
PackageDetails* details;
PackageList packageList;
Package *activePackage;
QAction *runAction;
QAction *detailsAction;
QAction *updateAction;
+ QAction *findAction;
+ QAction *sectionAction;
+ QListView *listViewPackages;
QPopupMenu *contextMenu;
+ QPEToolBar *findBar;
+ QLineEdit *findEdit;
+ QPEToolBar *sectionBar;
+ QComboBox *section;
+ QComboBox *subsection;
+ QPopupMenu *popupMenu;
};
#endif