-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 | |||
@@ -155,118 +155,126 @@ bool FileItem::rename( const QString & name ) | |||
155 | oldpath = fileInfo.filePath(); | 155 | oldpath = fileInfo.filePath(); |
156 | newpath = fileInfo.dirPath() + "/" + name; | 156 | newpath = fileInfo.dirPath() + "/" + name; |
157 | 157 | ||
158 | if ( ::rename( (const char *) oldpath, (const char *) newpath ) != 0 ) | 158 | if ( ::rename( (const char *) oldpath, (const char *) newpath ) != 0 ) |
159 | return FALSE; | 159 | return FALSE; |
160 | else | 160 | else |
161 | return TRUE; | 161 | return TRUE; |
162 | } | 162 | } |
163 | 163 | ||
164 | // | 164 | // |
165 | // FileView | 165 | // FileView |
166 | // | 166 | // |
167 | FileView::FileView( const QString & dir, QWidget * parent, | 167 | FileView::FileView( const QString & dir, QWidget * parent, |
168 | const char * name ) | 168 | const char * name ) |
169 | : QListView( parent, name ), | 169 | : QListView( parent, name ), |
170 | menuTimer( this ), | 170 | menuTimer( this ), |
171 | le( NULL ), | 171 | le( NULL ), |
172 | itemToRename( NULL ) | 172 | itemToRename( NULL ) |
173 | { | 173 | { |
174 | addColumn( "Name" ); | 174 | addColumn( "Name" ); |
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 ); |
183 | setColumnWidthMode( 3, Manual ); | 185 | setColumnWidthMode( 3, Manual ); |
184 | 186 | ||
185 | // right align yize column | 187 | // right align yize column |
186 | setColumnAlignment( 1, AlignRight ); | 188 | setColumnAlignment( 1, AlignRight ); |
187 | 189 | ||
188 | generateDir( dir ); | 190 | generateDir( dir ); |
189 | 191 | ||
190 | connect( this, SIGNAL( clicked( QListViewItem * )), | 192 | connect( this, SIGNAL( clicked( QListViewItem * )), |
191 | SLOT( itemClicked( QListViewItem * )) ); | 193 | SLOT( itemClicked( QListViewItem * )) ); |
192 | connect( this, SIGNAL( doubleClicked( QListViewItem * )), | 194 | connect( this, SIGNAL( doubleClicked( QListViewItem * )), |
193 | SLOT( itemDblClicked( QListViewItem * )) ); | 195 | SLOT( itemDblClicked( QListViewItem * )) ); |
194 | connect( this, SIGNAL( selectionChanged() ), SLOT( cancelMenuTimer() ) ); | 196 | connect( this, SIGNAL( selectionChanged() ), SLOT( cancelMenuTimer() ) ); |
195 | connect( &menuTimer, SIGNAL( timeout() ), SLOT( showFileMenu() ) ); | 197 | connect( &menuTimer, SIGNAL( timeout() ), SLOT( showFileMenu() ) ); |
196 | } | 198 | } |
197 | 199 | ||
198 | void FileView::resizeEvent( QResizeEvent *e ) | 200 | void FileView::resizeEvent( QResizeEvent *e ) |
199 | { | 201 | { |
200 | setColumnWidth( 0, width() - 2 * lineWidth() - 20 - columnWidth( 1 ) - columnWidth( 2 ) ); | 202 | setColumnWidth( 0, width() - 2 * lineWidth() - 20 - columnWidth( 1 ) - columnWidth( 2 ) ); |
201 | 203 | ||
202 | // hide type column, we use it for "sort by type" only | 204 | // hide type column, we use it for "sort by type" only |
203 | setColumnWidth( 3, 0 ); | 205 | setColumnWidth( 3, 0 ); |
204 | QListView::resizeEvent( e ); | 206 | QListView::resizeEvent( 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 ) |
213 | { | 218 | { |
214 | if ( dir.startsWith( "/dev" ) ) { | 219 | if ( dir.startsWith( "/dev" ) ) { |
215 | QMessageBox::warning( this, tr( "File Manager" ), | 220 | QMessageBox::warning( this, tr( "File Manager" ), |
216 | tr( "Can't show /dev/ directory." ), tr( "&Ok" ) ); | 221 | tr( "Can't show /dev/ directory." ), tr( "&Ok" ) ); |
217 | return; | 222 | return; |
218 | } | 223 | } |
219 | dirHistory += currentDir; | 224 | dirHistory += currentDir; |
220 | generateDir( dir ); | 225 | generateDir( dir ); |
221 | } | 226 | } |
222 | 227 | ||
223 | void FileView::generateDir( const QString & dir ) | 228 | void FileView::generateDir( const QString & dir ) |
224 | { | 229 | { |
225 | QDir d( dir ); | 230 | QDir d( dir ); |
226 | 231 | ||
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() |
253 | { | 261 | { |
254 | itemToRename = (FileItem *) currentItem(); | 262 | itemToRename = (FileItem *) currentItem(); |
255 | const QPixmap * pm; | 263 | const QPixmap * pm; |
256 | int pmw; | 264 | int pmw; |
257 | 265 | ||
258 | if( itemToRename == NULL ) return; | 266 | if( itemToRename == NULL ) return; |
259 | 267 | ||
260 | if( ( pm = itemToRename->pixmap( 0 ) ) == NULL ) | 268 | if( ( pm = itemToRename->pixmap( 0 ) ) == NULL ) |
261 | pmw = 0; | 269 | pmw = 0; |
262 | else | 270 | else |
263 | pmw = pm->width(); | 271 | pmw = pm->width(); |
264 | 272 | ||
265 | ensureItemVisible( itemToRename ); | 273 | ensureItemVisible( itemToRename ); |
266 | horizontalScrollBar()->setValue( 0 ); | 274 | horizontalScrollBar()->setValue( 0 ); |
267 | horizontalScrollBar()->setEnabled( FALSE ); | 275 | horizontalScrollBar()->setEnabled( FALSE ); |
268 | verticalScrollBar()->setEnabled( FALSE ); | 276 | verticalScrollBar()->setEnabled( FALSE ); |
269 | 277 | ||
270 | selected = isSelected( itemToRename ); | 278 | selected = isSelected( itemToRename ); |
271 | setSelected( itemToRename, FALSE ); | 279 | setSelected( itemToRename, FALSE ); |
272 | 280 | ||
@@ -634,53 +642,54 @@ void FileView::showFileMenu() | |||
634 | if ( !i->isDir() ) { | 642 | if ( !i->isDir() ) { |
635 | m->insertItem( tr( "Add to Documents" ), this, SLOT( addToDocuments() ) ); | 643 | m->insertItem( tr( "Add to Documents" ), this, SLOT( addToDocuments() ) ); |
636 | m->insertSeparator(); | 644 | m->insertSeparator(); |
637 | } | 645 | } |
638 | 646 | ||
639 | MimeType mt(i->getFilePath()); | 647 | MimeType mt(i->getFilePath()); |
640 | const AppLnk* app = mt.application(); | 648 | const AppLnk* app = mt.application(); |
641 | 649 | ||
642 | if ( !i->isDir() ) { | 650 | if ( !i->isDir() ) { |
643 | if ( app ) | 651 | if ( app ) |
644 | m->insertItem( app->pixmap(), tr( "Open in " + app->name() ), this, SLOT( run() ) ); | 652 | m->insertItem( app->pixmap(), tr( "Open in " + app->name() ), this, SLOT( run() ) ); |
645 | else if( i->isExecutable() ) | 653 | else if( i->isExecutable() ) |
646 | m->insertItem( Resource::loadPixmap( i->text( 0 ) ), tr( "Run" ), this, SLOT( run() ) ); | 654 | m->insertItem( Resource::loadPixmap( i->text( 0 ) ), tr( "Run" ), this, SLOT( run() ) ); |
647 | 655 | ||
648 | m->insertItem( Resource::loadPixmap( "txt" ), tr( "View as text" ), | 656 | m->insertItem( Resource::loadPixmap( "txt" ), tr( "View as text" ), |
649 | this, SLOT( viewAsText() ) ); | 657 | this, SLOT( viewAsText() ) ); |
650 | 658 | ||
651 | m->insertSeparator(); | 659 | m->insertSeparator(); |
652 | } | 660 | } |
653 | 661 | ||
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() ); |
667 | } | 676 | } |
668 | 677 | ||
669 | // | 678 | // |
670 | // FileBrowser | 679 | // FileBrowser |
671 | // | 680 | // |
672 | 681 | ||
673 | FileBrowser::FileBrowser( QWidget * parent, | 682 | FileBrowser::FileBrowser( QWidget * parent, |
674 | const char * name, WFlags f ) : | 683 | const char * name, WFlags f ) : |
675 | QMainWindow( parent, name, f ) | 684 | QMainWindow( parent, name, f ) |
676 | { | 685 | { |
677 | init( QDir::current().canonicalPath() ); | 686 | init( QDir::current().canonicalPath() ); |
678 | } | 687 | } |
679 | 688 | ||
680 | FileBrowser::FileBrowser( const QString & dir, QWidget * parent, | 689 | FileBrowser::FileBrowser( const QString & dir, QWidget * parent, |
681 | const char * name, WFlags f ) : | 690 | const char * name, WFlags f ) : |
682 | QMainWindow( parent, name, f ) | 691 | QMainWindow( parent, name, f ) |
683 | { | 692 | { |
684 | init( dir ); | 693 | init( dir ); |
685 | } | 694 | } |
686 | 695 | ||
@@ -690,101 +699,110 @@ void FileBrowser::init(const QString & dir) | |||
690 | setIcon( Resource::loadPixmap( "filebrowser_icon" ) ); | 699 | setIcon( Resource::loadPixmap( "filebrowser_icon" ) ); |
691 | 700 | ||
692 | fileView = new FileView( dir, this ); | 701 | fileView = new FileView( dir, this ); |
693 | fileView->setAllColumnsShowFocus( TRUE ); | 702 | fileView->setAllColumnsShowFocus( TRUE ); |
694 | 703 | ||
695 | setCentralWidget( fileView ); | 704 | setCentralWidget( fileView ); |
696 | setToolBarsMovable( FALSE ); | 705 | setToolBarsMovable( FALSE ); |
697 | 706 | ||
698 | QPEToolBar* toolBar = new QPEToolBar( this ); | 707 | QPEToolBar* toolBar = new QPEToolBar( this ); |
699 | toolBar->setHorizontalStretchable( TRUE ); | 708 | toolBar->setHorizontalStretchable( TRUE ); |
700 | 709 | ||
701 | QPEMenuBar* menuBar = new QPEMenuBar( toolBar ); | 710 | QPEMenuBar* menuBar = new QPEMenuBar( toolBar ); |
702 | 711 | ||
703 | dirMenu = new QPopupMenu( this ); | 712 | dirMenu = new QPopupMenu( this ); |
704 | menuBar->insertItem( tr( "Dir" ), dirMenu ); | 713 | menuBar->insertItem( tr( "Dir" ), dirMenu ); |
705 | 714 | ||
706 | sortMenu = new QPopupMenu( this ); | 715 | sortMenu = new QPopupMenu( this ); |
707 | menuBar->insertItem( tr( "Sort" ), sortMenu ); | 716 | menuBar->insertItem( tr( "Sort" ), sortMenu ); |
708 | sortMenu->insertItem( tr( "by Name "), this, SLOT( sortName() ) ); | 717 | sortMenu->insertItem( tr( "by Name "), this, SLOT( sortName() ) ); |
709 | sortMenu->insertItem( tr( "by Size "), this, SLOT( sortSize() ) ); | 718 | sortMenu->insertItem( tr( "by Size "), this, SLOT( sortSize() ) ); |
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 ); |
718 | 731 | ||
719 | lastAction = new QAction( tr("Previous dir"), Resource::loadIconSet( "back" ), | 732 | lastAction = new QAction( tr("Previous dir"), Resource::loadIconSet( "back" ), |
720 | QString::null, 0, this, 0 ); | 733 | QString::null, 0, this, 0 ); |
721 | connect( lastAction, SIGNAL( activated() ), fileView, SLOT( lastDir() ) ); | 734 | connect( lastAction, SIGNAL( activated() ), fileView, SLOT( lastDir() ) ); |
722 | lastAction->addTo( toolBar ); | 735 | lastAction->addTo( toolBar ); |
723 | lastAction->setEnabled( FALSE ); | 736 | lastAction->setEnabled( FALSE ); |
724 | 737 | ||
725 | upAction = new QAction( tr("Parent dir"), Resource::loadIconSet( "up" ), | 738 | upAction = new QAction( tr("Parent dir"), Resource::loadIconSet( "up" ), |
726 | QString::null, 0, this, 0 ); | 739 | QString::null, 0, this, 0 ); |
727 | connect( upAction, SIGNAL( activated() ), fileView, SLOT( parentDir() ) ); | 740 | connect( upAction, SIGNAL( activated() ), fileView, SLOT( parentDir() ) ); |
728 | upAction->addTo( toolBar ); | 741 | upAction->addTo( toolBar ); |
729 | 742 | ||
730 | QAction *a = new QAction( tr("New folder"), Resource::loadPixmap( "newfolder" ), | 743 | QAction *a = new QAction( tr("New folder"), Resource::loadPixmap( "newfolder" ), |
731 | QString::null, 0, this, 0 ); | 744 | QString::null, 0, this, 0 ); |
732 | connect( a, SIGNAL( activated() ), fileView, SLOT( newFolder() ) ); | 745 | connect( a, SIGNAL( activated() ), fileView, SLOT( newFolder() ) ); |
733 | a->addTo( toolBar ); | 746 | a->addTo( toolBar ); |
734 | 747 | ||
735 | a = new QAction( tr("Cut"), Resource::loadPixmap( "cut" ), | 748 | a = new QAction( tr("Cut"), Resource::loadPixmap( "cut" ), |
736 | QString::null, 0, this, 0 ); | 749 | QString::null, 0, this, 0 ); |
737 | connect( a, SIGNAL( activated() ), fileView, SLOT( cut() ) ); | 750 | connect( a, SIGNAL( activated() ), fileView, SLOT( cut() ) ); |
738 | a->addTo( toolBar ); | 751 | a->addTo( toolBar ); |
739 | 752 | ||
740 | a = new QAction( tr("Copy"), Resource::loadPixmap( "copy" ), | 753 | a = new QAction( tr("Copy"), Resource::loadPixmap( "copy" ), |
741 | QString::null, 0, this, 0 ); | 754 | QString::null, 0, this, 0 ); |
742 | connect( a, SIGNAL( activated() ), fileView, SLOT( copy() ) ); | 755 | connect( a, SIGNAL( activated() ), fileView, SLOT( copy() ) ); |
743 | a->addTo( toolBar ); | 756 | a->addTo( toolBar ); |
744 | 757 | ||
745 | pasteAction = new QAction( tr("Paste"), Resource::loadPixmap( "paste" ), | 758 | pasteAction = new QAction( tr("Paste"), Resource::loadPixmap( "paste" ), |
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 | ||
754 | QCopChannel* pcmciaChannel = new QCopChannel( "QPE/Card", this ); | 768 | QCopChannel* pcmciaChannel = new QCopChannel( "QPE/Card", this ); |
755 | connect( pcmciaChannel, SIGNAL(received(const QCString &, const QByteArray &)), | 769 | connect( pcmciaChannel, SIGNAL(received(const QCString &, const QByteArray &)), |
756 | this, SLOT(pcmciaMessage( const QCString &, const QByteArray &)) ); | 770 | this, SLOT(pcmciaMessage( const QCString &, const QByteArray &)) ); |
757 | } | 771 | } |
758 | 772 | ||
759 | void FileBrowser::pcmciaMessage( const QCString &msg, const QByteArray &) | 773 | void FileBrowser::pcmciaMessage( const QCString &msg, const QByteArray &) |
760 | { | 774 | { |
761 | if ( msg == "mtabChanged()" ) { | 775 | if ( msg == "mtabChanged()" ) { |
762 | // ## Only really needed if current dir is on a card | 776 | // ## Only really needed if current dir is on a card |
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; |
771 | 789 | ||
772 | // Bulid target dir from menu | 790 | // Bulid target dir from menu |
773 | while( (j = dirMenu->idAt( i )) != id ){ | 791 | while( (j = dirMenu->idAt( i )) != id ){ |
774 | dir += dirMenu->text( j ).stripWhiteSpace(); | 792 | dir += dirMenu->text( j ).stripWhiteSpace(); |
775 | if( dirMenu->text( j ) != "/" ) dir += "/"; | 793 | if( dirMenu->text( j ) != "/" ) dir += "/"; |
776 | i++; | 794 | i++; |
777 | } | 795 | } |
778 | dir += dirMenu->text( dirMenu->idAt( i ) ).stripWhiteSpace(); | 796 | dir += dirMenu->text( dirMenu->idAt( i ) ).stripWhiteSpace(); |
779 | 797 | ||
780 | fileView->setDir( dir ); | 798 | fileView->setDir( dir ); |
781 | } | 799 | } |
782 | 800 | ||
783 | void FileBrowser::updateDirMenu() | 801 | void FileBrowser::updateDirMenu() |
784 | { | 802 | { |
785 | QString spc, cd = fileView->cd(); | 803 | QString spc, cd = fileView->cd(); |
786 | QStringList l = QStringList::split( "/", cd ); | 804 | QStringList l = QStringList::split( "/", cd ); |
787 | int i = 0; | 805 | int i = 0; |
788 | 806 | ||
789 | dirMenu->clear(); | 807 | dirMenu->clear(); |
790 | dirMenu->insertItem( tr( "/" ), this, SLOT( dirSelected(int) ) ); | 808 | dirMenu->insertItem( tr( "/" ), this, SLOT( dirSelected(int) ) ); |
@@ -833,48 +851,59 @@ void FileBrowser::sortDate() | |||
833 | void FileBrowser::sortType() | 851 | void FileBrowser::sortType() |
834 | { | 852 | { |
835 | fileView->setSorting( 3, sortMenu->isItemChecked( sortMenu->idAt( 5 ) ) ); | 853 | fileView->setSorting( 3, sortMenu->isItemChecked( sortMenu->idAt( 5 ) ) ); |
836 | fileView->sort(); | 854 | fileView->sort(); |
837 | sortMenu->setItemChecked( sortMenu->idAt( 0 ), FALSE ); | 855 | sortMenu->setItemChecked( sortMenu->idAt( 0 ), FALSE ); |
838 | sortMenu->setItemChecked( sortMenu->idAt( 1 ), FALSE ); | 856 | sortMenu->setItemChecked( sortMenu->idAt( 1 ), FALSE ); |
839 | sortMenu->setItemChecked( sortMenu->idAt( 2 ), FALSE ); | 857 | sortMenu->setItemChecked( sortMenu->idAt( 2 ), FALSE ); |
840 | sortMenu->setItemChecked( sortMenu->idAt( 3 ), TRUE ); | 858 | sortMenu->setItemChecked( sortMenu->idAt( 3 ), TRUE ); |
841 | } | 859 | } |
842 | 860 | ||
843 | void FileBrowser::updateSorting() | 861 | void FileBrowser::updateSorting() |
844 | { | 862 | { |
845 | sortMenu->setItemChecked( sortMenu->idAt( 5 ), !sortMenu->isItemChecked( sortMenu->idAt( 5 ) ) ); | 863 | sortMenu->setItemChecked( sortMenu->idAt( 5 ), !sortMenu->isItemChecked( sortMenu->idAt( 5 ) ) ); |
846 | 864 | ||
847 | if ( sortMenu->isItemChecked( sortMenu->idAt( 0 ) ) ) | 865 | if ( sortMenu->isItemChecked( sortMenu->idAt( 0 ) ) ) |
848 | sortName(); | 866 | sortName(); |
849 | else if ( sortMenu->isItemChecked( sortMenu->idAt( 1 ) ) ) | 867 | else if ( sortMenu->isItemChecked( sortMenu->idAt( 1 ) ) ) |
850 | sortSize(); | 868 | sortSize(); |
851 | else if ( sortMenu->isItemChecked( sortMenu->idAt( 2 ) ) ) | 869 | else if ( sortMenu->isItemChecked( sortMenu->idAt( 2 ) ) ) |
852 | sortDate(); | 870 | sortDate(); |
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; |
861 | int err; | 890 | int err; |
862 | 891 | ||
863 | if((i = (FileItem *) firstChild()) == 0) return; | 892 | if((i = (FileItem *) firstChild()) == 0) return; |
864 | 893 | ||
865 | while( i ){ | 894 | while( i ){ |
866 | if( i->isSelected() ){ | 895 | if( i->isSelected() ){ |
867 | fl += i->getFilePath(); | 896 | fl += i->getFilePath(); |
868 | } | 897 | } |
869 | i = (FileItem *) i->nextSibling(); | 898 | i = (FileItem *) i->nextSibling(); |
870 | } | 899 | } |
871 | if( fl.count() < 1 ) return; | 900 | if( fl.count() < 1 ) return; |
872 | if( QMessageBox::warning( this, tr("Change permissions"), tr("Are you sure?"), | 901 | if( QMessageBox::warning( this, tr("Change permissions"), tr("Are you sure?"), |
873 | tr("Yes"), tr("No") ) == 0) { | 902 | tr("Yes"), tr("No") ) == 0) { |
874 | for ( QStringList::Iterator it = fl.begin(); it != fl.end(); ++it ) { | 903 | for ( QStringList::Iterator it = fl.begin(); it != fl.end(); ++it ) { |
875 | filePermissions *filePerm; | 904 | filePermissions *filePerm; |
876 | filePerm = new filePermissions(this, "Permissions",true,0,(const QString &)(*it)); | 905 | filePerm = new filePermissions(this, "Permissions",true,0,(const QString &)(*it)); |
877 | filePerm->exec(); | 906 | filePerm->exec(); |
878 | if( filePerm) | 907 | if( filePerm) |
879 | delete filePerm; | 908 | delete filePerm; |
880 | break; | 909 | break; |
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 | |||
@@ -5,80 +5,81 @@ | |||
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | #ifndef FILEBROWSER_H | 20 | #ifndef FILEBROWSER_H |
21 | #define FILEBROWSER_H | 21 | #define FILEBROWSER_H |
22 | 22 | ||
23 | #include <qlistview.h> | 23 | #include <qlistview.h> |
24 | #include <qmainwindow.h> | 24 | #include <qmainwindow.h> |
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 | { |
34 | public: | 34 | public: |
35 | FileItem( QListView * parent, const QFileInfo & fi ); | 35 | FileItem( QListView * parent, const QFileInfo & fi ); |
36 | 36 | ||
37 | QString key( int column, bool ascending = TRUE ) const; | 37 | QString key( int column, bool ascending = TRUE ) const; |
38 | QString getFilePath(){ return fileInfo.filePath(); } | 38 | QString getFilePath(){ return fileInfo.filePath(); } |
39 | QString getFileName(){ return fileInfo.fileName(); } | 39 | QString getFileName(){ return fileInfo.fileName(); } |
40 | bool isDir(){ return fileInfo.isDir(); } | 40 | bool isDir(){ return fileInfo.isDir(); } |
41 | bool isExecutable(){ return fileInfo.isExecutable(); } | 41 | bool isExecutable(){ return fileInfo.isExecutable(); } |
42 | bool isLib(); | 42 | bool isLib(); |
43 | int launch(); | 43 | int launch(); |
44 | bool rename( const QString & name ); | 44 | bool rename( const QString & name ); |
45 | private: | 45 | private: |
46 | QString sizeString( unsigned int size ); | 46 | QString sizeString( unsigned int size ); |
47 | QFileInfo fileInfo; | 47 | QFileInfo fileInfo; |
48 | }; | 48 | }; |
49 | 49 | ||
50 | 50 | ||
51 | class FileView : public QListView | 51 | class FileView : public QListView |
52 | { | 52 | { |
53 | Q_OBJECT | 53 | Q_OBJECT |
54 | 54 | ||
55 | public: | 55 | public: |
56 | FileView( const QString & dir, QWidget * parent = 0, | 56 | FileView( const QString & dir, QWidget * parent = 0, |
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(); |
65 | void lastDir(); | 66 | void lastDir(); |
66 | 67 | ||
67 | void rename(); | 68 | void rename(); |
68 | void copy(); | 69 | void copy(); |
69 | void paste(); | 70 | void paste(); |
70 | void del(); | 71 | void del(); |
71 | void cut(); | 72 | void cut(); |
72 | void newFolder(); | 73 | void newFolder(); |
73 | void viewAsText(); | 74 | void viewAsText(); |
74 | void chPerm(); | 75 | void chPerm(); |
75 | protected: | 76 | protected: |
76 | void generateDir( const QString & dir ); | 77 | void generateDir( const QString & dir ); |
77 | void resizeEvent( QResizeEvent* ); | 78 | void resizeEvent( QResizeEvent* ); |
78 | void contentsMousePressEvent( QMouseEvent * e ); | 79 | void contentsMousePressEvent( QMouseEvent * e ); |
79 | void contentsMouseReleaseEvent( QMouseEvent * e ); | 80 | void contentsMouseReleaseEvent( QMouseEvent * e ); |
80 | 81 | ||
81 | protected slots: | 82 | protected slots: |
82 | void itemClicked( QListViewItem * i ); | 83 | void itemClicked( QListViewItem * i ); |
83 | void itemDblClicked( QListViewItem * i ); | 84 | void itemDblClicked( QListViewItem * i ); |
84 | void showFileMenu(); | 85 | void showFileMenu(); |
@@ -93,49 +94,52 @@ private: | |||
93 | QString currentDir; | 94 | QString currentDir; |
94 | QStringList dirHistory, flist; | 95 | QStringList dirHistory, flist; |
95 | QTimer menuTimer; | 96 | QTimer menuTimer; |
96 | InlineEdit * le; | 97 | InlineEdit * le; |
97 | FileItem * itemToRename; | 98 | FileItem * itemToRename; |
98 | bool selected; | 99 | bool selected; |
99 | 100 | ||
100 | bool copyFile( const QString & dest, const QString & src ); | 101 | bool copyFile( const QString & dest, const QString & src ); |
101 | 102 | ||
102 | signals: | 103 | signals: |
103 | void dirChanged(); | 104 | void dirChanged(); |
104 | void textViewActivated( QWidget * w ); | 105 | void textViewActivated( QWidget * w ); |
105 | void textViewDeactivated(); | 106 | void textViewDeactivated(); |
106 | }; | 107 | }; |
107 | 108 | ||
108 | class FileBrowser : public QMainWindow | 109 | class FileBrowser : public QMainWindow |
109 | { | 110 | { |
110 | Q_OBJECT | 111 | Q_OBJECT |
111 | 112 | ||
112 | public: | 113 | 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; |
121 | FileView * fileView; | 124 | FileView * fileView; |
122 | QAction * pasteAction; | 125 | QAction * pasteAction; |
123 | QAction *lastAction; | 126 | QAction *lastAction; |
124 | QAction *upAction; | 127 | QAction *upAction; |
125 | 128 | ||
126 | bool copyFile( const QString & dest, const QString & src ); | 129 | bool copyFile( const QString & dest, const QString & src ); |
127 | 130 | ||
128 | private slots: | 131 | private slots: |
129 | void pcmciaMessage( const QCString &msg, const QByteArray &); | 132 | void pcmciaMessage( const QCString &msg, const QByteArray &); |
130 | 133 | ||
131 | void sortName(); | 134 | void sortName(); |
132 | void sortDate(); | 135 | void sortDate(); |
133 | void sortSize(); | 136 | void sortSize(); |
134 | void sortType(); | 137 | void sortType(); |
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 |