-rw-r--r-- | core/apps/textedit/fileBrowser.cpp | 3 | ||||
-rw-r--r-- | core/apps/textedit/fileBrowser.h | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/core/apps/textedit/fileBrowser.cpp b/core/apps/textedit/fileBrowser.cpp index 7eac5d2..eea7144 100644 --- a/core/apps/textedit/fileBrowser.cpp +++ b/core/apps/textedit/fileBrowser.cpp | |||
@@ -95,13 +95,13 @@ fileBrowser::fileBrowser( QWidget* parent, const char* name, bool modal, WFlags | |||
95 | layout->addMultiCellWidget( homeButton, 0, 0, 7, 7 ); | 95 | layout->addMultiCellWidget( homeButton, 0, 0, 7, 7 ); |
96 | 96 | ||
97 | FileStack = new QWidgetStack( this ); | 97 | FileStack = new QWidgetStack( this ); |
98 | 98 | ||
99 | 99 | ||
100 | ListView = new QListView( this, "ListView" ); | 100 | ListView = new QListView( this, "ListView" ); |
101 | ListView->setMinimumSize( QSize( 100, 25 ) ); | 101 | // ListView->setMinimumSize( QSize( 100, 25 ) ); |
102 | ListView->addColumn( tr( "Name" ) ); | 102 | ListView->addColumn( tr( "Name" ) ); |
103 | ListView->setColumnWidth(0,120); | 103 | ListView->setColumnWidth(0,120); |
104 | ListView->setSorting( 2, FALSE); | 104 | ListView->setSorting( 2, FALSE); |
105 | ListView->addColumn( tr( "Size" ) ); | 105 | ListView->addColumn( tr( "Size" ) ); |
106 | ListView->setColumnWidth(1,-1); | 106 | ListView->setColumnWidth(1,-1); |
107 | ListView->addColumn( "Date",-1); | 107 | ListView->addColumn( "Date",-1); |
@@ -524,8 +524,7 @@ void fileBrowser::fillCombo(const QString ¤tPath) { | |||
524 | 524 | ||
525 | if( dirPathStringList.grep(currentPath,TRUE).isEmpty() ) { | 525 | if( dirPathStringList.grep(currentPath,TRUE).isEmpty() ) { |
526 | dirPathCombo->clear(); | 526 | dirPathCombo->clear(); |
527 | dirPathStringList.prepend(currentPath ); | 527 | dirPathStringList.prepend(currentPath ); |
528 | dirPathCombo->insertStringList( dirPathStringList,-1); | 528 | dirPathCombo->insertStringList( dirPathStringList,-1); |
529 | } | 529 | } |
530 | |||
531 | } | 530 | } |
diff --git a/core/apps/textedit/fileBrowser.h b/core/apps/textedit/fileBrowser.h index 42bbc10..bac3d2e 100644 --- a/core/apps/textedit/fileBrowser.h +++ b/core/apps/textedit/fileBrowser.h | |||
@@ -60,19 +60,19 @@ public: | |||
60 | QComboBox *SelectionCombo, *dirPathCombo; | 60 | QComboBox *SelectionCombo, *dirPathCombo; |
61 | MenuButton *typemb; | 61 | MenuButton *typemb; |
62 | QWidgetStack *FileStack; | 62 | QWidgetStack *FileStack; |
63 | FileSelector *fileSelector; | 63 | FileSelector *fileSelector; |
64 | QString mimeType; | 64 | QString mimeType; |
65 | public slots: | 65 | public slots: |
66 | 66 | void setFileView( int ); | |
67 | |||
67 | private: | 68 | private: |
68 | // QDict<void> mimes; | 69 | // QDict<void> mimes; |
69 | QRegExp tf; | 70 | QRegExp tf; |
70 | QStringList getMimeTypes(); | 71 | QStringList getMimeTypes(); |
71 | void fillCombo( const QString&); | 72 | void fillCombo( const QString&); |
72 | void setFileView( int ); | ||
73 | 73 | ||
74 | private slots: | 74 | private slots: |
75 | void populateList(); | 75 | void populateList(); |
76 | void homeButtonPushed(); | 76 | void homeButtonPushed(); |
77 | void docButtonPushed(); | 77 | void docButtonPushed(); |
78 | void ListPressed( int, QListViewItem *, const QPoint&, int); | 78 | void ListPressed( int, QListViewItem *, const QPoint&, int); |