author | llornkcor <llornkcor> | 2002-05-09 17:24:59 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-05-09 17:24:59 (UTC) |
commit | 52ddcfe41eaaf782d477b3e0312b2f5e0f71489c (patch) (side-by-side diff) | |
tree | 1806120cc6a63ccd27970949b7a025517b1e87e1 | |
parent | bdb0fabbab969d7ebb7f1e0c1396070123c33e7e (diff) | |
download | opie-52ddcfe41eaaf782d477b3e0312b2f5e0f71489c.zip opie-52ddcfe41eaaf782d477b3e0312b2f5e0f71489c.tar.gz opie-52ddcfe41eaaf782d477b3e0312b2f5e0f71489c.tar.bz2 |
replaced declaration of qregexp to be an include
-rw-r--r-- | core/apps/textedit/fileBrowser.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/core/apps/textedit/fileBrowser.h b/core/apps/textedit/fileBrowser.h index e89b62b..45c8b8f 100644 --- a/core/apps/textedit/fileBrowser.h +++ b/core/apps/textedit/fileBrowser.h @@ -7,62 +7,63 @@ ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. ** ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. ** copyright Sun 02-17-2002 22:28:23 L. J. Potter ljp@llornkcor.com ****************************************************************************/ #ifndef FILEBROWSER_H #define FILEBROWSER_H //#include <qvariant.h> #include <qdialog.h> #include <qfile.h> #include <qdir.h> #include <qstringlist.h> #include <qlabel.h> #include <qstring.h> #include <qdict.h> #include <qpe/filemanager.h> #include <qvariant.h> #include <qdialog.h> +#include <qregexp.h> + class QLineEdit; class QVBoxLayout; class QHBoxLayout; class QGridLayout; class QListView; class QListViewItem; class QPushButton; class QComboBox; class QWidgetStack; class FileSelector; class QPoint; class MenuButton; -class QRegExp; class fileBrowser : public QDialog { Q_OBJECT public: fileBrowser( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ,const QString filter=0); ~fileBrowser(); QString selectedFileName; QFile file; QStringList fileList; QComboBox *SelectionCombo; public slots: void setFileView( int ); private: // QDict<void> mimes; QPushButton *buttonOk, *buttonCancel, *homeButton, *docButton, *hideButton, *cdUpButton; QListView* ListView; QLabel *dirLabel; QString filterStr, mimeType; QDir currentDir; @@ -96,24 +97,30 @@ private slots: void updateMimeTypeMenu(); void showType(const QString &); void dirPathEditPressed(); protected slots: protected: }; class InputDialog : public QDialog { Q_OBJECT public: InputDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); ~InputDialog(); QString inputText; QLineEdit* LineEdit1; void setTextEdit(const QString &); }; #endif // FILEBROWSER_H + QString inputText;
+ QLineEdit* LineEdit1;
+ void setTextEdit(const QString &);
+};
+
+#endif // FILEBROWSER_H
|