summaryrefslogtreecommitdiff
path: root/noncore/apps/advancedfm/advancedfm.h
Unidiff
Diffstat (limited to 'noncore/apps/advancedfm/advancedfm.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/advancedfm/advancedfm.h16
1 files changed, 11 insertions, 5 deletions
diff --git a/noncore/apps/advancedfm/advancedfm.h b/noncore/apps/advancedfm/advancedfm.h
index 5817fca..0cf94c6 100644
--- a/noncore/apps/advancedfm/advancedfm.h
+++ b/noncore/apps/advancedfm/advancedfm.h
@@ -13,12 +13,14 @@
13#define ADVANCEDFM_H 13#define ADVANCEDFM_H
14 14
15#include <qpe/ir.h>
16
15#include <qvariant.h> 17#include <qvariant.h>
16#include <qdialog.h> 18#include <qdialog.h>
17#include <qmainwindow.h> 19#include <qmainwindow.h>
20#include <qstringlist.h>
18#include <qdir.h> 21#include <qdir.h>
19#include <qstring.h> 22#include <qstring.h>
20#include <qpoint.h> 23#include <qpoint.h>
21#include <qstringlist.h> 24#include <qtimer.h>
22#include <qpe/ir.h>
23 25
24class QVBoxLayout; 26class QVBoxLayout;
@@ -40,4 +42,5 @@ class QListViewItem;
40class QLineEdit; 42class QLineEdit;
41class QPushButton; 43class QPushButton;
44class Ir;
42 45
43class AdvancedFm : public QMainWindow 46class AdvancedFm : public QMainWindow
@@ -63,6 +66,4 @@ public:
63 int currentServerConfig; 66 int currentServerConfig;
64protected slots: 67protected slots:
65 void showLocalMenu( QListViewItem *);
66 void showRemoteMenu( QListViewItem *);
67 void doLocalCd(); 68 void doLocalCd();
68 void doRemoteCd(); 69 void doRemoteCd();
@@ -105,4 +106,5 @@ protected:
105 QGridLayout *tabLayout, *tabLayout_2, *tabLayout_3; 106 QGridLayout *tabLayout, *tabLayout_2, *tabLayout_3;
106 QStringList remoteDirPathStringList, localDirPathStringList; 107 QStringList remoteDirPathStringList, localDirPathStringList;
108
107 void keyReleaseEvent( QKeyEvent *); 109 void keyReleaseEvent( QKeyEvent *);
108 QString getFileSystemType(const QString &); 110 QString getFileSystemType(const QString &);
@@ -110,4 +112,6 @@ protected:
110 112
111protected slots: 113protected slots:
114 void showFileMenu();
115 void cancelMenuTimer();
112 void homeButtonPushed(); 116 void homeButtonPushed();
113 void docButtonPushed(); 117 void docButtonPushed();
@@ -126,5 +130,7 @@ protected slots:
126 void doAbout(); 130 void doAbout();
127 void doBeam(); 131 void doBeam();
128 void fileBeamFinished( Ir *ir); 132 void fileBeamFinished( Ir *);
133private:
134 QTimer menuTimer;
129}; 135};
130 136