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.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/noncore/unsupported/oipkg/mainwindow.h b/noncore/unsupported/oipkg/mainwindow.h
index a713d00..7615b09 100644
--- a/noncore/unsupported/oipkg/mainwindow.h
+++ b/noncore/unsupported/oipkg/mainwindow.h
@@ -14,27 +14,28 @@
class QComboBox;
class QPEToolBar;
class QLineEdit;
class PackageListItem;
class QCopChannel;
class QMessageBox;
+class QCheckBox;
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow( QWidget *parent = 0, const char *name = 0, WFlags f = 0 );
~MainWindow();
+ void makeChannel();
QCopChannel *channel;
protected slots:
void runIpkg();
- void getList();
void updateList();
void displayList();
void subSectionChanged();
void sectionChanged();
void showSettings();
void showSettingsSrv();
@@ -42,12 +43,14 @@ protected slots:
public slots:
void sectionClose();
void sectionShow(bool);
void findClose();
void findShow(bool);
+ void destClose();
+ void destShow(bool);
void filterList();
void receive (const QCString &, const QByteArray &);
void setDocument (const QString &);
private:
void makeMenu();
@@ -57,22 +60,25 @@ private:
bool updateIcon;
PmIpkg* ipkg;
PackageManagerSettings *settings;
PackageList packageList;
QAction *runAction;
- QAction *detailsAction;
QAction *updateAction;
QAction *findAction;
QAction *sectionAction;
+ QAction *destAction;
PackageListView *listViewPackages;
QPEToolBar *findBar;
QLineEdit *findEdit;
QPEToolBar *sectionBar;
QComboBox *section;
QComboBox *subsection;
- QMessageBox *wait;
+ QPEToolBar *destBar;
+ QComboBox *destination;
+ QCheckBox* CheckBoxLink;
+// QMessageBox *wait;
private slots:
void rotateUpdateIcon();
};
#endif