-rw-r--r-- | libopie/ofileselector/ofilelistview.cpp | 20 | ||||
-rw-r--r-- | libopie/ofileselector/ofilelistview.h | 15 | ||||
-rw-r--r-- | libopie/ofileselector/ofileselector.cpp | 25 | ||||
-rw-r--r-- | libopie/ofileselector/ofileselectoritem.cpp | 5 | ||||
-rw-r--r-- | libopie/ofileselector/ofileselectoritem.h | 5 | ||||
-rw-r--r-- | libopie/ofileselector/ofileview.cpp | 14 | ||||
-rw-r--r-- | libopie/ofileselector/ofileview.h | 33 | ||||
-rw-r--r-- | libopie/ofileselector/olister.cpp | 58 | ||||
-rw-r--r-- | libopie/ofileselector/olister.h | 61 | ||||
-rw-r--r-- | libopie/ofileselector/olocallister.cpp | 3 |
10 files changed, 199 insertions, 40 deletions
diff --git a/libopie/ofileselector/ofilelistview.cpp b/libopie/ofileselector/ofilelistview.cpp index 691bf42..9cfdc48 100644 --- a/libopie/ofileselector/ofilelistview.cpp +++ b/libopie/ofileselector/ofilelistview.cpp | |||
@@ -17,146 +17,156 @@ OFileListView::OFileListView( QWidget* parent, OFileSelector* sel) | |||
17 | QPEApplication::RightOnHold); | 17 | QPEApplication::RightOnHold); |
18 | addColumn(" " ); | 18 | addColumn(" " ); |
19 | addColumn(tr("Name"), 135 ); | 19 | addColumn(tr("Name"), 135 ); |
20 | addColumn(tr("Size"), -1 ); | 20 | addColumn(tr("Size"), -1 ); |
21 | addColumn(tr("Date"), 60 ); | 21 | addColumn(tr("Date"), 60 ); |
22 | addColumn(tr("Mime Type"), -1 ); | 22 | addColumn(tr("Mime Type"), -1 ); |
23 | QHeader *head = header(); | 23 | QHeader *head = header(); |
24 | head->hide(); | 24 | head->hide(); |
25 | setSorting( 1 ); | 25 | setSorting( 1 ); |
26 | setAllColumnsShowFocus( TRUE ); | 26 | setAllColumnsShowFocus( TRUE ); |
27 | 27 | ||
28 | connect(this, SIGNAL(selectionChanged() ), | 28 | connect(this, SIGNAL(selectionChanged() ), |
29 | this, SLOT(slotSelectionChanged() ) ); | 29 | this, SLOT(slotSelectionChanged() ) ); |
30 | 30 | ||
31 | connect(this, SIGNAL(currentChanged(QListViewItem *) ), | 31 | connect(this, SIGNAL(currentChanged(QListViewItem *) ), |
32 | this, SLOT(slotCurrentChanged(QListViewItem * ) ) ); | 32 | this, SLOT(slotCurrentChanged(QListViewItem * ) ) ); |
33 | 33 | ||
34 | connect(this, SIGNAL(mouseButtonClicked(int, QListViewItem*, const QPoint &, int) ), | 34 | connect(this, SIGNAL(mouseButtonClicked(int, QListViewItem*, const QPoint &, int) ), |
35 | this, SLOT(slotClicked( int, QListViewItem *, const QPoint &, int) ) ); | 35 | this, SLOT(slotClicked( int, QListViewItem *, const QPoint &, int) ) ); |
36 | 36 | ||
37 | connect(this, SIGNAL(mouseButtonPressed(int, QListViewItem *, const QPoint &, int )), | 37 | connect(this, SIGNAL(mouseButtonPressed(int, QListViewItem *, const QPoint &, int )), |
38 | this, SLOT(slotRightButton(int, QListViewItem *, const QPoint &, int ) ) ); | 38 | this, SLOT(slotRightButton(int, QListViewItem *, const QPoint &, int ) ) ); |
39 | } | 39 | } |
40 | OFileListView::~OFileListView() { | 40 | OFileListView::~OFileListView() { |
41 | 41 | ||
42 | } | 42 | } |
43 | void OFileListView::clear() { | 43 | void OFileListView::clear() { |
44 | QListView::clear(); | 44 | QListView::clear(); |
45 | } | 45 | } |
46 | void OFileListView::addFile( const QPixmap& pix, | 46 | void OFileListView::addFile( const QPixmap& pix, |
47 | const QString&, | 47 | const QString&, |
48 | QFileInfo* info, | 48 | QFileInfo* info, |
49 | const QString& /*extra*/, | ||
49 | bool isSymlink ) { | 50 | bool isSymlink ) { |
50 | QString dir; | 51 | QString dir; |
51 | QString name; | 52 | QString name; |
52 | bool locked = false; | 53 | bool locked = false; |
53 | 54 | ||
54 | dir = info->dirPath( true ); | 55 | dir = info->dirPath( true ); |
55 | 56 | ||
56 | if( isSymlink ) | 57 | if( isSymlink ) |
57 | name = info->fileName() + " -> " +info->dirPath() + "/" + info->readLink(); | 58 | name = info->fileName() + " -> " +info->dirPath() + "/" + info->readLink(); |
58 | else { | 59 | else { |
59 | name = info->fileName(); | 60 | name = info->fileName(); |
60 | if( ( selector()->mode() == OFileSelector::Open && !info->isReadable() ) || | 61 | if( ( selector()->mode() == OFileSelector::Open && !info->isReadable() ) || |
61 | ( selector()->mode() == OFileSelector::Save && !info->isWritable() ) ){ | 62 | ( selector()->mode() == OFileSelector::Save && !info->isWritable() ) ){ |
62 | 63 | ||
63 | locked = true; | 64 | locked = true; |
64 | } | 65 | } |
65 | } | 66 | } |
66 | new OFileSelectorItem( this, pix, name, | 67 | new OFileSelectorItem( this, pix, name, |
67 | info->lastModified().toString(), | 68 | info->lastModified().toString(), |
68 | QString::number( info->size() ), | 69 | QString::number( info->size() ), |
69 | dir, locked ); | 70 | dir, locked ); |
70 | } | 71 | } |
71 | void OFileListView::addFile( const QPixmap&, | 72 | void OFileListView::addFile( const QPixmap&, |
72 | const QString& /*mime*/, const QString& /*dir*/, | 73 | const QString& /*mime*/, const QString& /*dir*/, |
73 | const QString& /*file*/, bool /*isSyml*/ ) { | 74 | const QString& /*file*/, |
75 | const QString& /*extra*/, | ||
76 | bool /*isSyml*/ ) { | ||
74 | 77 | ||
75 | } | 78 | } |
76 | void OFileListView::addDir( const QPixmap& pix, const QString&, | 79 | void OFileListView::addDir( const QPixmap& pix, const QString&, |
77 | QFileInfo* info, bool symlink ) { | 80 | QFileInfo* info, |
81 | const QString& /*extra */, | ||
82 | bool symlink ) { | ||
78 | 83 | ||
79 | bool locked = false; | 84 | bool locked = false; |
80 | QString name; | 85 | QString name; |
81 | 86 | ||
82 | name = symlink ? info->fileName() + "->" + info->dirPath(true) + "/" +info->readLink() : info->fileName() ; | 87 | name = symlink ? info->fileName() + "->" + info->dirPath(true) + "/" +info->readLink() : info->fileName() ; |
83 | 88 | ||
84 | new OFileSelectorItem( this, pix, name, | 89 | new OFileSelectorItem( this, pix, name, |
85 | info->lastModified().toString(), | 90 | info->lastModified().toString(), |
86 | QString::number( info->size() ), | 91 | QString::number( info->size() ), |
87 | info->dirPath( true ), locked, | 92 | info->dirPath( true ), locked, |
88 | true ); | 93 | true ); |
89 | 94 | ||
90 | } | 95 | } |
91 | void OFileListView::addDir( const QPixmap&, | 96 | void OFileListView::addDir( const QPixmap&, |
92 | const QString& /*mime*/, const QString& /*dir*/, | 97 | const QString& /*mime*/, const QString& /*dir*/, |
93 | const QString& /*file*/, bool ) { | 98 | const QString& /*file*/, |
99 | const QString& /*extra*/, | ||
100 | bool ) { | ||
94 | 101 | ||
95 | } | 102 | } |
96 | void OFileListView::addSymlink( const QPixmap&, | 103 | void OFileListView::addSymlink( const QPixmap&, |
97 | const QString& /*mime*/, | 104 | const QString& /*mime*/, |
98 | QFileInfo* /*info*/, | 105 | QFileInfo* /*info*/, |
106 | const QString& /*extra*/, | ||
99 | bool /*isSym*/ ) { | 107 | bool /*isSym*/ ) { |
100 | 108 | ||
101 | } | 109 | } |
102 | void OFileListView::addSymlink(const QPixmap&, | 110 | void OFileListView::addSymlink(const QPixmap&, |
103 | const QString& /*m*/, const QString& /*path*/, | 111 | const QString& /*m*/, const QString& /*path*/, |
104 | const QString& /*file*/, bool /*isSym*/ ) { | 112 | const QString& /*file*/, |
113 | const QString& /*extra*/, | ||
114 | bool /*isSym*/ ) { | ||
105 | 115 | ||
106 | } | 116 | } |
107 | void OFileListView::cd( const QString& ) { | 117 | void OFileListView::cd( const QString& ) { |
108 | 118 | ||
109 | } | 119 | } |
110 | QWidget* OFileListView::widget() { | 120 | QWidget* OFileListView::widget() { |
111 | return this; | 121 | return this; |
112 | } | 122 | } |
113 | QString OFileListView::selectedName()const{ | 123 | QString OFileListView::selectedName()const{ |
114 | QListViewItem *item = currentItem(); | 124 | QListViewItem *item = currentItem(); |
115 | if (!item ) | 125 | if (!item ) |
116 | return QString::null; | 126 | return QString::null; |
117 | 127 | ||
118 | return item->text( 1 ); | 128 | return item->text( 1 ); |
119 | } | 129 | } |
120 | QStringList OFileListView::selectedNames()const { | 130 | QStringList OFileListView::selectedNames()const { |
121 | QStringList list; | 131 | QStringList list; |
122 | list << selectedName(); | 132 | list << selectedName(); |
123 | return list; | 133 | return list; |
124 | } | 134 | } |
125 | QString OFileListView::selectedPath()const { | 135 | QString OFileListView::selectedPath()const { |
126 | return QString::null; | 136 | return QString::null; |
127 | } | 137 | } |
128 | QStringList OFileListView::selectedPaths()const { | 138 | QStringList OFileListView::selectedPaths()const { |
129 | QStringList list; | 139 | QStringList list; |
130 | list << selectedPath(); | 140 | b list << selectedPath(); |
131 | return list; | 141 | return list; |
132 | } | 142 | } |
133 | int OFileListView::fileCount() { | 143 | int OFileListView::fileCount() { |
134 | return childCount(); | 144 | return childCount(); |
135 | } | 145 | } |
136 | void OFileListView::sort() { | 146 | void OFileListView::sort() { |
137 | QListView::sort(); | 147 | QListView::sort(); |
138 | } | 148 | } |
139 | void OFileListView::slotSelectionChanged() { | 149 | void OFileListView::slotSelectionChanged() { |
140 | 150 | ||
141 | } | 151 | } |
142 | void OFileListView::slotCurrentChanged( QListViewItem* item) { | 152 | void OFileListView::slotCurrentChanged( QListViewItem* item) { |
143 | if (!item ) | 153 | if (!item ) |
144 | return; | 154 | return; |
145 | 155 | ||
146 | OFileSelectorItem* sel = (OFileSelectorItem*) item; | 156 | OFileSelectorItem* sel = (OFileSelectorItem*) item; |
147 | 157 | ||
148 | qWarning("current changed"); | 158 | qWarning("current changed"); |
149 | if(!sel->isDir() ){ | 159 | if(!sel->isDir() ){ |
150 | updateLine( sel->text(1) ); | 160 | updateLine( sel->text(1) ); |
151 | 161 | ||
152 | if (selector()->mode() == OFileSelector::Fileselector ) { | 162 | if (selector()->mode() == OFileSelector::Fileselector ) { |
153 | QStringList str = QStringList::split("->", sel->text(1) ); | 163 | QStringList str = QStringList::split("->", sel->text(1) ); |
154 | QString path =sel->directory() + "/" + str[0].stripWhiteSpace(); | 164 | QString path =sel->directory() + "/" + str[0].stripWhiteSpace(); |
155 | DocLnk lnk( path ); | 165 | DocLnk lnk( path ); |
156 | fileSelected(lnk ); | 166 | fileSelected(lnk ); |
157 | fileSelected( path ); | 167 | fileSelected( path ); |
158 | } | 168 | } |
159 | } | 169 | } |
160 | } | 170 | } |
161 | void OFileListView::slotClicked( int button, QListViewItem* item, | 171 | void OFileListView::slotClicked( int button, QListViewItem* item, |
162 | const QPoint&, int ) { | 172 | const QPoint&, int ) { |
diff --git a/libopie/ofileselector/ofilelistview.h b/libopie/ofileselector/ofilelistview.h index c8cdfd1..0f625ec 100644 --- a/libopie/ofileselector/ofilelistview.h +++ b/libopie/ofileselector/ofilelistview.h | |||
@@ -1,58 +1,67 @@ | |||
1 | #ifndef OPIE_FILE_LIST_VIEW_H | 1 | #ifndef OPIE_FILE_LIST_VIEW_H |
2 | #define OPIE_FILE_LIST_VIEW_H | 2 | #define OPIE_FILE_LIST_VIEW_H |
3 | 3 | ||
4 | #include <qlistview.h> | 4 | #include <qlistview.h> |
5 | #include <qpixmap.h> | 5 | #include <qpixmap.h> |
6 | 6 | ||
7 | #include "ofileview.h" | 7 | #include "ofileview.h" |
8 | 8 | ||
9 | class OFileListView : public QListView, public OFileView { | 9 | class OFileListView : public QListView, public OFileView { |
10 | Q_OBJECT | 10 | Q_OBJECT |
11 | public: | 11 | public: |
12 | OFileListView( QWidget* parent, OFileSelector* ); | 12 | OFileListView( QWidget* parent, OFileSelector* ); |
13 | ~OFileListView(); | 13 | ~OFileListView(); |
14 | 14 | ||
15 | void clear(); | 15 | void clear(); |
16 | void addFile( const QPixmap&, | 16 | void addFile( const QPixmap&, |
17 | const QString& mine, | 17 | const QString& mine, |
18 | QFileInfo* info, | 18 | QFileInfo* info, |
19 | const QString& extra = QString::null, | ||
19 | bool isSymlink = FALSE ); | 20 | bool isSymlink = FALSE ); |
20 | 21 | ||
21 | void addFile( const QPixmap&, | 22 | void addFile( const QPixmap&, |
22 | const QString& mime, | 23 | const QString& mime, |
23 | const QString& dir, | 24 | const QString& dir, |
24 | const QString& file, | 25 | const QString& file, |
26 | const QString& extra = QString::null, | ||
25 | bool = false ); | 27 | bool = false ); |
26 | 28 | ||
27 | void addDir( const QPixmap&, | 29 | void addDir( const QPixmap&, |
28 | const QString& mime, | 30 | const QString& mime, |
31 | const QString& extra = QString::null, | ||
29 | QFileInfo* info, bool = FALSE ); | 32 | QFileInfo* info, bool = FALSE ); |
30 | 33 | ||
31 | void addDir( const QPixmap&, | 34 | void addDir( const QPixmap&, |
32 | const QString& mime, const QString& dir, | 35 | const QString& mime, const QString& dir, |
33 | const QString& file, bool = FALSE ); | 36 | const QString& file, |
37 | const QString& extra = QString::null, | ||
38 | bool = FALSE ); | ||
34 | 39 | ||
35 | void addSymlink( const QPixmap&, | 40 | void addSymlink( const QPixmap&, |
36 | const QString& mime, | 41 | const QString& mime, |
37 | QFileInfo* info, bool = FALSE ); | 42 | QFileInfo* info, |
43 | const QString& extra = QString::null, | ||
44 | bool = FALSE ); | ||
38 | void addSymlink( const QPixmap&, | 45 | void addSymlink( const QPixmap&, |
39 | const QString& mine, const QString& path, | 46 | const QString& mine, const QString& path, |
40 | const QString& file, bool isSymlink = FALSE ); | 47 | const QString& file, |
48 | const QString& extra, | ||
49 | bool isSymlink = FALSE ); | ||
41 | void cd( const QString& path ); | 50 | void cd( const QString& path ); |
42 | QWidget* widget(); | 51 | QWidget* widget(); |
43 | void sort(); | 52 | void sort(); |
44 | 53 | ||
45 | QString selectedName()const ; | 54 | QString selectedName()const ; |
46 | QStringList selectedNames()const; | 55 | QStringList selectedNames()const; |
47 | 56 | ||
48 | QString selectedPath()const; | 57 | QString selectedPath()const; |
49 | QStringList selectedPaths()const; | 58 | QStringList selectedPaths()const; |
50 | int fileCount(); | 59 | int fileCount(); |
51 | private slots: | 60 | private slots: |
52 | void slotSelectionChanged(); | 61 | void slotSelectionChanged(); |
53 | void slotCurrentChanged(QListViewItem* ); | 62 | void slotCurrentChanged(QListViewItem* ); |
54 | void slotClicked( int, QListViewItem*, const QPoint&, int ); | 63 | void slotClicked( int, QListViewItem*, const QPoint&, int ); |
55 | void slotRightButton(int, QListViewItem*, const QPoint&, int ); | 64 | void slotRightButton(int, QListViewItem*, const QPoint&, int ); |
56 | }; | 65 | }; |
57 | 66 | ||
58 | #endif | 67 | #endif |
diff --git a/libopie/ofileselector/ofileselector.cpp b/libopie/ofileselector/ofileselector.cpp index 4ab744c..0ccb3cb 100644 --- a/libopie/ofileselector/ofileselector.cpp +++ b/libopie/ofileselector/ofileselector.cpp | |||
@@ -364,79 +364,78 @@ void OFileSelector::slotCancel() | |||
364 | { | 364 | { |
365 | emit cancel(); | 365 | emit cancel(); |
366 | } | 366 | } |
367 | /* switch the views */ | 367 | /* switch the views */ |
368 | void OFileSelector::slotViewCheck(const QString &sel) | 368 | void OFileSelector::slotViewCheck(const QString &sel) |
369 | { | 369 | { |
370 | setView( sel ); | 370 | setView( sel ); |
371 | } | 371 | } |
372 | 372 | ||
373 | QString OFileSelector::currentMimeType() const{ | 373 | QString OFileSelector::currentMimeType() const{ |
374 | QString mime; | 374 | QString mime; |
375 | QString currentText; | 375 | QString currentText; |
376 | if (m_shChooser && m_mimeCheck ) | 376 | if (m_shChooser && m_mimeCheck ) |
377 | currentText = m_mimeCheck->currentText(); | 377 | currentText = m_mimeCheck->currentText(); |
378 | 378 | ||
379 | qWarning("CurrentText" + currentText ); | 379 | qWarning("CurrentText" + currentText ); |
380 | if (tr("All") == currentText ) return QString::null; | 380 | if (tr("All") == currentText ) return QString::null; |
381 | else if (currentText.isEmpty() ) { | 381 | else if (currentText.isEmpty() ) { |
382 | ; | 382 | ; |
383 | }else { | 383 | }else { |
384 | QMap<QString, QStringList>::ConstIterator it; | 384 | QMap<QString, QStringList>::ConstIterator it; |
385 | it = m_mimetypes.find( currentText ); | 385 | it = m_mimetypes.find( currentText ); |
386 | if ( it != m_mimetypes.end() ) { | 386 | if ( it != m_mimetypes.end() ) { |
387 | mime = it.data().join(";"); | 387 | mime = it.data().join(";"); |
388 | }else{ | 388 | }else{ |
389 | mime = currentText; | 389 | mime = currentText; |
390 | } | 390 | } |
391 | } | 391 | } |
392 | return mime; | 392 | return mime; |
393 | } | 393 | } |
394 | void OFileSelector::slotMimeCheck(const QString &mime) | 394 | void OFileSelector::slotMimeCheck(const QString &mime) |
395 | { | 395 | { |
396 | if( m_selector == Normal ){ | 396 | if( m_selector == Normal ){ |
397 | initializeOldSelector(); | 397 | initializeOldSelector(); |
398 | 398 | ||
399 | updateMimes(); | 399 | updateMimes(); |
400 | updateMimeCheck(); | 400 | updateMimeCheck(); |
401 | m_mimeCheck->setCurrentItem(indexByString( m_mimeCheck, mime) ); | 401 | m_mimeCheck->setCurrentItem(indexByString( m_mimeCheck, mime) ); |
402 | }else{ // others | 402 | }else{ // others |
403 | qWarning("Mime %s", mime.latin1() ); | 403 | qWarning("Mime %s", mime.latin1() ); |
404 | if(m_shChooser ){ | 404 | if(m_shChooser ){ |
405 | qWarning("Current Text %s", m_mimeCheck->currentText().latin1() ); | 405 | qWarning("Current Text %s", m_mimeCheck->currentText().latin1() ); |
406 | //m_mimeCheck->setCurrentItem(indexByString( m_mimeCheck, mime) ); | 406 | //m_mimeCheck->setCurrentItem(indexByString( m_mimeCheck, mime) ); |
407 | } | ||
408 | reparse(); | ||
407 | } | 409 | } |
408 | reparse(); | ||
409 | } | ||
410 | |||
411 | } | 410 | } |
412 | /* | 411 | /* |
413 | * Ok if a non dir gets inserted into this combobox | 412 | * Ok if a non dir gets inserted into this combobox |
414 | * we need to change it | 413 | * we need to change it |
415 | * QFileInfo and dirPath will give us the right Dir | 414 | * QFileInfo and dirPath will give us the right Dir |
416 | */ | 415 | */ |
417 | void OFileSelector::slotLocationActivated(const QString &file) | 416 | void OFileSelector::slotLocationActivated(const QString &file) |
418 | { | 417 | { |
419 | qWarning("slotLocationActivated"); | 418 | qWarning("slotLocationActivated"); |
420 | QString name = file.left( file.find("<-", 0, TRUE ) ); | 419 | QString name = file.left( file.find("<-", 0, TRUE ) ); |
421 | QFileInfo info( name ); | 420 | QFileInfo info( name ); |
422 | if ( info.isFile() ) | 421 | if ( info.isFile() ) |
423 | cd(info.dirPath( TRUE ) ); //absolute | 422 | cd(info.dirPath( TRUE ) ); //absolute |
424 | else | 423 | else |
425 | cd(name ); | 424 | cd(name ); |
426 | reparse(); | 425 | reparse(); |
427 | } | 426 | } |
428 | void OFileSelector::slotInsertLocationPath(const QString ¤tPath, int count) | 427 | void OFileSelector::slotInsertLocationPath(const QString ¤tPath, int count) |
429 | { | 428 | { |
430 | QStringList pathList; | 429 | QStringList pathList; |
431 | bool underDog = FALSE; | 430 | bool underDog = FALSE; |
432 | for(int i=0;i<count;i++) { | 431 | for(int i=0;i<count;i++) { |
433 | pathList << m_location->text(i); | 432 | pathList << m_location->text(i); |
434 | if( m_location->text(i) == currentPath) | 433 | if( m_location->text(i) == currentPath) |
435 | underDog = TRUE; | 434 | underDog = TRUE; |
436 | } | 435 | } |
437 | if( !underDog) { | 436 | if( !underDog) { |
438 | m_location->clear(); | 437 | m_location->clear(); |
439 | if( currentPath.left(2)=="//") | 438 | if( currentPath.left(2)=="//") |
440 | pathList.append( currentPath.right(currentPath.length()-1) ); | 439 | pathList.append( currentPath.right(currentPath.length()-1) ); |
441 | else | 440 | else |
442 | pathList.append( currentPath ); | 441 | pathList.append( currentPath ); |
diff --git a/libopie/ofileselector/ofileselectoritem.cpp b/libopie/ofileselector/ofileselectoritem.cpp index 1e745a1..d31046b 100644 --- a/libopie/ofileselector/ofileselectoritem.cpp +++ b/libopie/ofileselector/ofileselectoritem.cpp | |||
@@ -1,53 +1,58 @@ | |||
1 | #include "ofileselectoritem.h" | 1 | #include "ofileselectoritem.h" |
2 | 2 | ||
3 | OFileSelectorItem::OFileSelectorItem( QListView*view, | 3 | OFileSelectorItem::OFileSelectorItem( QListView*view, |
4 | const QPixmap& pix, | 4 | const QPixmap& pix, |
5 | const QString& path, | 5 | const QString& path, |
6 | const QString& date, | 6 | const QString& date, |
7 | const QString& size, | 7 | const QString& size, |
8 | const QString& dir, | 8 | const QString& dir, |
9 | const QString& extra, | ||
9 | bool isLocked, | 10 | bool isLocked, |
10 | bool isDir ) | 11 | bool isDir ) |
11 | : QListViewItem( view ) | 12 | : QListViewItem( view ) |
12 | { | 13 | { |
13 | setPixmap( 0, pix ); | 14 | setPixmap( 0, pix ); |
14 | setText( 1, path ); | 15 | setText( 1, path ); |
15 | setText( 2, size ); | 16 | setText( 2, size ); |
16 | setText( 3, date ); | 17 | setText( 3, date ); |
17 | m_dir = isDir; | 18 | m_dir = isDir; |
18 | m_locked = isLocked; | 19 | m_locked = isLocked; |
19 | m_dirStr = dir; | 20 | m_dirStr = dir; |
21 | m_extra = extra; | ||
20 | } | 22 | } |
21 | OFileSelectorItem::~OFileSelectorItem() { | 23 | OFileSelectorItem::~OFileSelectorItem() { |
22 | } | 24 | } |
23 | bool OFileSelectorItem::isLocked()const { | 25 | bool OFileSelectorItem::isLocked()const { |
24 | return m_locked; | 26 | return m_locked; |
25 | } | 27 | } |
26 | QString OFileSelectorItem::directory()const { | 28 | QString OFileSelectorItem::directory()const { |
27 | return m_dirStr; | 29 | return m_dirStr; |
28 | } | 30 | } |
29 | bool OFileSelectorItem::isDir()const { | 31 | bool OFileSelectorItem::isDir()const { |
30 | return m_dir; | 32 | return m_dir; |
31 | } | 33 | } |
32 | QString OFileSelectorItem::path() const { | 34 | QString OFileSelectorItem::path() const { |
33 | return text(1); | 35 | return text(1); |
34 | } | 36 | } |
35 | QString OFileSelectorItem::key( int id, bool ) { | 37 | QString OFileSelectorItem::key( int id, bool ) { |
36 | QString ke; | 38 | QString ke; |
37 | 39 | ||
38 | if( id == 0 || id == 1 ){ // name | 40 | if( id == 0 || id == 1 ){ // name |
39 | if( m_dir ){ | 41 | if( m_dir ){ |
40 | ke.append("0" ); | 42 | ke.append("0" ); |
41 | ke.append( text(1) ); | 43 | ke.append( text(1) ); |
42 | }else{ | 44 | }else{ |
43 | ke.append("1" ); | 45 | ke.append("1" ); |
44 | ke.append( text(1) ); | 46 | ke.append( text(1) ); |
45 | } | 47 | } |
46 | }else if( id == 2 ){ // size | 48 | }else if( id == 2 ){ // size |
47 | return text(2); | 49 | return text(2); |
48 | }else if( id == 3 ){ // date | 50 | }else if( id == 3 ){ // date |
49 | return text(3); | 51 | return text(3); |
50 | } | 52 | } |
51 | 53 | ||
52 | return ke; | 54 | return ke; |
53 | } | 55 | } |
56 | QString OFileSelector::extra()const { | ||
57 | return m_extra; | ||
58 | } | ||
diff --git a/libopie/ofileselector/ofileselectoritem.h b/libopie/ofileselector/ofileselectoritem.h index 21460c4..81966ae 100644 --- a/libopie/ofileselector/ofileselectoritem.h +++ b/libopie/ofileselector/ofileselectoritem.h | |||
@@ -1,30 +1,35 @@ | |||
1 | #ifndef OPIE_FILE_SELECTOR_ITEM_H | 1 | #ifndef OPIE_FILE_SELECTOR_ITEM_H |
2 | #define OPIE_FILE_SELECTOR_ITEM_H | 2 | #define OPIE_FILE_SELECTOR_ITEM_H |
3 | 3 | ||
4 | #include <qlistview.h> | 4 | #include <qlistview.h> |
5 | 5 | ||
6 | class OFileSelectorItem : public QListViewItem { | 6 | class OFileSelectorItem : public QListViewItem { |
7 | public: | 7 | public: |
8 | OFileSelectorItem( QListView* view, | 8 | OFileSelectorItem( QListView* view, |
9 | const QPixmap&, | 9 | const QPixmap&, |
10 | const QString& path, | 10 | const QString& path, |
11 | const QString& date, | 11 | const QString& date, |
12 | const QString& size, | 12 | const QString& size, |
13 | const QString& dir, | 13 | const QString& dir, |
14 | bool isLocked, | 14 | bool isLocked, |
15 | const QString& extra, | ||
15 | bool isDir = false); | 16 | bool isDir = false); |
16 | ~OFileSelectorItem(); | 17 | ~OFileSelectorItem(); |
17 | bool isLocked() const; | 18 | bool isLocked() const; |
18 | QString directory()const; | 19 | QString directory()const; |
19 | bool isDir()const; | 20 | bool isDir()const; |
20 | QString path()const; | 21 | QString path()const; |
21 | QString key(int id, bool ); | 22 | QString key(int id, bool ); |
23 | QString extra()const; | ||
22 | 24 | ||
23 | private: | 25 | private: |
24 | bool m_locked : 1; | 26 | bool m_locked : 1; |
25 | bool m_dir : 1; | 27 | bool m_dir : 1; |
26 | QString m_dirStr; | 28 | QString m_dirStr; |
29 | QString m_extra; | ||
27 | 30 | ||
31 | class Private; | ||
32 | Private* d; | ||
28 | }; | 33 | }; |
29 | 34 | ||
30 | #endif | 35 | #endif |
diff --git a/libopie/ofileselector/ofileview.cpp b/libopie/ofileselector/ofileview.cpp index 38f722c..72d2f60 100644 --- a/libopie/ofileselector/ofileview.cpp +++ b/libopie/ofileselector/ofileview.cpp | |||
@@ -1,36 +1,30 @@ | |||
1 | #include <qlineedit.h> | 1 | #include <qlineedit.h> |
2 | 2 | ||
3 | #include <qpe/applnk.h> | 3 | #include <qpe/applnk.h> |
4 | 4 | ||
5 | #include "ofileselector.h" | 5 | #include "ofileselector.h" |
6 | #include "ofileview.h" | 6 | #include "ofileview.h" |
7 | 7 | ||
8 | 8 | ||
9 | OFileView::OFileView( OFileSelector* sel) | 9 | OFileView::OFileView( OFileSelector* sel) |
10 | : m_sel( sel ) | 10 | : m_sel( sel ) |
11 | { | 11 | { |
12 | } | 12 | } |
13 | OFileView::~OFileView() { | 13 | OFileView::~OFileView() { |
14 | } | 14 | } |
15 | void OFileView::fileSelected( const QString& s ) { | 15 | void OFileView::fileSelected( const QString& dir,const QString& file,const QString& extra ) { |
16 | m_sel->internFileSelected( s ); | 16 | m_sel->currentLister()->fileSelected( dir,file,extra ); |
17 | } | ||
18 | void OFileView::fileSelected( const DocLnk& s) { | ||
19 | m_sel->internFileSelected( s ); | ||
20 | } | 17 | } |
21 | void OFileView::contextMenu() { | 18 | void OFileView::contextMenu() { |
22 | m_sel->internContextMenu(); | 19 | m_sel->internContextMenu(); |
23 | } | 20 | } |
24 | void OFileView::changedDir( const QString& s) { | 21 | void OFileView::changedDir( const QString& s, const QString& file, const QString& extra) { |
25 | m_sel->internChangedDir( s ); | 22 | m_sel->currentLister()->changedDir( s, file,extra ); |
26 | } | ||
27 | void OFileView::changedDir( const QDir& d ) { | ||
28 | m_sel->internChangedDir( d ); | ||
29 | } | 23 | } |
30 | OFileSelector* OFileView::selector() const { | 24 | OFileSelector* OFileView::selector() const { |
31 | return m_sel; | 25 | return m_sel; |
32 | } | 26 | } |
33 | void OFileView::updateLine( const QString& str ) { | 27 | void OFileView::updateLine( const QString& str ) { |
34 | if (m_sel->m_shLne ) | 28 | if (m_sel->m_shLne ) |
35 | m_sel->m_edit->setText( str ); | 29 | m_sel->m_edit->setText( str ); |
36 | } | 30 | } |
diff --git a/libopie/ofileselector/ofileview.h b/libopie/ofileselector/ofileview.h index d7ea4a2..808587f 100644 --- a/libopie/ofileselector/ofileview.h +++ b/libopie/ofileselector/ofileview.h | |||
@@ -27,95 +27,114 @@ | |||
27 | */ | 27 | */ |
28 | 28 | ||
29 | #ifndef ofileview_h | 29 | #ifndef ofileview_h |
30 | #define ofileview_h | 30 | #define ofileview_h |
31 | 31 | ||
32 | #include <qobject.h> | 32 | #include <qobject.h> |
33 | #include <qwidget.h> | 33 | #include <qwidget.h> |
34 | #include <qpopupmenu.h> | 34 | #include <qpopupmenu.h> |
35 | 35 | ||
36 | class QFileInfo; | 36 | class QFileInfo; |
37 | class QDir; | 37 | class QDir; |
38 | class DocLnk; | 38 | class DocLnk; |
39 | 39 | ||
40 | /** | 40 | /** |
41 | * A OFileView is a specialised View for the | 41 | * A OFileView is a specialised View for the |
42 | * OFileSelector | 42 | * OFileSelector |
43 | * With a View you can chage the user visible | 43 | * With a View you can chage the user visible |
44 | * representation of a OFileLister | 44 | * representation of a OFileLister |
45 | * OFileView is just a basic interface which helps you to | 45 | * OFileView is just a basic interface which helps you to |
46 | * write new views | 46 | * write new views |
47 | */ | 47 | */ |
48 | class OFileSelector; | 48 | class OFileSelector; |
49 | class OFileView { | 49 | class OFileView { |
50 | public: | 50 | public: |
51 | OFileView( OFileSelector* ); | 51 | OFileView( OFileSelector* ); |
52 | OFileView(); | 52 | OFileView(); |
53 | virtual ~OFileView(); | 53 | virtual ~OFileView(); |
54 | 54 | ||
55 | virtual void clear() = 0; | 55 | virtual void clear() = 0; |
56 | virtual void addFile(const QPixmap&, | 56 | virtual void addFile(const QPixmap&, |
57 | const QString &mine, | 57 | const QString &mine, |
58 | QFileInfo *info, | 58 | QFileInfo *info, |
59 | const QString& extra = QString::null, | ||
59 | bool isSymlink = FALSE ) = 0; | 60 | bool isSymlink = FALSE ) = 0; |
60 | 61 | ||
61 | virtual void addFile(const QPixmap&, | 62 | virtual void addFile(const QPixmap&, |
62 | const QString& mine, const QString& dir, | 63 | const QString& mine, const QString& dir, |
63 | const QString& file, bool = FALSE ) = 0; | 64 | const QString& file, |
65 | const QString& extra = QString::null, | ||
66 | bool = FALSE ) = 0; | ||
64 | 67 | ||
65 | virtual void addDir (const QPixmap&, | 68 | virtual void addDir (const QPixmap&, |
66 | const QString &mine, | 69 | const QString &mine, |
67 | QFileInfo *info, | 70 | QFileInfo *info, |
71 | const QString& extra = QString::null, | ||
68 | bool isSymlink = FALSE ) = 0; | 72 | bool isSymlink = FALSE ) = 0; |
69 | virtual void addDir (const QPixmap&, | 73 | virtual void addDir (const QPixmap&, |
70 | const QString& mine, const QString& dir, | 74 | const QString& mine, const QString& dir, |
71 | const QString& file, bool = FALSE) = 0; | 75 | const QString& file, |
76 | const QString& extra = QString::null, | ||
77 | bool = FALSE) = 0; | ||
72 | 78 | ||
73 | virtual void addSymlink(const QPixmap&, | 79 | virtual void addSymlink(const QPixmap&, |
74 | const QString &mime, | 80 | const QString &mime, |
75 | QFileInfo *info, | 81 | QFileInfo *info, |
82 | const QString& extra = QString::null, | ||
76 | bool isSymlink = FALSE ) = 0; | 83 | bool isSymlink = FALSE ) = 0; |
77 | 84 | ||
78 | virtual void addSymlink(const QPixmap&, | 85 | virtual void addSymlink(const QPixmap&, |
79 | const QString& mine, | 86 | const QString& mine, |
80 | const QString& path, | 87 | const QString& path, |
81 | const QString& file, | 88 | const QString& file, |
89 | const QString& extra = QString::null, | ||
82 | bool isSymlink = FALSE ) = 0; | 90 | bool isSymlink = FALSE ) = 0; |
83 | 91 | ||
84 | virtual void cd(const QString &path ) = 0; | 92 | virtual void cd(const QString &path ) = 0; |
85 | virtual QWidget* widget() = 0; | 93 | virtual QWidget* widget() = 0; |
86 | 94 | ||
87 | virtual QString selectedName()const = 0; | 95 | virtual QString selectedName()const = 0; |
88 | virtual QStringList selectedNames()const = 0; | 96 | virtual QStringList selectedNames()const = 0; |
89 | virtual QString selectedPath()const = 0; | 97 | virtual QString selectedPath()const = 0; |
90 | virtual QStringList selectedPaths()const = 0; | 98 | virtual QStringList selectedPaths()const = 0; |
91 | virtual int fileCount() = 0; | 99 | virtual int fileCount() = 0; |
92 | virtual void sort() =0; | 100 | virtual void sort() =0; |
93 | 101 | ||
94 | /*signals:*/ | 102 | /*signals:*/ |
95 | protected: | 103 | protected: |
96 | 104 | ||
97 | void fileSelected(const QString &); | 105 | /** |
98 | void fileSelected(const DocLnk & ); | 106 | * @param dir The dir name |
99 | void contextMenu(); | 107 | * @param file The file name |
100 | void changedDir(const QString &); | 108 | * @param extra The extra information |
101 | void changedDir(const QDir & ); | 109 | */ |
110 | void fileSelected(const QString &dir, const QString& file, const QString& extra = QString::nulll); | ||
111 | void contextMenu(); | ||
112 | |||
113 | /** | ||
114 | * | ||
115 | * @param dir The dir name | ||
116 | * @param file The file name | ||
117 | * @param extra The extra informations | ||
118 | */ | ||
119 | void changedDir(const QString &dir, const QString& file, const QString& extra = QString::null); | ||
120 | void changedDir(const QDir & ); | ||
102 | 121 | ||
103 | /* updates the file name line of the FileSelector */ | 122 | /* updates the file name line of the FileSelector */ |
104 | void updateLine( const QString& ); | 123 | void updateLine( const QString& ); |
105 | OFileSelector* selector()const; | 124 | OFileSelector* selector()const; |
106 | 125 | ||
107 | private: | 126 | private: |
108 | OFileSelector* m_sel; | 127 | OFileSelector* m_sel; |
109 | }; | 128 | }; |
110 | 129 | ||
111 | class OFileViewFactory { | 130 | class OFileViewFactory { |
112 | public: | 131 | public: |
113 | OFileViewFactory() {} ; | 132 | OFileViewFactory() {} ; |
114 | virtual ~OFileViewFactory() = 0; | 133 | virtual ~OFileViewFactory() = 0; |
115 | 134 | ||
116 | OFileView* newView(QWidget *parent, const char *name ); | 135 | OFileView* newView(QWidget *parent, const char *name ); |
117 | QString name()const; | 136 | QString name()const; |
118 | }; | 137 | }; |
119 | 138 | ||
120 | 139 | ||
121 | #endif | 140 | #endif |
diff --git a/libopie/ofileselector/olister.cpp b/libopie/ofileselector/olister.cpp index b6b03cd..378c69d 100644 --- a/libopie/ofileselector/olister.cpp +++ b/libopie/ofileselector/olister.cpp | |||
@@ -1,106 +1,162 @@ | |||
1 | #include <qcombobox.h> | ||
2 | |||
1 | #include "olister.h" | 3 | #include "olister.h" |
2 | #include "ofileview.h" | 4 | #include "ofileview.h" |
3 | #include "opixmapprovider.h" | 5 | #include "opixmapprovider.h" |
4 | #include "ofileselector.h" | 6 | #include "ofileselector.h" |
5 | 7 | ||
6 | 8 | ||
7 | OLister::OLister( OFileSelector* view) | 9 | OLister::OLister( OFileSelector* view) |
8 | : m_view( view ) | 10 | : m_view( view ), m_acc( 0l ) |
9 | { | 11 | { |
10 | m_prov = new OPixmapProvider( view ); | 12 | m_prov = new OPixmapProvider( view ); |
11 | } | 13 | } |
12 | OLister::~OLister() { | 14 | OLister::~OLister() { |
13 | delete m_prov; | 15 | delete m_prov; |
14 | } | 16 | } |
15 | void OLister::setPixmapProvider( OPixmapProvider* prov ) { | 17 | void OLister::setPixmapProvider( OPixmapProvider* prov ) { |
16 | delete m_prov; | 18 | delete m_prov; |
17 | m_prov = prov; | 19 | m_prov = prov; |
18 | } | 20 | } |
19 | bool OLister::showFiles()const { | 21 | bool OLister::showFiles()const { |
20 | return m_view->showFiles(); | 22 | return m_view->showFiles(); |
21 | } | 23 | } |
22 | bool OLister::showDirs()const { | 24 | bool OLister::showDirs()const { |
23 | return m_view->showDirs(); | 25 | return m_view->showDirs(); |
24 | } | 26 | } |
25 | void OLister::addFile( const QString& mine, | 27 | void OLister::addFile( const QString& mine, |
26 | QFileInfo* info, | 28 | QFileInfo* info, |
29 | const QString& extra, | ||
27 | bool isSymlink ) { | 30 | bool isSymlink ) { |
28 | int t = isSymlink ? OPixmapProvider::File | OPixmapProvider::Symlink : | 31 | int t = isSymlink ? OPixmapProvider::File | OPixmapProvider::Symlink : |
29 | OPixmapProvider::File; | 32 | OPixmapProvider::File; |
30 | QPixmap pix = provider()->pixmap(t, mine, | 33 | QPixmap pix = provider()->pixmap(t, mine, |
31 | info); | 34 | info); |
32 | view()->currentView()->addFile( pix, | 35 | view()->currentView()->addFile( pix, |
33 | mine, | 36 | mine, |
34 | info, | 37 | info, |
38 | extra, | ||
35 | isSymlink ); | 39 | isSymlink ); |
36 | } | 40 | } |
37 | void OLister::addFile( const QString& mine, | 41 | void OLister::addFile( const QString& mine, |
38 | const QString& path, | 42 | const QString& path, |
39 | const QString& file, | 43 | const QString& file, |
44 | const QString& extra, | ||
40 | bool isSymlink ) { | 45 | bool isSymlink ) { |
41 | int t = isSymlink ? OPixmapProvider::File | OPixmapProvider::Symlink : | 46 | int t = isSymlink ? OPixmapProvider::File | OPixmapProvider::Symlink : |
42 | OPixmapProvider::File; | 47 | OPixmapProvider::File; |
43 | 48 | ||
44 | QPixmap pix = provider()->pixmap(t, mine, path, file ); | 49 | QPixmap pix = provider()->pixmap(t, mine, path, file ); |
45 | view()->currentView()->addFile( pix, | 50 | view()->currentView()->addFile( pix, |
46 | mine, | 51 | mine, |
47 | path, | 52 | path, |
48 | file, | 53 | file, |
54 | extra, | ||
49 | isSymlink ); | 55 | isSymlink ); |
50 | } | 56 | } |
51 | void OLister::addDir( const QString& mine, | 57 | void OLister::addDir( const QString& mine, |
52 | QFileInfo* info, | 58 | QFileInfo* info, |
59 | const QString& extra, | ||
53 | bool isSymlink ) { | 60 | bool isSymlink ) { |
54 | int t = isSymlink ? OPixmapProvider::Dir | OPixmapProvider::Symlink : | 61 | int t = isSymlink ? OPixmapProvider::Dir | OPixmapProvider::Symlink : |
55 | OPixmapProvider::Dir; | 62 | OPixmapProvider::Dir; |
56 | QPixmap pix = provider()->pixmap(t, mine, info ); | 63 | QPixmap pix = provider()->pixmap(t, mine, info ); |
57 | view()->currentView()->addDir( pix, | 64 | view()->currentView()->addDir( pix, |
58 | mine, | 65 | mine, |
59 | info, | 66 | info, |
67 | extra, | ||
60 | isSymlink ); | 68 | isSymlink ); |
61 | } | 69 | } |
62 | void OLister::addDir( const QString& mine, | 70 | void OLister::addDir( const QString& mine, |
63 | const QString& path, | 71 | const QString& path, |
64 | const QString& dir, | 72 | const QString& dir, |
73 | const QString& extra, | ||
65 | bool isSymlink ) { | 74 | bool isSymlink ) { |
66 | 75 | ||
67 | int t = isSymlink ? OPixmapProvider::Dir | OPixmapProvider::Symlink : | 76 | int t = isSymlink ? OPixmapProvider::Dir | OPixmapProvider::Symlink : |
68 | OPixmapProvider::Dir; | 77 | OPixmapProvider::Dir; |
69 | QPixmap pix = provider()->pixmap(t, mine, path, dir ); | 78 | QPixmap pix = provider()->pixmap(t, mine, path, dir ); |
70 | 79 | ||
71 | view()->currentView()->addDir( pix, | 80 | view()->currentView()->addDir( pix, |
72 | mine, | 81 | mine, |
73 | path, | 82 | path, |
74 | dir, | 83 | dir, |
84 | extra, | ||
75 | isSymlink ); | 85 | isSymlink ); |
76 | } | 86 | } |
77 | void OLister::addSymlink( const QString& mine, | 87 | void OLister::addSymlink( const QString& mine, |
78 | QFileInfo* info, | 88 | QFileInfo* info, |
89 | const QString& extra, | ||
79 | bool isSymlink ) { | 90 | bool isSymlink ) { |
80 | QPixmap pix = provider()->pixmap( OPixmapProvider::Symlink, mine, info ); | 91 | QPixmap pix = provider()->pixmap( OPixmapProvider::Symlink, mine, info ); |
81 | view()->currentView()->addSymlink( pix, | 92 | view()->currentView()->addSymlink( pix, |
82 | mine, | 93 | mine, |
83 | info, | 94 | info, |
95 | extra, | ||
84 | isSymlink ); | 96 | isSymlink ); |
85 | } | 97 | } |
86 | void OLister::addSymlink( const QString& mine, | 98 | void OLister::addSymlink( const QString& mine, |
87 | const QString& path, | 99 | const QString& path, |
88 | const QString& name, | 100 | const QString& name, |
101 | const QString& extra, | ||
89 | bool isSymlink ) { | 102 | bool isSymlink ) { |
90 | QPixmap pix = provider()->pixmap( OPixmapProvider::Symlink, mine, | 103 | QPixmap pix = provider()->pixmap( OPixmapProvider::Symlink, mine, |
91 | path, name ); | 104 | path, name ); |
92 | view()->currentView()->addSymlink( pix, | 105 | view()->currentView()->addSymlink( pix, |
93 | mine, | 106 | mine, |
94 | path, | 107 | path, |
95 | name, | 108 | name, |
109 | extra, | ||
96 | isSymlink ); | 110 | isSymlink ); |
97 | } | 111 | } |
98 | OFileSelector* OLister::view() { | 112 | OFileSelector* OLister::view() { |
99 | return m_view; | 113 | return m_view; |
100 | } | 114 | } |
101 | OPixmapProvider* OLister::provider() { | 115 | OPixmapProvider* OLister::provider() { |
102 | return m_prov; | 116 | return m_prov; |
103 | } | 117 | } |
104 | bool OLister::compliesMime( const QString& mime ) { | 118 | bool OLister::compliesMime( const QString& mime ) { |
105 | return view()->compliesMime( mime ); | 119 | return view()->compliesMime( mime ); |
106 | } | 120 | } |
121 | OListerCmbAccess* OLister::comboBox() { | ||
122 | if (!m_acc ) | ||
123 | m_acc = new OListerCmbAccess( view()->m_location ); | ||
124 | |||
125 | return m_acc; | ||
126 | } | ||
127 | |||
128 | |||
129 | OListerCmbAccess::OListerCmbAccess(QComboBox* box ) | ||
130 | : m_cmb( cmb ) | ||
131 | {} | ||
132 | OListerCmbAccess::~OListerCmbAccess() { | ||
133 | } | ||
134 | void OListerCmbAccess::clear() { | ||
135 | if ( m_cmb ) | ||
136 | m_cmb->clear(); | ||
137 | } | ||
138 | void OListerCmbAccess::setCurrentItem( const QString& add, bool FORCE_ADD) { | ||
139 | if ( !m_cmb ) return; | ||
140 | |||
141 | |||
142 | int c = m_cmb->count(); | ||
143 | for ( int i = 0; i < m_cmb->count(); i++ ) { | ||
144 | if ( m_cmb->text(i) == add ) { | ||
145 | bo->setCurrentItem( i ); | ||
146 | return; | ||
147 | } | ||
148 | } | ||
149 | m_cmb->insertItem(add ); | ||
150 | m_cmb->setCurrentItem( c ); | ||
151 | } | ||
152 | void OListerCmbAccess::insert( const QString& str ) { | ||
153 | if ( m_cmb ) | ||
154 | m_cmb->insertItem( str ); | ||
155 | } | ||
156 | QString OListerCmbAccess::currentText()const { | ||
157 | QString str; | ||
158 | if (m_cmb ) | ||
159 | str = m_cmb->currentText(); | ||
160 | |||
161 | return str; | ||
162 | } | ||
diff --git a/libopie/ofileselector/olister.h b/libopie/ofileselector/olister.h index 0885525..79d5409 100644 --- a/libopie/ofileselector/olister.h +++ b/libopie/ofileselector/olister.h | |||
@@ -1,64 +1,125 @@ | |||
1 | #ifndef OPIE_FILE_LISTER_H | 1 | #ifndef OPIE_FILE_LISTER_H |
2 | #define OPIE_FILE_LISTER_H | 2 | #define OPIE_FILE_LISTER_H |
3 | 3 | ||
4 | #include <qfileinfo.h> | 4 | #include <qfileinfo.h> |
5 | #include <qmap.h> | 5 | #include <qmap.h> |
6 | #include <qstring.h> | 6 | #include <qstring.h> |
7 | #include <qstringlist.h> | 7 | #include <qstringlist.h> |
8 | 8 | ||
9 | class QComboBox; | ||
9 | class OPixmapProvider; | 10 | class OPixmapProvider; |
10 | class OFileSelector; | 11 | class OFileSelector; |
12 | |||
13 | class OListerCmbAccess; | ||
11 | /** | 14 | /** |
12 | * lister is something like KIO but very | 15 | * lister is something like KIO but very |
13 | * very basic and currently only for | 16 | * very basic and currently only for |
14 | * populating our views. | 17 | * populating our views. |
15 | * This is a base class which needs to be implemented. | 18 | * This is a base class which needs to be implemented. |
16 | * @see OLocalLister for a filesystem based implementation | 19 | * @see OLocalLister for a filesystem based implementation |
17 | */ | 20 | */ |
21 | |||
18 | class OLister { | 22 | class OLister { |
19 | public: | 23 | public: |
20 | OLister( OFileSelector* ); | 24 | OLister( OFileSelector* ); |
21 | virtual ~OLister(); | 25 | virtual ~OLister(); |
22 | virtual void reparse(const QString& path) = 0; | 26 | virtual void reparse(const QString& path) = 0; |
23 | 27 | ||
24 | /** | 28 | /** |
25 | * return a list of available mimetypes | 29 | * return a list of available mimetypes |
26 | */ | 30 | */ |
27 | virtual QMap<QString, QStringList> mimeTypes( const QString& dir ) = 0; | 31 | virtual QMap<QString, QStringList> mimeTypes( const QString& dir ) = 0; |
28 | void setPixmapProvider( OPixmapProvider* ); | 32 | void setPixmapProvider( OPixmapProvider* ); |
29 | 33 | ||
34 | |||
35 | /* some way a slot */ | ||
36 | void fileSelected( const QString& dir, const QString& file, const QString& extra ) = 0; | ||
37 | void changeDir( const QString& dir, const QString& file, const QString& extra ) = 0; | ||
30 | protected: | 38 | protected: |
39 | /** | ||
40 | * I hate too big classes | ||
41 | * this is a way to group | ||
42 | * access to a ComboBox | ||
43 | * which might exist or | ||
44 | * not in a secure way | ||
45 | */ | ||
46 | OListerCmbAccess* comboBox(); | ||
47 | |||
31 | bool showFiles()const; | 48 | bool showFiles()const; |
32 | bool showDirs()const; | 49 | bool showDirs()const; |
33 | bool compliesMime( const QString& mime ); | 50 | bool compliesMime( const QString& mime ); |
34 | void addFile( const QString& mine, | 51 | void addFile( const QString& mine, |
35 | QFileInfo*, | 52 | QFileInfo*, |
53 | const QString& extra = QString::null, | ||
36 | bool isSymlink = FALSE ); | 54 | bool isSymlink = FALSE ); |
55 | |||
37 | void addFile( const QString& mine, | 56 | void addFile( const QString& mine, |
38 | const QString& path, | 57 | const QString& path, |
39 | const QString& file, | 58 | const QString& file, |
59 | const QString& extra = QString::null, | ||
40 | bool isSymlink = FALSE ); | 60 | bool isSymlink = FALSE ); |
41 | void addDir( const QString& mine, | 61 | void addDir( const QString& mine, |
42 | QFileInfo*, | 62 | QFileInfo*, |
43 | bool isSymlink = FALSE ); | 63 | bool isSymlink = FALSE ); |
44 | void addDir( const QString& mine, | 64 | void addDir( const QString& mine, |
45 | const QString& path, | 65 | const QString& path, |
46 | const QString& dir, | 66 | const QString& dir, |
67 | const QString& extra = QString::null, | ||
47 | bool isSymlink = FALSE ); | 68 | bool isSymlink = FALSE ); |
48 | void addSymlink( const QString& mine, | 69 | void addSymlink( const QString& mine, |
49 | QFileInfo* info, | 70 | QFileInfo* info, |
71 | const QString& extra = QString::null, | ||
50 | bool isSymlink = FALSE); | 72 | bool isSymlink = FALSE); |
51 | void addSymlink( const QString& mine, | 73 | void addSymlink( const QString& mine, |
52 | const QString& path, | 74 | const QString& path, |
53 | const QString& name, | 75 | const QString& name, |
76 | const QString& extra = QString::null, | ||
54 | bool isSymlink = FALSE ); | 77 | bool isSymlink = FALSE ); |
55 | OFileSelector* view(); | 78 | OFileSelector* view(); |
56 | OPixmapProvider* provider(); | 79 | OPixmapProvider* provider(); |
57 | private: | 80 | private: |
58 | OFileSelector* m_view; | 81 | OFileSelector* m_view; |
59 | OPixmapProvider* m_prov; | 82 | OPixmapProvider* m_prov; |
83 | OListerCmbAccess* m_acc; | ||
84 | |||
85 | class Private; | ||
86 | Private *d; | ||
87 | }; | ||
88 | |||
89 | class OListerCmbAccess { | ||
90 | friend class OLister; | ||
91 | public: | ||
92 | OListerCmbAccess( QComboBox* = 0l); | ||
93 | ~OListerCmbAccess(); | ||
94 | |||
95 | /** | ||
96 | * clears the combobox | ||
97 | */ | ||
98 | void clear(); | ||
99 | |||
100 | /** | ||
101 | * set's @param add to be the current Item | ||
102 | * if the item is not present it'll be removed | ||
103 | */ | ||
104 | void setCurrentItem( const QString& add, bool FORECE_ADD = TRUE ); | ||
105 | |||
106 | /** | ||
107 | * inserts the the String at | ||
108 | * a non predictable position... The position is determined | ||
109 | * by the QComboBox code | ||
110 | */ | ||
111 | void insert( const QString& ); | ||
112 | |||
113 | /** | ||
114 | * | ||
115 | */ | ||
116 | QString currentText()const; | ||
60 | 117 | ||
118 | private: | ||
119 | class Private; | ||
120 | Private* d; | ||
121 | QComboBox* m_cmb; | ||
61 | 122 | ||
62 | }; | 123 | }; |
63 | 124 | ||
64 | #endif | 125 | #endif |
diff --git a/libopie/ofileselector/olocallister.cpp b/libopie/ofileselector/olocallister.cpp index 6ffcf1e..2306b14 100644 --- a/libopie/ofileselector/olocallister.cpp +++ b/libopie/ofileselector/olocallister.cpp | |||
@@ -14,65 +14,66 @@ OLocalLister::OLocalLister( OFileSelector* file ) | |||
14 | OLocalLister::~OLocalLister() { | 14 | OLocalLister::~OLocalLister() { |
15 | } | 15 | } |
16 | 16 | ||
17 | QMap<QString, QStringList> OLocalLister::mimeTypes( const QString& curDir ) { | 17 | QMap<QString, QStringList> OLocalLister::mimeTypes( const QString& curDir ) { |
18 | QMap<QString, QStringList> mimes; | 18 | QMap<QString, QStringList> mimes; |
19 | 19 | ||
20 | // let's find possible mimetypes | 20 | // let's find possible mimetypes |
21 | QDir dir( curDir ); | 21 | QDir dir( curDir ); |
22 | dir.setFilter( QDir::Files | QDir::Readable ); | 22 | dir.setFilter( QDir::Files | QDir::Readable ); |
23 | dir.setSorting( QDir::Size ); | 23 | dir.setSorting( QDir::Size ); |
24 | 24 | ||
25 | const QFileInfoList *list = dir.entryInfoList(); | 25 | const QFileInfoList *list = dir.entryInfoList(); |
26 | QFileInfoListIterator it( *list ); | 26 | QFileInfoListIterator it( *list ); |
27 | QFileInfo *fi; | 27 | QFileInfo *fi; |
28 | 28 | ||
29 | while( (fi=it.current() ) ) { | 29 | while( (fi=it.current() ) ) { |
30 | /* skip .desktop */ | 30 | /* skip .desktop */ |
31 | if( fi->extension() == QString::fromLatin1("desktop") ){ | 31 | if( fi->extension() == QString::fromLatin1("desktop") ){ |
32 | ++it; | 32 | ++it; |
33 | continue; | 33 | continue; |
34 | } | 34 | } |
35 | MimeType type( fi->absFilePath() ); | 35 | MimeType type( fi->absFilePath() ); |
36 | 36 | ||
37 | if( !mimes.contains( type.id() ) ){ | 37 | if( !mimes.contains( type.id() ) ){ |
38 | mimes.insert( type.id(), type.id() ); | 38 | mimes.insert( type.id(), type.id() ); |
39 | } | 39 | } |
40 | 40 | ||
41 | ++it; | 41 | ++it; |
42 | } | 42 | } |
43 | 43 | ||
44 | return mimes; | 44 | return mimes; |
45 | } | 45 | } |
46 | /* FIXME mimecheck | 46 | /** |
47 | * FIXME mimecheck | ||
47 | * use mime check for that | 48 | * use mime check for that |
48 | * filter dirs | 49 | * filter dirs |
49 | * filter filters | 50 | * filter filters |
50 | * filter files | 51 | * filter files |
51 | * filter mimetypes | 52 | * filter mimetypes |
52 | */ | 53 | */ |
53 | void OLocalLister::reparse( const QString& path ) { | 54 | void OLocalLister::reparse( const QString& path ) { |
54 | QString currentMimeType; | 55 | QString currentMimeType; |
55 | QDir dir( path ); | 56 | QDir dir( path ); |
56 | 57 | ||
57 | dir.setSorting( view()->sorting() ); | 58 | dir.setSorting( view()->sorting() ); |
58 | dir.setFilter( view()->filter() ); | 59 | dir.setFilter( view()->filter() ); |
59 | 60 | ||
60 | 61 | ||
61 | const QFileInfoList *list = dir.entryInfoList(); | 62 | const QFileInfoList *list = dir.entryInfoList(); |
62 | QFileInfoListIterator it( *list ); | 63 | QFileInfoListIterator it( *list ); |
63 | QFileInfo *fi; | 64 | QFileInfo *fi; |
64 | 65 | ||
65 | while( (fi=it.current() ) ){ | 66 | while( (fi=it.current() ) ){ |
66 | 67 | ||
67 | if( fi->fileName() == QString::fromLatin1("..") || | 68 | if( fi->fileName() == QString::fromLatin1("..") || |
68 | fi->fileName() == QString::fromLatin1(".") ){ | 69 | fi->fileName() == QString::fromLatin1(".") ){ |
69 | ++it; | 70 | ++it; |
70 | continue; | 71 | continue; |
71 | } | 72 | } |
72 | if( fi->isSymLink() ){ | 73 | if( fi->isSymLink() ){ |
73 | QString file = fi->dirPath( true ) + "/" + fi->readLink(); | 74 | QString file = fi->dirPath( true ) + "/" + fi->readLink(); |
74 | /* | 75 | /* |
75 | * 5 tries to prevent dos attack | 76 | * 5 tries to prevent dos attack |
76 | */ | 77 | */ |
77 | for( int i = 0; i<=4; i++) { | 78 | for( int i = 0; i<=4; i++) { |
78 | QFileInfo info( file ); | 79 | QFileInfo info( file ); |