summaryrefslogtreecommitdiff
path: root/core/apps/textedit/fileBrowser.h
Side-by-side diff
Diffstat (limited to 'core/apps/textedit/fileBrowser.h') (more/less context) (show whitespace changes)
-rw-r--r--core/apps/textedit/fileBrowser.h28
1 files changed, 21 insertions, 7 deletions
diff --git a/core/apps/textedit/fileBrowser.h b/core/apps/textedit/fileBrowser.h
index 4f765dd..8a98365 100644
--- a/core/apps/textedit/fileBrowser.h
+++ b/core/apps/textedit/fileBrowser.h
@@ -22,6 +22,7 @@ copyright Sun 02-17-2002 22:28:23 L. J. Potter ljp@llornkcor.com
#include <qstringlist.h>
#include <qlabel.h>
#include <qstring.h>
+#include <qdict.h>
#include <qpe/filemanager.h>
@@ -35,6 +36,9 @@ class QComboBox;
class QWidgetStack;
class FileSelector;
class QPoint;
+class MenuButton;
+class QRegExp;
+
class fileBrowser : public QDialog
{
@@ -47,20 +51,28 @@ public:
void setFileView( int );
- QPushButton *buttonOk, *buttonCancel, *homeButton, *docButton, *hideButton;
+ QPushButton *buttonOk, *buttonCancel, *homeButton, *docButton, *hideButton, *cdUpButton;
QListView* ListView;
QLabel *dirLabel;
QString selectedFileName, filterStr;
QDir currentDir;
QFile file;
- QStringList fileList;
+ QStringList fileList, dirPathStringList;
QListViewItem * item;
- QComboBox *SelectionCombo;
+ QComboBox *SelectionCombo, *dirPathCombo;
+ MenuButton *typemb;
QWidgetStack *FileStack;
FileSelector *fileSelector;
-
+ QString mimeType;
public slots:
+
+private:
+// QDict<void> mimes;
+ QRegExp tf;
+ QStringList getMimeTypes();
+ void fillCombo( const QString&);
+private slots:
void homeButtonPushed();
void docButtonPushed();
void ListPressed( int, QListViewItem *, const QPoint&, int);
@@ -69,14 +81,16 @@ public slots:
void makDir();
void localRename();
void localDelete();
-private:
-
-private slots:
+ void receive( const QCString &msg, const QByteArray &data );
+ void dirPathComboActivated( const QString & );
void upDir();
void listClicked( QListViewItem * );
void selectionChanged( const QString & );
void OnOK();
void docOpen( const DocLnk & );
+ void updateMimeTypeMenu();
+ void showType(const QString &);
+ void dirPathEditPressed();
protected slots: