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, 2 insertions, 0 deletions
diff --git a/core/apps/textedit/fileSaver.h b/core/apps/textedit/fileSaver.h
index 4a38a65..ce4493e 100644
--- a/core/apps/textedit/fileSaver.h
+++ b/core/apps/textedit/fileSaver.h
@@ -22,43 +22,45 @@ copyright Sun 02-17-2002 22:28:48 L. J. Potter ljp@llornkcor.com
22#include <qdir.h> 22#include <qdir.h>
23#include <qstringlist.h> 23#include <qstringlist.h>
24#include <qlabel.h> 24#include <qlabel.h>
25#include <qstring.h> 25#include <qstring.h>
26 26
27class QVBoxLayout; 27class QVBoxLayout;
28class QHBoxLayout; 28class QHBoxLayout;
29class QGridLayout; 29class QGridLayout;
30class QListView; 30class QListView;
31class QListViewItem; 31class QListViewItem;
32class QPushButton; 32class QPushButton;
33class QLineEdit; 33class QLineEdit;
34class QCheckBox;
34 35
35class fileSaver : public QDialog 36class fileSaver : public QDialog
36{ 37{
37 Q_OBJECT 38 Q_OBJECT
38 39
39public: 40public:
40 void populateList(); 41 void populateList();
41 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);
42 ~fileSaver(); 43 ~fileSaver();
43 QLineEdit *fileEdit; 44 QLineEdit *fileEdit;
44 45
45 QPushButton* buttonOk; 46 QPushButton* buttonOk;
46 QListView* ListView; 47 QListView* ListView;
47 QPushButton* buttonCancel; 48 QPushButton* buttonCancel;
48 QLabel *dirLabel; 49 QLabel *dirLabel;
49 QString selectedFileName, filterStr; 50 QString selectedFileName, filterStr;
50 QDir currentDir; 51 QDir currentDir;
51 QFile file; 52 QFile file;
52 QStringList fileList; 53 QStringList fileList;
54 QCheckBox *filePermCheck;
53 55
54QListViewItem * item; 56QListViewItem * item;
55public slots: 57public slots:
56 58
57private: 59private:
58 60
59private slots: 61private slots:
60 void accept(); 62 void accept();
61 void upDir(); 63 void upDir();
62 void listDoubleClicked(QListViewItem *); 64 void listDoubleClicked(QListViewItem *);
63 void listClicked(QListViewItem *); 65 void listClicked(QListViewItem *);
64 void closeEvent( QCloseEvent * ); 66 void closeEvent( QCloseEvent * );