-rw-r--r-- | noncore/unsupported/filebrowser/filebrowser.cpp | 39 | ||||
-rw-r--r-- | noncore/unsupported/filebrowser/filebrowser.h | 6 |
2 files changed, 39 insertions, 6 deletions
diff --git a/noncore/unsupported/filebrowser/filebrowser.cpp b/noncore/unsupported/filebrowser/filebrowser.cpp index 41e7634..d9aabfd 100644 --- a/noncore/unsupported/filebrowser/filebrowser.cpp +++ b/noncore/unsupported/filebrowser/filebrowser.cpp | |||
@@ -175,8 +175,10 @@ FileView::FileView( const QString & dir, QWidget * parent, | |||
175 | addColumn( "Date" ); | 175 | addColumn( "Date" ); |
176 | addColumn( "Size" ); | 176 | addColumn( "Size" ); |
177 | addColumn( "Type" ); | 177 | addColumn( "Type" ); |
178 | 178 | ||
179 | showingHidden=FALSE; | ||
180 | |||
179 | setMultiSelection( TRUE ); | 181 | setMultiSelection( TRUE ); |
180 | header()->hide(); | 182 | header()->hide(); |
181 | 183 | ||
182 | setColumnWidthMode( 0, Manual ); | 184 | setColumnWidthMode( 0, Manual ); |
@@ -205,8 +207,11 @@ void FileView::resizeEvent( QResizeEvent *e ) | |||
205 | } | 207 | } |
206 | 208 | ||
207 | void FileView::updateDir() | 209 | void FileView::updateDir() |
208 | { | 210 | { |
211 | setCaption( "Boogie on boogieboy"); | ||
212 | //qDebug("Caption should be "+currentDir); | ||
213 | |||
209 | generateDir( currentDir ); | 214 | generateDir( currentDir ); |
210 | } | 215 | } |
211 | 216 | ||
212 | void FileView::setDir( const QString & dir ) | 217 | void FileView::setDir( const QString & dir ) |
@@ -227,26 +232,29 @@ void FileView::generateDir( const QString & dir ) | |||
227 | if( d.exists() && !d.isReadable() ) return; | 232 | if( d.exists() && !d.isReadable() ) return; |
228 | 233 | ||
229 | currentDir = d.canonicalPath(); | 234 | currentDir = d.canonicalPath(); |
230 | 235 | ||
236 | if( !showingHidden) | ||
231 | d.setFilter( QDir::Dirs | QDir::Files ); | 237 | d.setFilter( QDir::Dirs | QDir::Files ); |
232 | d.setSorting( QDir::Name | QDir::DirsFirst | QDir::IgnoreCase | | 238 | else |
233 | QDir::Reversed ); | 239 | d.setFilter( QDir::Dirs | QDir::Files |QDir::Hidden | QDir::All); |
240 | |||
241 | d.setSorting( QDir::Name | QDir::DirsFirst | QDir::IgnoreCase | QDir::Reversed ); | ||
242 | |||
234 | 243 | ||
235 | const QFileInfoList * list = d.entryInfoList(); | 244 | const QFileInfoList * list = d.entryInfoList(); |
236 | QFileInfoListIterator it( *list ); | 245 | QFileInfoListIterator it( *list ); |
237 | QFileInfo *fi; | 246 | QFileInfo *fi; |
238 | 247 | ||
239 | clear(); | 248 | clear(); |
240 | while( (fi = it.current()) ){ | 249 | while( (fi = it.current()) ){ |
241 | if( (fi->fileName() == ".") || (fi->fileName() == "..") ){ | 250 | if( (fi->fileName() == ".") || (fi->fileName() == "..") ){ |
242 | ++it; | 251 | ++it; |
243 | continue; | 252 | continue; |
244 | } | 253 | } |
245 | (void) new FileItem( (QListView *) this, *fi ); | 254 | (void) new FileItem( (QListView *) this, *fi ); |
246 | ++it; | 255 | ++it; |
247 | } | 256 | } |
248 | |||
249 | emit dirChanged(); | 257 | emit dirChanged(); |
250 | } | 258 | } |
251 | 259 | ||
252 | void FileView::rename() | 260 | void FileView::rename() |
@@ -654,13 +662,14 @@ void FileView::showFileMenu() | |||
654 | m->insertItem( tr( "Rename" ), this, SLOT( rename() ) ); | 662 | m->insertItem( tr( "Rename" ), this, SLOT( rename() ) ); |
655 | m->insertItem( Resource::loadPixmap("cut"), | 663 | m->insertItem( Resource::loadPixmap("cut"), |
656 | tr( "Cut" ), this, SLOT( cut() ) ); | 664 | tr( "Cut" ), this, SLOT( cut() ) ); |
657 | m->insertItem( Resource::loadPixmap("copy"), | 665 | m->insertItem( Resource::loadPixmap("copy"), |
666 | |||
658 | tr( "Copy" ), this, SLOT( copy() ) ); | 667 | tr( "Copy" ), this, SLOT( copy() ) ); |
659 | m->insertItem( Resource::loadPixmap("paste"), | 668 | m->insertItem( Resource::loadPixmap("paste"), |
660 | tr( "Paste" ), this, SLOT( paste() ) ); | 669 | tr( "Paste" ), this, SLOT( paste() ) ); |
661 | m->insertItem( tr( "Change Permissions" ), this, SLOT( chPerm() ) ); | 670 | m->insertItem( tr( "Change Permissions" ), this, SLOT( chPerm() ) ); |
662 | m->insertItem( tr( "Delete" ), this, SLOT( del() ) ); | 671 | m->insertItem(Resource::loadPixmap( "close" ), tr( "Delete" ), this, SLOT( del() ) ); |
663 | m->insertSeparator(); | 672 | m->insertSeparator(); |
664 | m->insertItem( tr( "Select all" ), this, SLOT( selectAll() ) ); | 673 | m->insertItem( tr( "Select all" ), this, SLOT( selectAll() ) ); |
665 | m->insertItem( tr( "Deselect all" ), this, SLOT( deselectAll() ) ); | 674 | m->insertItem( tr( "Deselect all" ), this, SLOT( deselectAll() ) ); |
666 | m->popup( QCursor::pos() ); | 675 | m->popup( QCursor::pos() ); |
@@ -710,8 +719,12 @@ void FileBrowser::init(const QString & dir) | |||
710 | sortMenu->insertItem( tr( "by Date "), this, SLOT( sortDate() ) ); | 719 | sortMenu->insertItem( tr( "by Date "), this, SLOT( sortDate() ) ); |
711 | sortMenu->insertItem( tr( "by Type "), this, SLOT( sortType() ) ); | 720 | sortMenu->insertItem( tr( "by Type "), this, SLOT( sortType() ) ); |
712 | sortMenu->insertSeparator(); | 721 | sortMenu->insertSeparator(); |
713 | sortMenu->insertItem( tr( "Ascending" ), this, SLOT( updateSorting() ) ); | 722 | sortMenu->insertItem( tr( "Ascending" ), this, SLOT( updateSorting() ) ); |
723 | sortMenu->insertSeparator(); | ||
724 | sortMenu->insertItem( tr( "Show Hidden "), this, SLOT( showHidden() ) ); | ||
725 | fileView->showingHidden=FALSE; | ||
726 | |||
714 | sortMenu->setItemChecked( sortMenu->idAt( 5 ), TRUE ); | 727 | sortMenu->setItemChecked( sortMenu->idAt( 5 ), TRUE ); |
715 | sortMenu->setItemChecked( sortMenu->idAt( 0 ), TRUE ); | 728 | sortMenu->setItemChecked( sortMenu->idAt( 0 ), TRUE ); |
716 | 729 | ||
717 | toolBar = new QPEToolBar( this ); | 730 | toolBar = new QPEToolBar( this ); |
@@ -746,8 +759,9 @@ void FileBrowser::init(const QString & dir) | |||
746 | QString::null, 0, this, 0 ); | 759 | QString::null, 0, this, 0 ); |
747 | connect( pasteAction, SIGNAL( activated() ), fileView, SLOT( paste() ) ); | 760 | connect( pasteAction, SIGNAL( activated() ), fileView, SLOT( paste() ) ); |
748 | pasteAction->addTo( toolBar ); | 761 | pasteAction->addTo( toolBar ); |
749 | 762 | ||
763 | // dirLabel = new QLabel(this, "DirLabel"); | ||
750 | 764 | ||
751 | connect( fileView, SIGNAL( dirChanged() ), SLOT( updateDirMenu() ) ); | 765 | connect( fileView, SIGNAL( dirChanged() ), SLOT( updateDirMenu() ) ); |
752 | updateDirMenu(); | 766 | updateDirMenu(); |
753 | 767 | ||
@@ -763,8 +777,12 @@ void FileBrowser::pcmciaMessage( const QCString &msg, const QByteArray &) | |||
763 | fileView->updateDir(); | 777 | fileView->updateDir(); |
764 | } | 778 | } |
765 | } | 779 | } |
766 | 780 | ||
781 | void FileBrowser::changeCaption(const QString & dir) { | ||
782 | setCaption( dir); | ||
783 | } | ||
784 | |||
767 | void FileBrowser::dirSelected( int id ) | 785 | void FileBrowser::dirSelected( int id ) |
768 | { | 786 | { |
769 | int i = 0, j; | 787 | int i = 0, j; |
770 | QString dir; | 788 | QString dir; |
@@ -853,8 +871,19 @@ void FileBrowser::updateSorting() | |||
853 | else | 871 | else |
854 | sortType(); | 872 | sortType(); |
855 | } | 873 | } |
856 | 874 | ||
875 | void FileBrowser::showHidden() { | ||
876 | if(! fileView->showingHidden) { | ||
877 | fileView->showingHidden=TRUE; | ||
878 | sortMenu->setItemChecked( sortMenu->idAt( 7),TRUE); | ||
879 | } else { | ||
880 | fileView->showingHidden=FALSE; | ||
881 | sortMenu->setItemChecked( sortMenu->idAt( 7),FALSE); | ||
882 | } | ||
883 | fileView->updateDir(); | ||
884 | } | ||
885 | |||
857 | void FileView::chPerm() { | 886 | void FileView::chPerm() { |
858 | FileItem * i; | 887 | FileItem * i; |
859 | QStringList fl; | 888 | QStringList fl; |
860 | QString cmd; | 889 | QString cmd; |
diff --git a/noncore/unsupported/filebrowser/filebrowser.h b/noncore/unsupported/filebrowser/filebrowser.h index c214dbe..54856a0 100644 --- a/noncore/unsupported/filebrowser/filebrowser.h +++ b/noncore/unsupported/filebrowser/filebrowser.h | |||
@@ -25,9 +25,9 @@ | |||
25 | #include <qfileinfo.h> | 25 | #include <qfileinfo.h> |
26 | #include <qaction.h> | 26 | #include <qaction.h> |
27 | #include <qtimer.h> | 27 | #include <qtimer.h> |
28 | #include <qstringlist.h> | 28 | #include <qstringlist.h> |
29 | 29 | class QLabel; | |
30 | class InlineEdit; | 30 | class InlineEdit; |
31 | 31 | ||
32 | class FileItem : public QListViewItem | 32 | class FileItem : public QListViewItem |
33 | { | 33 | { |
@@ -57,8 +57,9 @@ public: | |||
57 | const char * name = 0 ); | 57 | const char * name = 0 ); |
58 | void setDir( const QString & dir ); | 58 | void setDir( const QString & dir ); |
59 | QString cd(){ return currentDir; } | 59 | QString cd(){ return currentDir; } |
60 | QStringList history() const { return dirHistory; } | 60 | QStringList history() const { return dirHistory; } |
61 | bool showingHidden; | ||
61 | 62 | ||
62 | public slots: | 63 | public slots: |
63 | void updateDir(); | 64 | void updateDir(); |
64 | void parentDir(); | 65 | void parentDir(); |
@@ -113,8 +114,10 @@ public: | |||
113 | FileBrowser( QWidget * parent = 0, | 114 | FileBrowser( QWidget * parent = 0, |
114 | const char * name = 0, WFlags f = 0 ); | 115 | const char * name = 0, WFlags f = 0 ); |
115 | FileBrowser( const QString & dir, QWidget * parent = 0, | 116 | FileBrowser( const QString & dir, QWidget * parent = 0, |
116 | const char * name = 0, WFlags f = 0 ); | 117 | const char * name = 0, WFlags f = 0 ); |
118 | public slots: | ||
119 | void changeCaption(const QString &); | ||
117 | private: | 120 | private: |
118 | void init(const QString & dir); | 121 | void init(const QString & dir); |
119 | QString fileToCopy; | 122 | QString fileToCopy; |
120 | QPopupMenu * dirMenu, * sortMenu; | 123 | QPopupMenu * dirMenu, * sortMenu; |
@@ -135,7 +138,8 @@ private slots: | |||
135 | void updateSorting(); | 138 | void updateSorting(); |
136 | 139 | ||
137 | void updateDirMenu(); | 140 | void updateDirMenu(); |
138 | void dirSelected( int id ); | 141 | void dirSelected( int id ); |
142 | void showHidden(); | ||
139 | }; | 143 | }; |
140 | 144 | ||
141 | #endif | 145 | #endif |