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.h71
1 files changed, 71 insertions, 0 deletions
diff --git a/core/apps/textedit/fileSaver.h b/core/apps/textedit/fileSaver.h
new file mode 100644
index 0000000..f496270
--- a/dev/null
+++ b/core/apps/textedit/fileSaver.h
@@ -0,0 +1,71 @@
1/****************************************************************************
2**
3** Created: Fri Dec 14 08:16:02 2001 fileSaver.h
4**
5copyright Sun 02-17-2002 22:28:48 L. J. Potter ljp@llornkcor.com
6
7** This file may be distributed and/or modified under the terms of the
8** GNU General Public License version 2 as published by the Free Software
9** Foundation and appearing in the file LICENSE.GPL included in the
10** packaging of this file.
11**
12** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
13** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
14**
15****************************************************************************/
16#ifndef FILESAVER_H
17#define FILESAVER_H
18
19//#include <qvariant.h>
20#include <qdialog.h>
21#include <qfile.h>
22#include <qdir.h>
23#include <qstringlist.h>
24#include <qlabel.h>
25#include <qstring.h>
26
27class QVBoxLayout;
28class QHBoxLayout;
29class QGridLayout;
30class QListView;
31class QListViewItem;
32class QPushButton;
33class QLineEdit;
34
35class fileSaver : public QDialog
36{
37 Q_OBJECT
38
39public:
40 void populateList();
41 fileSaver( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ,const QString filter=0);
42 ~fileSaver();
43 QLineEdit *fileEdit;
44
45 QPushButton* buttonOk;
46 QListView* ListView;
47 QPushButton* buttonCancel;
48 QLabel *dirLabel;
49 QString selectedFileName, filterStr;
50 QDir currentDir;
51 QFile file;
52 QStringList fileList;
53
54QListViewItem * item;
55public slots:
56
57private:
58
59private slots:
60 void accept();
61 void upDir();
62 void listDoubleClicked(QListViewItem *);
63 void listClicked(QListViewItem *);
64 void OnOK();
65protected slots:
66
67protected:
68
69};
70
71#endif // FILESAVER_H