summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opieui/fileselector/ofileselector.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libopie2/opieui/fileselector/ofileselector.cpp b/libopie2/opieui/fileselector/ofileselector.cpp
index 2746732..069b625 100644
--- a/libopie2/opieui/fileselector/ofileselector.cpp
+++ b/libopie2/opieui/fileselector/ofileselector.cpp
@@ -1,877 +1,877 @@
1 1
2/* 2/*
3               =. This file is part of the OPIE Project 3               =. This file is part of the OPIE Project
4             .=l. Copyright (C) 2002,2003 Holger Freyther <zecke@handhelds.org> 4             .=l. Copyright (C) 2002,2003 Holger Freyther <zecke@handhelds.org>
5           .>+-= 5           .>+-=
6 _;:,     .>    :=|. This library is free software; you can 6 _;:,     .>    :=|. This library is free software; you can
7.> <`_,   >  .   <= redistribute it and/or modify it under 7.> <`_,   >  .   <= redistribute it and/or modify it under
8:`=1 )Y*s>-.--   : the terms of the GNU Library General Public 8:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
9.="- .-=="i,     .._ License as published by the Free Software 9.="- .-=="i,     .._ License as published by the Free Software
10 - .   .-<_>     .<> Foundation; either version 2 of the License, 10 - .   .-<_>     .<> Foundation; either version 2 of the License,
11     ._= =}       : or (at your option) any later version. 11     ._= =}       : or (at your option) any later version.
12    .%`+i>       _;_. 12    .%`+i>       _;_.
13    .i_,=:_.      -<s. This library is distributed in the hope that 13    .i_,=:_.      -<s. This library is distributed in the hope that
14     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 14     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
15    : ..    .:,     . . . without even the implied warranty of 15    : ..    .:,     . . . without even the implied warranty of
16    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 16    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
17  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 17  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
18..}^=.=       =       ; Library General Public License for more 18..}^=.=       =       ; Library General Public License for more
19++=   -.     .`     .: details. 19++=   -.     .`     .: details.
20 :     =  ...= . :.=- 20 :     =  ...= . :.=-
21 -.   .:....=;==+<; You should have received a copy of the GNU 21 -.   .:....=;==+<; You should have received a copy of the GNU
22  -_. . .   )=.  = Library General Public License along with 22  -_. . .   )=.  = Library General Public License along with
23    --        :-=` this library; see the file COPYING.LIB. 23    --        :-=` this library; see the file COPYING.LIB.
24 If not, write to the Free Software Foundation, 24 If not, write to the Free Software Foundation,
25 Inc., 59 Temple Place - Suite 330, 25 Inc., 59 Temple Place - Suite 330,
26 Boston, MA 02111-1307, USA. 26 Boston, MA 02111-1307, USA.
27 27
28*/ 28*/
29 29
30/* hacky but we need to get FileSelector::filter */ 30/* hacky but we need to get FileSelector::filter */
31#define private public 31#define private public
32#include <qpe/fileselector.h> 32#include <qpe/fileselector.h>
33#undef private 33#undef private
34 34
35#include "ofileselector_p.h" 35#include "ofileselector_p.h"
36 36
37/* OPIE */ 37/* OPIE */
38#include <opie2/ofileselector.h> 38#include <opie2/ofileselector.h>
39#include <opie2/odebug.h> 39#include <opie2/odebug.h>
40 40
41#include <qpe/qpeapplication.h> 41#include <qpe/qpeapplication.h>
42#include <qpe/mimetype.h> 42#include <qpe/mimetype.h>
43#include <qpe/resource.h> 43#include <qpe/resource.h>
44#include <qpe/storage.h> 44#include <qpe/storage.h>
45 45
46/* QT */ 46/* QT */
47#include <qcombobox.h> 47#include <qcombobox.h>
48#include <qdir.h> 48#include <qdir.h>
49#include <qhbox.h> 49#include <qhbox.h>
50#include <qheader.h> 50#include <qheader.h>
51#include <qlabel.h> 51#include <qlabel.h>
52#include <qlayout.h> 52#include <qlayout.h>
53#include <qlineedit.h> 53#include <qlineedit.h>
54#include <qlistview.h> 54#include <qlistview.h>
55#include <qpopupmenu.h> 55#include <qpopupmenu.h>
56#include <qwidgetstack.h> 56#include <qwidgetstack.h>
57#include <qregexp.h> 57#include <qregexp.h>
58#include <qobjectlist.h> 58#include <qobjectlist.h>
59 59
60using namespace Opie::Ui::Internal; 60using namespace Opie::Ui::Internal;
61 61
62namespace Opie { 62namespace Opie {
63namespace Ui { 63namespace Ui {
64namespace Internal { 64namespace Internal {
65/* 65/*
66 * Create a path by adding a '/'/QDir::seperator in between 66 * Create a path by adding a '/'/QDir::seperator in between
67 * base and ending, but only if base is not empty 67 * base and ending, but only if base is not empty
68 */ 68 */
69static inline QString createNewPath(const QString& base, const QString &ending) { 69static inline QString createNewPath(const QString& base, const QString &ending) {
70 return base == QString::fromLatin1("/") ? 70 return base == QString::fromLatin1("/") ?
71 base + ending : base + "/" + ending; 71 base + ending : base + "/" + ending;
72} 72}
73 73
74 74
75OFileViewInterface::OFileViewInterface( OFileSelector* _selector ) 75OFileViewInterface::OFileViewInterface( OFileSelector* _selector )
76 : m_selector( _selector ) 76 : m_selector( _selector )
77{ 77{
78 selector()->registerView( this ); 78 selector()->registerView( this );
79} 79}
80 80
81OFileViewInterface::~OFileViewInterface() 81OFileViewInterface::~OFileViewInterface()
82{} 82{}
83 83
84QString OFileViewInterface::name()const 84QString OFileViewInterface::name()const
85{ 85{
86 return m_name; 86 return m_name;
87} 87}
88 88
89void OFileViewInterface::setName( const QString& name ) 89void OFileViewInterface::setName( const QString& name )
90{ 90{
91 m_name = name; 91 m_name = name;
92} 92}
93 93
94OFileSelector* OFileViewInterface::selector()const 94OFileSelector* OFileViewInterface::selector()const
95{ 95{
96 return m_selector; 96 return m_selector;
97} 97}
98 98
99DocLnk OFileViewInterface::selectedDocument()const 99DocLnk OFileViewInterface::selectedDocument()const
100{ 100{
101 return DocLnk( selectedName() ); 101 return DocLnk( selectedName() );
102} 102}
103 103
104bool OFileViewInterface::showNew()const 104bool OFileViewInterface::showNew()const
105{ 105{
106 return selector()->showNew(); 106 return selector()->showNew();
107} 107}
108 108
109bool OFileViewInterface::showClose()const 109bool OFileViewInterface::showClose()const
110{ 110{
111 return selector()->showClose(); 111 return selector()->showClose();
112} 112}
113 113
114MimeTypes OFileViewInterface::mimeTypes()const 114MimeTypes OFileViewInterface::mimeTypes()const
115{ 115{
116 return selector()->mimeTypes(); 116 return selector()->mimeTypes();
117} 117}
118 118
119QStringList OFileViewInterface::currentMimeType()const 119QStringList OFileViewInterface::currentMimeType()const
120{ 120{
121 return selector()->currentMimeType(); 121 return selector()->currentMimeType();
122} 122}
123 123
124void OFileViewInterface::activate( const QString& ) 124void OFileViewInterface::activate( const QString& )
125{ 125{
126 // not implemented here 126 // not implemented here
127} 127}
128 128
129void OFileViewInterface::ok() 129void OFileViewInterface::ok()
130{ 130{
131 emit selector()->ok(); 131 emit selector()->ok();
132} 132}
133 133
134void OFileViewInterface::cancel() 134void OFileViewInterface::cancel()
135{ 135{
136 emit selector()->cancel(); 136 emit selector()->cancel();
137} 137}
138 138
139void OFileViewInterface::closeMe() 139void OFileViewInterface::closeMe()
140{ 140{
141 emit selector()->closeMe(); 141 emit selector()->closeMe();
142} 142}
143 143
144void OFileViewInterface::fileSelected( const QString& str) 144void OFileViewInterface::fileSelected( const QString& str)
145{ 145{
146 emit selector()->fileSelected( str); 146 emit selector()->fileSelected( str);
147} 147}
148 148
149void OFileViewInterface::fileSelected( const DocLnk& lnk) 149void OFileViewInterface::fileSelected( const DocLnk& lnk)
150{ 150{
151 emit selector()->fileSelected( lnk ); 151 emit selector()->fileSelected( lnk );
152} 152}
153 153
154void OFileViewInterface::setCurrentFileName( const QString& str ) 154void OFileViewInterface::setCurrentFileName( const QString& str )
155{ 155{
156 selector()->m_lneEdit->setText( str ); 156 selector()->m_lneEdit->setText( str );
157} 157}
158 158
159QString OFileViewInterface::currentFileName()const 159QString OFileViewInterface::currentFileName()const
160{ 160{
161 return selector()->m_lneEdit->text(); 161 return selector()->m_lneEdit->text();
162} 162}
163 163
164QString OFileViewInterface::startDirectory()const 164QString OFileViewInterface::startDirectory()const
165{ 165{
166 return selector()->m_startDir; 166 return selector()->m_startDir;
167} 167}
168 168
169bool OFileViewInterface::allItem( const QString& item )const 169bool OFileViewInterface::allItem( const QString& item )const
170{ 170{
171 return selector()->m_allList.contains( item ); 171 return selector()->m_allList.contains( item );
172} 172}
173 173
174 174
175ODocumentFileView::ODocumentFileView( OFileSelector* selector ) 175ODocumentFileView::ODocumentFileView( OFileSelector* selector )
176 :OFileViewInterface( selector ) 176 :OFileViewInterface( selector )
177{ 177{
178 m_selector = 0; 178 m_selector = 0;
179 setName( QObject::tr("Documents") ); 179 setName( QObject::tr("Documents") );
180} 180}
181 181
182ODocumentFileView::~ODocumentFileView() 182ODocumentFileView::~ODocumentFileView()
183{ 183{
184} 184}
185 185
186QString ODocumentFileView::selectedName()const 186QString ODocumentFileView::selectedName()const
187{ 187{
188 if (!m_selector) 188 if (!m_selector)
189 return QString::null; 189 return QString::null;
190 190
191 return m_selector->selectedDocument().file(); 191 return m_selector->selectedDocument().file();
192} 192}
193 193
194QString ODocumentFileView::selectedPath()const 194QString ODocumentFileView::selectedPath()const
195{ 195{
196 return QPEApplication::documentDir(); 196 return QPEApplication::documentDir();
197} 197}
198 198
199QString ODocumentFileView::directory()const 199QString ODocumentFileView::directory()const
200{ 200{
201 return selectedPath(); 201 return selectedPath();
202} 202}
203 203
204void ODocumentFileView::reread() 204void ODocumentFileView::reread()
205{ 205{
206 if (!m_selector) 206 if (!m_selector)
207 return; 207 return;
208 208
209 m_selector->setNewVisible( showNew() ); 209 m_selector->setNewVisible( showNew() );
210 m_selector->setCloseVisible( showClose() ); 210 m_selector->setCloseVisible( showClose() );
211 m_selector->filter = currentMimeType().join(";"); 211 m_selector->filter = currentMimeType().join(";");
212 m_selector->reread(); 212 m_selector->reread();
213} 213}
214 214
215int ODocumentFileView::fileCount()const 215int ODocumentFileView::fileCount()const
216{ 216{
217 if (!m_selector) 217 if (!m_selector)
218 return -1; 218 return -1;
219 219
220 return m_selector->fileCount(); 220 return m_selector->fileCount();
221} 221}
222 222
223DocLnk ODocumentFileView::selectedDocument()const 223DocLnk ODocumentFileView::selectedDocument()const
224{ 224{
225 if (!m_selector) 225 if (!m_selector)
226 return DocLnk(); 226 return DocLnk();
227 227
228 return m_selector->selectedDocument(); 228 return m_selector->selectedDocument();
229} 229}
230 230
231QWidget* ODocumentFileView::widget( QWidget* parent ) 231QWidget* ODocumentFileView::widget( QWidget* parent )
232{ 232{
233 if (!m_selector ) 233 if (!m_selector )
234 { 234 {
235 m_selector = new FileSelector(currentMimeType().join(";"), parent, "fileselector", showNew(), showClose() ); 235 m_selector = new FileSelector(currentMimeType().join(";"), parent, "fileselector", showNew(), showClose() );
236 QObject::connect(m_selector, SIGNAL(fileSelected(const DocLnk&) ), 236 QObject::connect(m_selector, SIGNAL(fileSelected(const DocLnk&) ),
237 selector(), SLOT(slotDocLnkBridge(const DocLnk&) ) ); 237 selector(), SLOT(slotDocLnkBridge(const DocLnk&) ) );
238 QObject::connect(m_selector, SIGNAL(closeMe() ), 238 QObject::connect(m_selector, SIGNAL(closeMe() ),
239 selector(), SIGNAL(closeMe() ) ); 239 selector(), SIGNAL(closeMe() ) );
240 QObject::connect(m_selector, SIGNAL(newSelected(const DocLnk&) ), 240 QObject::connect(m_selector, SIGNAL(newSelected(const DocLnk&) ),
241 selector(), SIGNAL(newSelected(const DocLnk&) ) ); 241 selector(), SIGNAL(newSelected(const DocLnk&) ) );
242 } 242 }
243 243
244 return m_selector; 244 return m_selector;
245} 245}
246 246
247/* 247/*
248 * This is the file system view used 248 * This is the file system view used
249 * we use a QListView + QListViewItems for it 249 * we use a QListView + QListViewItems for it
250 */ 250 */
251 251
252OFileSelectorItem::OFileSelectorItem( QListView* view, const QPixmap& pixmap, 252OFileSelectorItem::OFileSelectorItem( QListView* view, const QPixmap& pixmap,
253 const QString& path, const QString& date, 253 const QString& path, const QString& date,
254 const QString& size, const QString& dir, 254 const QString& size, const QString& dir,
255 bool isLocked, bool isDir ) 255 bool isLocked, bool isDir )
256 : QListViewItem( view ), m_dir(dir), m_isDir(isDir), m_locked(isLocked) 256 : QListViewItem( view ), m_dir(dir), m_isDir(isDir), m_locked(isLocked)
257{ 257{
258 setPixmap(0, pixmap ); 258 setPixmap(0, pixmap );
259 setText(1, path ); 259 setText(1, path );
260 setText(2, size ); 260 setText(2, size );
261 setText(3, date ); 261 setText(3, date );
262} 262}
263 263
264OFileSelectorItem::~OFileSelectorItem() 264OFileSelectorItem::~OFileSelectorItem()
265{ 265{
266} 266}
267 267
268bool OFileSelectorItem::isLocked()const 268bool OFileSelectorItem::isLocked()const
269{ 269{
270 return m_locked; 270 return m_locked;
271} 271}
272 272
273QString OFileSelectorItem::directory()const 273QString OFileSelectorItem::directory()const
274{ 274{
275 return m_dir; 275 return m_dir;
276} 276}
277 277
278bool OFileSelectorItem::isDir()const 278bool OFileSelectorItem::isDir()const
279{ 279{
280 return m_isDir; 280 return m_isDir;
281} 281}
282 282
283QString OFileSelectorItem::path()const 283QString OFileSelectorItem::path()const
284{ 284{
285 return text( 1 ); 285 return text( 1 );
286} 286}
287 287
288QString OFileSelectorItem::key( int id, bool )const 288QString OFileSelectorItem::key( int id, bool )const
289{ 289{
290 QString ke; 290 QString ke;
291 291
292 /* 292 /*
293 * id = 0 ||id == 1 : Sort By Name but Directories at Top 293 * id = 0 ||id == 1 : Sort By Name but Directories at Top
294 * id = 2 : Sort By Size: Prepend '0' to the key 294 * id = 2 : Sort By Size: Prepend '0' to the key
295 */ 295 */
296 if( id == 0 || id == 1 ) 296 if( id == 0 || id == 1 )
297 { // name 297 { // name
298 if( m_isDir ) 298 if( m_isDir )
299 { 299 {
300 ke.append("0" ); 300 ke.append("0" );
301 ke.append( text(1) ); 301 ke.append( text(1) );
302 } 302 }
303 else 303 else
304 { 304 {
305 ke.append("1" ); 305 ke.append("1" );
306 ke.append( text(1) ); 306 ke.append( text(1) );
307 } 307 }
308 return ke; 308 return ke;
309 }else if(id == 2) { 309 }else if(id == 2) {
310 return text(2).rightJustify(20, '0'); 310 return text(2).rightJustify(20, '0');
311 }else 311 }else
312 return text( id ); 312 return text( id );
313 313
314} 314}
315 315
316OFileViewFileListView::OFileViewFileListView( QWidget* parent, const QString& startDir, OFileSelector* sel) 316OFileViewFileListView::OFileViewFileListView( QWidget* parent, const QString& startDir, OFileSelector* sel)
317 :QWidget( parent ), m_sel( sel ) 317 :QWidget( parent ), m_sel( sel )
318{ 318{
319 m_all = false; 319 m_all = false;
320 QVBoxLayout* lay = new QVBoxLayout( this ); 320 QVBoxLayout* lay = new QVBoxLayout( this );
321 m_currentDir = startDir; 321 m_currentDir = startDir;
322 322
323 /* 323 /*
324 * now we add a special bar 324 * now we add a special bar
325 * One Button For Up 325 * One Button For Up
326 * Home 326 * Home
327 * Doc 327 * Doc
328 * And a dropdown menu with FileSystems 328 * And a dropdown menu with FileSystems
329 * FUTURE: one to change dir with lineedit 329 * FUTURE: one to change dir with lineedit
330 * Bookmarks 330 * Bookmarks
331 * Create Dir 331 * Create Dir
332 */ 332 */
333 QHBox* box = new QHBox(this ); 333 QHBox* box = new QHBox(this );
334 box->setBackgroundMode( PaletteButton ); 334 box->setBackgroundMode( PaletteButton );
335 box->setSpacing( 0 ); 335 box->setSpacing( 0 );
336 336
337 QPixmap pic; 337 QPixmap pic;
338 QToolButton *btn = new QToolButton( box ); 338 QToolButton *btn = new QToolButton( box );
339 pic.convertFromImage( Resource::loadImage( "up" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); 339 pic.convertFromImage( Resource::loadImage( "up" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) );
340 btn->setPixmap( pic ); 340 btn->setPixmap( pic );
341 connect(btn, SIGNAL(clicked() ), 341 connect(btn, SIGNAL(clicked() ),
342 this, SLOT( cdUP() ) ); 342 this, SLOT( cdUP() ) );
343 343
344 btn = new QToolButton( box ); 344 btn = new QToolButton( box );
345 pic.convertFromImage( Resource::loadImage( "home" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); 345 pic.convertFromImage( Resource::loadImage( "home" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) );
346 btn->setPixmap( pic ); 346 btn->setPixmap( pic );
347 connect(btn, SIGNAL(clicked() ), 347 connect(btn, SIGNAL(clicked() ),
348 this, SLOT( cdHome() ) ); 348 this, SLOT( cdHome() ) );
349 349
350 btn = new QToolButton( box ); 350 btn = new QToolButton( box );
351 pic.convertFromImage( Resource::loadImage( "DocsIcon" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); 351 pic.convertFromImage( Resource::loadImage( "DocsIcon" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) );
352 btn->setPixmap( pic ); 352 btn->setPixmap( pic );
353 connect(btn, SIGNAL(clicked() ), 353 connect(btn, SIGNAL(clicked() ),
354 this, SLOT(cdDoc() ) ); 354 this, SLOT(cdDoc() ) );
355 355
356 m_btnNew = new QToolButton( box ); 356 m_btnNew = new QToolButton( box );
357 pic.convertFromImage( Resource::loadImage( "new" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); 357 pic.convertFromImage( Resource::loadImage( "new" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) );
358 btn->setPixmap( pic ); 358 m_btnNew->setPixmap( pic );
359 connect(m_btnNew, SIGNAL(clicked() ), 359 connect(m_btnNew, SIGNAL(clicked() ),
360 this, SLOT(slotNew() ) ); 360 this, SLOT(slotNew() ) );
361 361
362 362
363 m_btnClose = new QToolButton( box ); 363 m_btnClose = new QToolButton( box );
364 pic.convertFromImage( Resource::loadImage( "close" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); 364 pic.convertFromImage( Resource::loadImage( "close" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) );
365 btn->setPixmap( pic ); 365 m_btnClose->setPixmap( pic );
366 connect(m_btnClose, SIGNAL(clicked() ), 366 connect(m_btnClose, SIGNAL(clicked() ),
367 selector(), SIGNAL(closeMe() ) ); 367 selector(), SIGNAL(closeMe() ) );
368 368
369 btn = new QToolButton( box ); 369 btn = new QToolButton( box );
370 pic.convertFromImage( Resource::loadImage( "cardmon/pcmcia" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); 370 pic.convertFromImage( Resource::loadImage( "cardmon/pcmcia" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) );
371 btn->setPixmap( pic ); 371 btn->setPixmap( pic );
372 372
373 m_fsButton = btn; 373 m_fsButton = btn;
374 /* let's fill device parts */ 374 /* let's fill device parts */
375 QPopupMenu* pop = new QPopupMenu(this); 375 QPopupMenu* pop = new QPopupMenu(this);
376 connect(pop, SIGNAL( activated(int) ), 376 connect(pop, SIGNAL( activated(int) ),
377 this, SLOT(slotFSActivated(int) ) ); 377 this, SLOT(slotFSActivated(int) ) );
378 378
379 StorageInfo storage; 379 StorageInfo storage;
380 const QList<FileSystem> &fs = storage.fileSystems(); 380 const QList<FileSystem> &fs = storage.fileSystems();
381 QListIterator<FileSystem> it(fs); 381 QListIterator<FileSystem> it(fs);
382 for ( ; it.current(); ++it ) 382 for ( ; it.current(); ++it )
383 { 383 {
384 const QString disk = (*it)->name(); 384 const QString disk = (*it)->name();
385 const QString path = (*it)->path(); 385 const QString path = (*it)->path();
386 m_dev.insert( disk, path ); 386 m_dev.insert( disk, path );
387 pop->insertItem( disk ); 387 pop->insertItem( disk );
388 } 388 }
389 m_fsPop = pop; 389 m_fsPop = pop;
390 390
391 connect(btn,SIGNAL(pressed()),this,SLOT(slotFSpressed())); 391 connect(btn,SIGNAL(pressed()),this,SLOT(slotFSpressed()));
392 392
393 lay->addWidget( box ); 393 lay->addWidget( box );
394 394
395 m_view = new QListView( this ); 395 m_view = new QListView( this );
396 396
397 m_view->installEventFilter(this); 397 m_view->installEventFilter(this);
398 398
399 QPEApplication::setStylusOperation( m_view->viewport(), 399 QPEApplication::setStylusOperation( m_view->viewport(),
400 QPEApplication::RightOnHold); 400 QPEApplication::RightOnHold);
401 m_view->addColumn(" " ); 401 m_view->addColumn(" " );
402 m_view->addColumn(tr("Name"), 135 ); 402 m_view->addColumn(tr("Name"), 135 );
403 m_view->addColumn(tr("Size"), -1 ); 403 m_view->addColumn(tr("Size"), -1 );
404 m_view->addColumn(tr("Date"), 60 ); 404 m_view->addColumn(tr("Date"), 60 );
405 m_view->addColumn(tr("Mime Type"), -1 ); 405 m_view->addColumn(tr("Mime Type"), -1 );
406 406
407 407
408 m_view->setSorting( 1 ); 408 m_view->setSorting( 1 );
409 m_view->setAllColumnsShowFocus( TRUE ); 409 m_view->setAllColumnsShowFocus( TRUE );
410 410
411 lay->addWidget( m_view, 1000 ); 411 lay->addWidget( m_view, 1000 );
412 connectSlots(); 412 connectSlots();
413} 413}
414 414
415void OFileViewFileListView::slotFSpressed() 415void OFileViewFileListView::slotFSpressed()
416{ 416{
417 m_fsPop->exec(QPoint( QCursor::pos().x(), QCursor::pos().y())); 417 m_fsPop->exec(QPoint( QCursor::pos().x(), QCursor::pos().y()));
418 m_fsButton->setDown(false); 418 m_fsButton->setDown(false);
419} 419}
420 420
421OFileViewFileListView::~OFileViewFileListView() 421OFileViewFileListView::~OFileViewFileListView()
422{ 422{
423} 423}
424 424
425void OFileViewFileListView::slotNew() 425void OFileViewFileListView::slotNew()
426{ 426{
427 DocLnk lnk; 427 DocLnk lnk;
428 emit selector()->newSelected( lnk ); 428 emit selector()->newSelected( lnk );
429} 429}
430 430
431OFileSelectorItem* OFileViewFileListView::currentItem()const 431OFileSelectorItem* OFileViewFileListView::currentItem()const
432{ 432{
433 QListViewItem* item = m_view->currentItem(); 433 QListViewItem* item = m_view->currentItem();
434 if (!item ) 434 if (!item )
435 return 0l; 435 return 0l;
436 436
437 return static_cast<OFileSelectorItem*>(item); 437 return static_cast<OFileSelectorItem*>(item);
438} 438}
439 439
440void OFileViewFileListView::reread( bool all ) 440void OFileViewFileListView::reread( bool all )
441{ 441{
442 m_view->clear(); 442 m_view->clear();
443 443
444 if (selector()->showClose() ) 444 if (selector()->showClose() )
445 m_btnClose->show(); 445 m_btnClose->show();
446 else 446 else
447 m_btnClose->hide(); 447 m_btnClose->hide();
448 448
449 if (selector()->showNew() ) 449 if (selector()->showNew() )
450 m_btnNew->show(); 450 m_btnNew->show();
451 else 451 else
452 m_btnNew->hide(); 452 m_btnNew->hide();
453 453
454 m_mimes = selector()->currentMimeType(); 454 m_mimes = selector()->currentMimeType();
455 m_all = all; 455 m_all = all;
456 456
457 QDir dir( m_currentDir ); 457 QDir dir( m_currentDir );
458 if (!dir.exists() ) 458 if (!dir.exists() )
459 return; 459 return;
460 460
461 dir.setSorting( QDir::Name | QDir::DirsFirst | QDir::Reversed ); 461 dir.setSorting( QDir::Name | QDir::DirsFirst | QDir::Reversed );
462 int filter; 462 int filter;
463 filter = QDir::Dirs; 463 filter = QDir::Dirs;
464 if ( selector()->mode() != OFileSelector::DIRECTORYSELECTOR ) 464 if ( selector()->mode() != OFileSelector::DIRECTORYSELECTOR )
465 filter = filter | QDir::Files | QDir::All; 465 filter = filter | QDir::Files | QDir::All;
466 466
467 if ( m_all ) 467 if ( m_all )
468 filter = filter | QDir::Hidden; 468 filter = filter | QDir::Hidden;
469 469
470 dir.setFilter( filter ); 470 dir.setFilter( filter );
471 471
472 // now go through all files 472 // now go through all files
473 const QFileInfoList *list = dir.entryInfoList(); 473 const QFileInfoList *list = dir.entryInfoList();
474 if (!list) 474 if (!list)
475 { 475 {
476 cdUP(); 476 cdUP();
477 return; 477 return;
478 } 478 }
479 479
480 QFileInfoListIterator it( *list ); 480 QFileInfoListIterator it( *list );
481 QFileInfo *fi; 481 QFileInfo *fi;
482 while( (fi=it.current() ) ) 482 while( (fi=it.current() ) )
483 { 483 {
484 if( fi->fileName() == QString::fromLatin1("..") || fi->fileName() == QString::fromLatin1(".") ) 484 if( fi->fileName() == QString::fromLatin1("..") || fi->fileName() == QString::fromLatin1(".") )
485 { 485 {
486 ++it; 486 ++it;
487 continue; 487 continue;
488 } 488 }
489 489
490 /* 490 /*
491 * It is a symlink we try to resolve it now but don't let us attack by DOS 491 * It is a symlink we try to resolve it now but don't let us attack by DOS
492 * 492 *
493 */ 493 */
494 if( fi->isSymLink() ) 494 if( fi->isSymLink() )
495 { 495 {
496 QString file = createNewPath(fi->dirPath( true ),fi->readLink()); 496 QString file = createNewPath(fi->dirPath( true ),fi->readLink());
497 for( int i = 0; i<=4; i++) 497 for( int i = 0; i<=4; i++)
498 { // 5 tries to prevent dos 498 { // 5 tries to prevent dos
499 QFileInfo info( file ); 499 QFileInfo info( file );
500 if( !info.exists() ) 500 if( !info.exists() )
501 { 501 {
502 addSymlink( fi, TRUE ); 502 addSymlink( fi, TRUE );
503 break; 503 break;
504 } 504 }
505 else if( info.isDir() ) 505 else if( info.isDir() )
506 { 506 {
507 addDir( fi, TRUE ); 507 addDir( fi, TRUE );
508 break; 508 break;
509 } 509 }
510 else if( info.isFile() ) 510 else if( info.isFile() )
511 { 511 {
512 addFile( fi, TRUE ); 512 addFile( fi, TRUE );
513 break; 513 break;
514 } 514 }
515 else if( info.isSymLink() ) 515 else if( info.isSymLink() )
516 { 516 {
517 file = createNewPath(info.dirPath(true ),info.readLink()); 517 file = createNewPath(info.dirPath(true ),info.readLink());
518 break; 518 break;
519 } 519 }
520 else if( i == 4) 520 else if( i == 4)
521 { // couldn't resolve symlink add it as symlink 521 { // couldn't resolve symlink add it as symlink
522 addSymlink( fi ); 522 addSymlink( fi );
523 } 523 }
524 } // off for loop for symlink resolving 524 } // off for loop for symlink resolving
525 } 525 }
526 else if( fi->isDir() ) 526 else if( fi->isDir() )
527 addDir( fi ); 527 addDir( fi );
528 else if( fi->isFile() ) 528 else if( fi->isFile() )
529 addFile( fi ); 529 addFile( fi );
530 530
531 ++it; 531 ++it;
532 } // of while loop 532 } // of while loop
533 m_view->sort(); 533 m_view->sort();
534 534
535} 535}
536int OFileViewFileListView::fileCount()const 536int OFileViewFileListView::fileCount()const
537{ 537{
538 return m_view->childCount(); 538 return m_view->childCount();
539} 539}
540 540
541QString OFileViewFileListView::currentDir()const 541QString OFileViewFileListView::currentDir()const
542{ 542{
543 return m_currentDir; 543 return m_currentDir;
544} 544}
545 545
546OFileSelector* OFileViewFileListView::selector() 546OFileSelector* OFileViewFileListView::selector()
547{ 547{
548 return m_sel; 548 return m_sel;
549} 549}
550 550
551bool OFileViewFileListView::eventFilter (QObject *, QEvent *e) 551bool OFileViewFileListView::eventFilter (QObject *, QEvent *e)
552{ 552{
553 if ( e->type() == QEvent::KeyPress ) 553 if ( e->type() == QEvent::KeyPress )
554 { 554 {
555 QKeyEvent *k = (QKeyEvent *)e; 555 QKeyEvent *k = (QKeyEvent *)e;
556 if ( (k->key()==Key_Enter) || (k->key()==Key_Return)) 556 if ( (k->key()==Key_Enter) || (k->key()==Key_Return))
557 { 557 {
558 slotClicked( Qt::LeftButton,m_view->currentItem(),QPoint(0,0),0); 558 slotClicked( Qt::LeftButton,m_view->currentItem(),QPoint(0,0),0);
559 return true; 559 return true;
560 } 560 }
561 } 561 }
562 return false; 562 return false;
563} 563}
564 564
565void OFileViewFileListView::connectSlots() 565void OFileViewFileListView::connectSlots()
566{ 566{
567 connect(m_view, SIGNAL(clicked(QListViewItem*) ), 567 connect(m_view, SIGNAL(clicked(QListViewItem*) ),
568 this, SLOT(slotCurrentChanged(QListViewItem*) ) ); 568 this, SLOT(slotCurrentChanged(QListViewItem*) ) );
569 connect(m_view, SIGNAL(mouseButtonClicked(int,QListViewItem*,const QPoint&,int) ), 569 connect(m_view, SIGNAL(mouseButtonClicked(int,QListViewItem*,const QPoint&,int) ),
570 this, SLOT(slotClicked(int,QListViewItem*,const QPoint&,int) ) ); 570 this, SLOT(slotClicked(int,QListViewItem*,const QPoint&,int) ) );
571} 571}
572 572
573void OFileViewFileListView::slotCurrentChanged( QListViewItem* item) 573void OFileViewFileListView::slotCurrentChanged( QListViewItem* item)
574{ 574{
575 if (!item) 575 if (!item)
576 return; 576 return;
577#if 0 577#if 0
578 578
579 OFileSelectorItem *sel = static_cast<OFileSelectorItem*>(item); 579 OFileSelectorItem *sel = static_cast<OFileSelectorItem*>(item);
580 580
581 if (!sel->isDir() ) 581 if (!sel->isDir() )
582 { 582 {
583 selector()->m_lneEdit->setText( sel->text(1) ); 583 selector()->m_lneEdit->setText( sel->text(1) );
584 // if in fileselector mode we will emit selected 584 // if in fileselector mode we will emit selected
585 if ( selector()->mode() == OFileSelector::FileSelector ) 585 if ( selector()->mode() == OFileSelector::FileSelector )
586 { 586 {
587 odebug << "slot Current Changed" << oendl; 587 odebug << "slot Current Changed" << oendl;
588 QStringList str = QStringList::split("->", sel->text(1) ); 588 QStringList str = QStringList::split("->", sel->text(1) );
589 QString path = createNewPath(sel->directory(),str[0].stripWhiteSpace()); 589 QString path = createNewPath(sel->directory(),str[0].stripWhiteSpace());
590 emit selector()->fileSelected( path ); 590 emit selector()->fileSelected( path );
591 DocLnk lnk( path ); 591 DocLnk lnk( path );
592 emit selector()->fileSelected( lnk ); 592 emit selector()->fileSelected( lnk );
593 } 593 }
594 } 594 }
595#endif 595#endif
596} 596}
597 597
598void OFileViewFileListView::slotClicked(int button , QListViewItem* item, const QPoint&, int ) 598void OFileViewFileListView::slotClicked(int button , QListViewItem* item, const QPoint&, int )
599{ 599{
600 if (!item || ( button != Qt::LeftButton) ) 600 if (!item || ( button != Qt::LeftButton) )
601 return; 601 return;
602 602
603 OFileSelectorItem *sel = static_cast<OFileSelectorItem*>(item); 603 OFileSelectorItem *sel = static_cast<OFileSelectorItem*>(item);
604 if (!sel->isLocked() ) 604 if (!sel->isLocked() )
605 { 605 {
606 QStringList str = QStringList::split("->", sel->text(1) ); 606 QStringList str = QStringList::split("->", sel->text(1) );
607 if (sel->isDir() ) 607 if (sel->isDir() )
608 { 608 {
609 m_currentDir = createNewPath(sel->directory(),str[0].stripWhiteSpace()); 609 m_currentDir = createNewPath(sel->directory(),str[0].stripWhiteSpace());
610 emit selector()->dirSelected( m_currentDir ); 610 emit selector()->dirSelected( m_currentDir );
611 reread( m_all ); 611 reread( m_all );
612 } 612 }
613 else 613 else
614 { // file 614 { // file
615 odebug << "slot Clicked" << oendl; 615 odebug << "slot Clicked" << oendl;
616 selector()->m_lneEdit->setText( str[0].stripWhiteSpace() ); 616 selector()->m_lneEdit->setText( str[0].stripWhiteSpace() );
617 QString path = createNewPath(sel->directory(),str[0].stripWhiteSpace()); 617 QString path = createNewPath(sel->directory(),str[0].stripWhiteSpace());
618 emit selector()->fileSelected( path ); 618 emit selector()->fileSelected( path );
619 DocLnk lnk( path ); 619 DocLnk lnk( path );
620 emit selector()->fileSelected( lnk ); 620 emit selector()->fileSelected( lnk );
621 } 621 }
622 } // not locked 622 } // not locked
623} 623}
624 624
625void OFileViewFileListView::addFile( QFileInfo* info, bool symlink ) 625void OFileViewFileListView::addFile( QFileInfo* info, bool symlink )
626{ 626{
627 MimeType type( info->absFilePath() ); 627 MimeType type( info->absFilePath() );
628 if (!compliesMime( type.id() ) ) 628 if (!compliesMime( type.id() ) )
629 return; 629 return;
630 630
631 QPixmap pix = type.pixmap(); 631 QPixmap pix = type.pixmap();
632 QString dir, name; bool locked; 632 QString dir, name; bool locked;
633 if ( pix.isNull() ) 633 if ( pix.isNull() )
634 { 634 {
635 QWMatrix matrix; 635 QWMatrix matrix;
636 QPixmap pixer(Resource::loadPixmap("UnknownDocument") ); 636 QPixmap pixer(Resource::loadPixmap("UnknownDocument") );
637 matrix.scale( .4, .4 ); 637 matrix.scale( .4, .4 );
638 pix = pixer.xForm( matrix ); 638 pix = pixer.xForm( matrix );
639 } 639 }
640 dir = info->dirPath( true ); 640 dir = info->dirPath( true );
641 locked = false; 641 locked = false;
642 if ( symlink ) 642 if ( symlink )
643 name = info->fileName() + " -> " + createNewPath(info->dirPath(),info->readLink()); 643 name = info->fileName() + " -> " + createNewPath(info->dirPath(),info->readLink());
644 else 644 else
645 { 645 {
646 name = info->fileName(); 646 name = info->fileName();
647 if ( ( (selector()->mode() == OFileSelector::Open)&& !info->isReadable() ) || 647 if ( ( (selector()->mode() == OFileSelector::Open)&& !info->isReadable() ) ||
648 ( (selector()->mode() == OFileSelector::Save)&& !info->isWritable() ) ) 648 ( (selector()->mode() == OFileSelector::Save)&& !info->isWritable() ) )
649 { 649 {
650 locked = true; pix = Resource::loadPixmap("locked"); 650 locked = true; pix = Resource::loadPixmap("locked");
651 } 651 }
652 } 652 }
653 (void)new OFileSelectorItem( m_view, pix, name, 653 (void)new OFileSelectorItem( m_view, pix, name,
654 info->lastModified().toString(), QString::number( info->size() ), 654 info->lastModified().toString(), QString::number( info->size() ),
655 dir, locked ); 655 dir, locked );
656} 656}
657 657
658void OFileViewFileListView::addDir( QFileInfo* info, bool symlink ) 658void OFileViewFileListView::addDir( QFileInfo* info, bool symlink )
659{ 659{
660 bool locked = false; QString name; QPixmap pix; 660 bool locked = false; QString name; QPixmap pix;
661 661
662 if ( ( ( selector()->mode() == OFileSelector::Open ) && !info->isReadable() ) || 662 if ( ( ( selector()->mode() == OFileSelector::Open ) && !info->isReadable() ) ||
663 ( ( selector()->mode() == OFileSelector::Save ) && !info->isWritable() ) ) 663 ( ( selector()->mode() == OFileSelector::Save ) && !info->isWritable() ) )
664 { 664 {
665 locked = true; 665 locked = true;
666 if ( symlink ) 666 if ( symlink )
667 pix = Resource::loadPixmap( "opie/symlink" ); 667 pix = Resource::loadPixmap( "opie/symlink" );
668 else 668 else
669 pix = Resource::loadPixmap( "lockedfolder" ); 669 pix = Resource::loadPixmap( "lockedfolder" );
670 } 670 }
671 else 671 else
672 pix = symlink ? Resource::loadPixmap( "opie/symlink") : Resource::loadPixmap("folder"); 672 pix = symlink ? Resource::loadPixmap( "opie/symlink") : Resource::loadPixmap("folder");
673 673
674 name = symlink ? info->fileName() + " -> " + createNewPath(info->dirPath(true),info->readLink()) : 674 name = symlink ? info->fileName() + " -> " + createNewPath(info->dirPath(true),info->readLink()) :
675 info->fileName(); 675 info->fileName();
676 676
677 (void)new OFileSelectorItem( m_view, pix, name, 677 (void)new OFileSelectorItem( m_view, pix, name,
678 info->lastModified().toString(), 678 info->lastModified().toString(),
679 QString::number( info->size() ), 679 QString::number( info->size() ),
680 info->dirPath( true ), locked, true ); 680 info->dirPath( true ), locked, true );
681 681
682 682
683} 683}
684 684
685void OFileViewFileListView::addSymlink( QFileInfo* , bool ) 685void OFileViewFileListView::addSymlink( QFileInfo* , bool )
686{ 686{
687} 687}
688 688
689void OFileViewFileListView::cdUP() 689void OFileViewFileListView::cdUP()
690{ 690{
691 QDir dir( m_currentDir ); 691 QDir dir( m_currentDir );
692 dir.cdUp(); 692 dir.cdUp();
693 693
694 if (!dir.exists() ) 694 if (!dir.exists() )
695 m_currentDir = "/"; 695 m_currentDir = "/";
696 else 696 else
697 m_currentDir = dir.absPath(); 697 m_currentDir = dir.absPath();
698 698
699 emit selector()->dirSelected( m_currentDir ); 699 emit selector()->dirSelected( m_currentDir );
700 reread( m_all ); 700 reread( m_all );
701} 701}
702 702
703void OFileViewFileListView::cdHome() 703void OFileViewFileListView::cdHome()
704{ 704{
705 m_currentDir = QDir::homeDirPath(); 705 m_currentDir = QDir::homeDirPath();
706 emit selector()->dirSelected( m_currentDir ); 706 emit selector()->dirSelected( m_currentDir );
707 reread( m_all ); 707 reread( m_all );
708} 708}
709 709
710void OFileViewFileListView::cdDoc() 710void OFileViewFileListView::cdDoc()
711{ 711{
712 m_currentDir = QPEApplication::documentDir(); 712 m_currentDir = QPEApplication::documentDir();
713 emit selector()->dirSelected( m_currentDir ); 713 emit selector()->dirSelected( m_currentDir );
714 reread( m_all ); 714 reread( m_all );
715} 715}
716 716
717void OFileViewFileListView::changeDir( const QString& dir ) 717void OFileViewFileListView::changeDir( const QString& dir )
718{ 718{
719 m_currentDir = dir; 719 m_currentDir = dir;
720 emit selector()->dirSelected( m_currentDir ); 720 emit selector()->dirSelected( m_currentDir );
721 reread( m_all ); 721 reread( m_all );
722} 722}
723 723
724void OFileViewFileListView::slotFSActivated( int id ) 724void OFileViewFileListView::slotFSActivated( int id )
725{ 725{
726 changeDir ( m_dev[m_fsPop->text(id)] ); 726 changeDir ( m_dev[m_fsPop->text(id)] );
727} 727}
728 728
729/* check if the mimetype in mime 729/* check if the mimetype in mime
730 * complies with the one which is current 730 * complies with the one which is current
731 */ 731 */
732/* 732/*
733 * We've the mimetype of the file 733 * We've the mimetype of the file
734 * We need to get the stringlist of the current mimetype 734 * We need to get the stringlist of the current mimetype
735 * 735 *
736 * mime = image@slashjpeg 736 * mime = image@slashjpeg
737 * QStringList = 'image@slash*' 737 * QStringList = 'image@slash*'
738 * or QStringList = image/jpeg;image/png;application/x-ogg 738 * or QStringList = image/jpeg;image/png;application/x-ogg
739 * or QStringList = application/x-ogg;image@slash*; 739 * or QStringList = application/x-ogg;image@slash*;
740 * with all these mime filters it should get acceptes 740 * with all these mime filters it should get acceptes
741 * to do so we need to look if mime is contained inside 741 * to do so we need to look if mime is contained inside
742 * the stringlist 742 * the stringlist
743 * if it's contained return true 743 * if it's contained return true
744 * if not ( I'm no RegExp expert at all ) we'll look if a '@slash*' 744 * if not ( I'm no RegExp expert at all ) we'll look if a '@slash*'
745 * is contained in the mimefilter and then we will 745 * is contained in the mimefilter and then we will
746 * look if both are equal until the '/' 746 * look if both are equal until the '/'
747 */ 747 */
748 748
749bool OFileViewFileListView::compliesMime( const QString& str) 749bool OFileViewFileListView::compliesMime( const QString& str)
750{ 750{
751 if (str.isEmpty() || m_mimes.isEmpty() || str.stripWhiteSpace().isEmpty() ) 751 if (str.isEmpty() || m_mimes.isEmpty() || str.stripWhiteSpace().isEmpty() )
752 return true; 752 return true;
753 753
754 for (QStringList::Iterator it = m_mimes.begin(); it != m_mimes.end(); ++it ) 754 for (QStringList::Iterator it = m_mimes.begin(); it != m_mimes.end(); ++it )
755 { 755 {
756 QRegExp reg( (*it) ); 756 QRegExp reg( (*it) );
757 reg.setWildcard( true ); 757 reg.setWildcard( true );
758 if ( str.find( reg ) != -1 ) 758 if ( str.find( reg ) != -1 )
759 return true; 759 return true;
760 760
761 } 761 }
762 return false; 762 return false;
763} 763}
764/* 764/*
765 * The listView giving access to the file system! 765 * The listView giving access to the file system!
766 */ 766 */
767 767
768class OFileViewFileSystem : public OFileViewInterface 768class OFileViewFileSystem : public OFileViewInterface
769{ 769{
770public: 770public:
771 OFileViewFileSystem( OFileSelector* ); 771 OFileViewFileSystem( OFileSelector* );
772 ~OFileViewFileSystem(); 772 ~OFileViewFileSystem();
773 773
774 QString selectedName() const; 774 QString selectedName() const;
775 QString selectedPath() const; 775 QString selectedPath() const;
776 776
777 QString directory()const; 777 QString directory()const;
778 void reread(); 778 void reread();
779 int fileCount()const; 779 int fileCount()const;
780 780
781 QWidget* widget( QWidget* parent ); 781 QWidget* widget( QWidget* parent );
782 void activate( const QString& ); 782 void activate( const QString& );
783private: 783private:
784 OFileViewFileListView* m_view; 784 OFileViewFileListView* m_view;
785 bool m_all : 1; 785 bool m_all : 1;
786}; 786};
787 787
788OFileViewFileSystem::OFileViewFileSystem( OFileSelector* sel) 788OFileViewFileSystem::OFileViewFileSystem( OFileSelector* sel)
789 : OFileViewInterface( sel ) 789 : OFileViewInterface( sel )
790{ 790{
791 m_view = 0; 791 m_view = 0;
792 m_all = false; 792 m_all = false;
793} 793}
794 794
795OFileViewFileSystem::~OFileViewFileSystem() 795OFileViewFileSystem::~OFileViewFileSystem()
796{ 796{
797} 797}
798 798
799QString OFileViewFileSystem::selectedName()const 799QString OFileViewFileSystem::selectedName()const
800{ 800{
801 if (!m_view ) 801 if (!m_view )
802 return QString::null; 802 return QString::null;
803 803
804 QString cFN=currentFileName(); 804 QString cFN=currentFileName();
805 if (cFN.startsWith("/")) return cFN; 805 if (cFN.startsWith("/")) return cFN;
806 return createNewPath(m_view->currentDir(),cFN); 806 return createNewPath(m_view->currentDir(),cFN);
807} 807}
808 808
809QString OFileViewFileSystem::selectedPath()const 809QString OFileViewFileSystem::selectedPath()const
810{ 810{
811 return QString::null; 811 return QString::null;
812} 812}
813 813
814QString OFileViewFileSystem::directory()const 814QString OFileViewFileSystem::directory()const
815{ 815{
816 if (!m_view) 816 if (!m_view)
817 return QString::null; 817 return QString::null;
818 818
819 OFileSelectorItem* item = m_view->currentItem(); 819 OFileSelectorItem* item = m_view->currentItem();
820 if (!item ) 820 if (!item )
821 return QString::null; 821 return QString::null;
822 822
823 return QDir(item->directory() ).absPath(); 823 return QDir(item->directory() ).absPath();
824} 824}
825 825
826void OFileViewFileSystem::reread() 826void OFileViewFileSystem::reread()
827{ 827{
828 if (!m_view) 828 if (!m_view)
829 return; 829 return;
830 830
831 m_view->reread( m_all ); 831 m_view->reread( m_all );
832} 832}
833 833
834int OFileViewFileSystem::fileCount()const 834int OFileViewFileSystem::fileCount()const
835{ 835{
836 if (!m_view ) 836 if (!m_view )
837 return -1; 837 return -1;
838 return m_view->fileCount(); 838 return m_view->fileCount();
839} 839}
840 840
841QWidget* OFileViewFileSystem::widget( QWidget* parent ) 841QWidget* OFileViewFileSystem::widget( QWidget* parent )
842{ 842{
843 if (!m_view ) 843 if (!m_view )
844 { 844 {
845 m_view = new OFileViewFileListView( parent, startDirectory(), selector() ); 845 m_view = new OFileViewFileListView( parent, startDirectory(), selector() );
846 } 846 }
847 return m_view; 847 return m_view;
848} 848}
849 849
850void OFileViewFileSystem::activate( const QString& str ) 850void OFileViewFileSystem::activate( const QString& str )
851{ 851{
852 m_all = allItem( str ); 852 m_all = allItem( str );
853} 853}
854 854
855 855
856} 856}
857/* Selector */ 857/* Selector */
858/** 858/**
859 * @short new and complete c'tor 859 * @short new and complete c'tor
860 * 860 *
861 * Create a OFileSelector to let the user select a file. It can 861 * Create a OFileSelector to let the user select a file. It can
862 * either be used to open a file, select a save name in a dir or 862 * either be used to open a file, select a save name in a dir or
863 * as a dropin for the FileSelector. 863 * as a dropin for the FileSelector.
864 * 864 *
865 * <pre> 865 * <pre>
866 * QMap<QString, QStringList> mimeTypes; 866 * QMap<QString, QStringList> mimeTypes;
867 * QStringList types; 867 * QStringList types;
868 * types << "text@slash* "; 868 * types << "text@slash* ";
869 * types << "audio@slash*"; 869 * types << "audio@slash*";
870 * mimeTypes.insert( tr("Audio and Text"), types ); 870 * mimeTypes.insert( tr("Audio and Text"), types );
871 * mimeTypes.insert( tr("All"), "*@slash*); 871 * mimeTypes.insert( tr("All"), "*@slash*);
872 * 872 *
873 * now you could create your fileselector 873 * now you could create your fileselector
874 * </pre> 874 * </pre>
875 * 875 *
876 * 876 *
877 * @param parent the parent of this widget 877 * @param parent the parent of this widget