summaryrefslogtreecommitdiff
path: root/core/apps/textedit/fileSaver.h
Unidiff
Diffstat (limited to 'core/apps/textedit/fileSaver.h') (more/less context) (show whitespace changes)
-rw-r--r--core/apps/textedit/fileSaver.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/apps/textedit/fileSaver.h b/core/apps/textedit/fileSaver.h
index ce4493e..526085d 100644
--- a/core/apps/textedit/fileSaver.h
+++ b/core/apps/textedit/fileSaver.h
@@ -34,41 +34,41 @@ class QLineEdit;
34class QCheckBox; 34class QCheckBox;
35 35
36class fileSaver : public QDialog 36class fileSaver : public QDialog
37{ 37{
38 Q_OBJECT 38 Q_OBJECT
39 39
40public: 40public:
41 void populateList(); 41 void populateList();
42 fileSaver( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ,const QString filter=0); 42 fileSaver( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ,const QString filter=0);
43 ~fileSaver(); 43 ~fileSaver();
44 QLineEdit *fileEdit; 44 QLineEdit *fileEdit;
45 45
46 QPushButton* buttonOk; 46 QPushButton* buttonOk;
47 QListView* ListView; 47 QListView* ListView;
48 QPushButton* buttonCancel; 48 QPushButton* buttonCancel;
49 QLabel *dirLabel; 49 QLabel *dirLabel;
50 QString selectedFileName, filterStr; 50 QString selectedFileName, filterStr;
51 QDir currentDir; 51 QDir currentDir;
52 QFile file; 52 QFile file;
53 QStringList fileList; 53 QStringList fileList;
54 QCheckBox *filePermCheck; 54 QCheckBox *filePermCheck;
55 55
56QListViewItem * item; 56QListViewItem * item;
57public slots: 57public slots:
58 58void homeButtonPushed();
59private: 59private:
60 60
61private slots: 61private slots:
62 void accept(); 62 void accept();
63 void upDir(); 63 void upDir();
64 void listDoubleClicked(QListViewItem *); 64 void listDoubleClicked(QListViewItem *);
65 void listClicked(QListViewItem *); 65 void listClicked(QListViewItem *);
66 void closeEvent( QCloseEvent * ); 66 void closeEvent( QCloseEvent * );
67 67
68protected slots: 68protected slots:
69 69
70protected: 70protected:
71 71
72}; 72};
73 73
74#endif // FILESAVER_H 74#endif // FILESAVER_H