-rw-r--r-- | noncore/apps/advancedfm/advancedfm.cpp | 59 |
1 files changed, 31 insertions, 28 deletions
diff --git a/noncore/apps/advancedfm/advancedfm.cpp b/noncore/apps/advancedfm/advancedfm.cpp index d7bad51..b6e7a30 100644 --- a/noncore/apps/advancedfm/advancedfm.cpp +++ b/noncore/apps/advancedfm/advancedfm.cpp | |||
@@ -695,94 +695,97 @@ QString AdvancedFm::getFileSystemType(const QString ¤tText) { | |||
695 | return baseFs; | 695 | return baseFs; |
696 | } | 696 | } |
697 | 697 | ||
698 | QString AdvancedFm::getDiskSpace( const QString &path) { | 698 | QString AdvancedFm::getDiskSpace( const QString &path) { |
699 | struct statfs fss; | 699 | struct statfs fss; |
700 | if ( !statfs( path.latin1(), &fss ) ) { | 700 | if ( !statfs( path.latin1(), &fss ) ) { |
701 | int blkSize = fss.f_bsize; | 701 | int blkSize = fss.f_bsize; |
702 | // int totalBlks = fs.f_blocks; | 702 | // int totalBlks = fs.f_blocks; |
703 | int availBlks = fss.f_bavail; | 703 | int availBlks = fss.f_bavail; |
704 | 704 | ||
705 | long mult = blkSize / 1024; | 705 | long mult = blkSize / 1024; |
706 | long div = 1024 / blkSize; | 706 | long div = 1024 / blkSize; |
707 | if ( !mult ) mult = 1; | 707 | if ( !mult ) mult = 1; |
708 | if ( !div ) div = 1; | 708 | if ( !div ) div = 1; |
709 | 709 | ||
710 | return QString::number(availBlks * mult / div); | 710 | return QString::number(availBlks * mult / div); |
711 | } | 711 | } |
712 | return ""; | 712 | return ""; |
713 | } | 713 | } |
714 | 714 | ||
715 | 715 | ||
716 | void AdvancedFm::showFileMenu() { | 716 | void AdvancedFm::showFileMenu() { |
717 | 717 | ||
718 | QString curApp; | 718 | QString curApp; |
719 | bool isLocalView = false; | 719 | bool isLocalView = false; |
720 | if (TabWidget->currentPageIndex() == 0) { | 720 | if (TabWidget->currentPageIndex() == 0) { |
721 | isLocalView = TRUE; | 721 | isLocalView = TRUE; |
722 | curApp = Local_View->currentItem()->text(0); | 722 | curApp = Local_View->currentItem()->text(0); |
723 | } else { | 723 | } else { |
724 | curApp = Remote_View->currentItem()->text(0); | 724 | curApp = Remote_View->currentItem()->text(0); |
725 | } | 725 | } |
726 | 726 | ||
727 | MimeType mt( curApp ); | 727 | MimeType mt( curApp ); |
728 | const AppLnk* app = mt.application(); | ||
729 | QFile fi(curApp); | ||
730 | |||
731 | QPopupMenu *m = new QPopupMenu(0); | ||
732 | QPopupMenu *n = new QPopupMenu(0); | ||
733 | // QPopupMenu *o = new QPopupMenu(0); | ||
734 | |||
735 | m->insertItem( tr( "Show Hidden Files" ), this, SLOT( showHidden() )); | ||
736 | if ( !QFileInfo(fi).isDir() ) { | ||
737 | // m->insertSeparator(); | ||
738 | // m->insertItem( tr( "Change Directory" ), this, SLOT( doLocalCd() )); | ||
739 | // } else { | ||
740 | |||
741 | if ( app ) | ||
742 | m->insertItem( app->pixmap(), tr( "Open in " | ||
743 | + app->name() ), this, SLOT( runThis() ) ); | ||
744 | else if( QFileInfo(fi).isExecutable() ) | ||
745 | m->insertItem( Resource::loadPixmap( app->name()), tr( "Execute" ), this, SLOT( runThis() ) ); | ||
746 | |||
747 | m->insertItem( Resource::loadPixmap( "txt" ), tr( "Open as text" ),this, SLOT( runText() ) ); | ||
748 | } | ||
749 | 728 | ||
750 | m->insertItem(tr("Actions"),n); | 729 | const AppLnk* app = mt.application(); |
751 | if(isLocalView) | ||
752 | n->insertItem( tr( "Make Directory" ), this, SLOT( localMakDir() )); | ||
753 | else | ||
754 | n->insertItem( tr( "Make Directory" ), this, SLOT( remoteMakDir() )); | ||
755 | 730 | ||
756 | n->insertItem( tr( "Make Symlink" ), this, SLOT( mkSym() )); | 731 | QFile fi(curApp); |
732 | |||
733 | QPopupMenu *m = new QPopupMenu(0); | ||
734 | QPopupMenu *n = new QPopupMenu(0); | ||
735 | // QPopupMenu *o = new QPopupMenu(0); | ||
736 | |||
737 | m->insertItem( tr( "Show Hidden Files" ), this, SLOT( showHidden() )); | ||
738 | |||
739 | if ( QFileInfo(fi).isDir() ) { | ||
740 | m->insertSeparator(); | ||
741 | m->insertItem( tr( "Change Directory" ), this, SLOT( doLocalCd() )); | ||
742 | } else { | ||
743 | |||
744 | if ( app ) | ||
745 | m->insertItem( app->pixmap(), tr( "Open in " | ||
746 | + app->name() ), this, SLOT( runThis() ) ); | ||
747 | else if( QFileInfo(fi).isExecutable() ) //damn opie doesnt like this | ||
748 | m->insertItem( /*Resource::loadPixmap( app->name()),*/ tr( "Execute" ), this, SLOT( runThis() ) ); | ||
749 | |||
750 | m->insertItem( Resource::loadPixmap( "txt" ), tr( "Open as text" ),this, SLOT( runText() ) ); | ||
751 | } | ||
752 | |||
753 | m->insertItem(tr("Actions"),n); | ||
754 | if(isLocalView) | ||
755 | n->insertItem( tr( "Make Directory" ), this, SLOT( localMakDir() )); | ||
756 | else | ||
757 | n->insertItem( tr( "Make Directory" ), this, SLOT( remoteMakDir() )); | ||
758 | |||
759 | n->insertItem( tr( "Make Symlink" ), this, SLOT( mkSym() )); | ||
757 | 760 | ||
758 | n->insertSeparator(); | 761 | n->insertSeparator(); |
759 | 762 | ||
760 | 763 | ||
761 | if(isLocalView) | 764 | if(isLocalView) |
762 | n->insertItem( tr( "Rename" ), this, SLOT( localRename() )); | 765 | n->insertItem( tr( "Rename" ), this, SLOT( localRename() )); |
763 | else | 766 | else |
764 | n->insertItem( tr( "Rename" ), this, SLOT( remoteRename() )); | 767 | n->insertItem( tr( "Rename" ), this, SLOT( remoteRename() )); |
765 | 768 | ||
766 | n->insertItem( tr( "Copy" ), this, SLOT( copy() )); | 769 | n->insertItem( tr( "Copy" ), this, SLOT( copy() )); |
767 | n->insertItem( tr( "Copy As" ), this, SLOT( copyAs() )); | 770 | n->insertItem( tr( "Copy As" ), this, SLOT( copyAs() )); |
768 | n->insertItem( tr( "Copy Same Dir" ), this, SLOT( copySameDir() )); | 771 | n->insertItem( tr( "Copy Same Dir" ), this, SLOT( copySameDir() )); |
769 | n->insertItem( tr( "Move" ), this, SLOT( move() )); | 772 | n->insertItem( tr( "Move" ), this, SLOT( move() )); |
770 | 773 | ||
771 | n->insertSeparator(); | 774 | n->insertSeparator(); |
772 | 775 | ||
773 | if(isLocalView) | 776 | if(isLocalView) |
774 | n->insertItem( tr( "Delete" ), this, SLOT( localDelete() )); | 777 | n->insertItem( tr( "Delete" ), this, SLOT( localDelete() )); |
775 | else | 778 | else |
776 | n->insertItem( tr( "Delete" ), this, SLOT( remoteDelete() )); | 779 | n->insertItem( tr( "Delete" ), this, SLOT( remoteDelete() )); |
777 | 780 | ||
778 | 781 | ||
779 | m->insertItem( tr( "Add To Documents" ), this, SLOT( addToDocs() )); | 782 | m->insertItem( tr( "Add To Documents" ), this, SLOT( addToDocs() )); |
780 | 783 | ||
781 | m->insertItem( tr( "Run Command" ), this, SLOT( runCommand() )); | 784 | m->insertItem( tr( "Run Command" ), this, SLOT( runCommand() )); |
782 | m->insertItem( tr( "File Info" ), this, SLOT( fileStatus() )); | 785 | m->insertItem( tr( "File Info" ), this, SLOT( fileStatus() )); |
783 | 786 | ||
784 | m->insertSeparator(); | 787 | m->insertSeparator(); |
785 | m->insertItem( tr( "Set Permissions" ), this, SLOT( filePerms() )); | 788 | m->insertItem( tr( "Set Permissions" ), this, SLOT( filePerms() )); |
786 | 789 | ||
787 | #if defined(QT_QWS_OPIE) | 790 | #if defined(QT_QWS_OPIE) |
788 | m->insertItem( tr( "Properties" ), this, SLOT( doProperties() )); | 791 | m->insertItem( tr( "Properties" ), this, SLOT( doProperties() )); |