author | llornkcor <llornkcor> | 2002-10-10 00:16:23 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-10-10 00:16:23 (UTC) |
commit | 91e597f6607a1db7251c217154ab56ea94fb0bca (patch) (unidiff) | |
tree | 684181f5e03851c4d41d944bc0857aec20979d6e | |
parent | 4c7d8f663ee98751da0f8264ea1d49799463f0bf (diff) | |
download | opie-91e597f6607a1db7251c217154ab56ea94fb0bca.zip opie-91e597f6607a1db7251c217154ab56ea94fb0bca.tar.gz opie-91e597f6607a1db7251c217154ab56ea94fb0bca.tar.bz2 |
made popupmenu in popupmenu
-rw-r--r-- | noncore/apps/advancedfm/advancedfm.cpp | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/noncore/apps/advancedfm/advancedfm.cpp b/noncore/apps/advancedfm/advancedfm.cpp index ec475a4..7fba0af 100644 --- a/noncore/apps/advancedfm/advancedfm.cpp +++ b/noncore/apps/advancedfm/advancedfm.cpp | |||
@@ -637,222 +637,222 @@ void AdvancedFm::keyReleaseEvent( QKeyEvent *e) { | |||
637 | break; | 637 | break; |
638 | case Key_9: | 638 | case Key_9: |
639 | break; | 639 | break; |
640 | case Key_0: | 640 | case Key_0: |
641 | break; | 641 | break; |
642 | } | 642 | } |
643 | } | 643 | } |
644 | 644 | ||
645 | 645 | ||
646 | void AdvancedFm::QPEButtonPushed() { | 646 | void AdvancedFm::QPEButtonPushed() { |
647 | QString current = QPEApplication::qpeDir(); | 647 | QString current = QPEApplication::qpeDir(); |
648 | chdir( current.latin1() ); | 648 | chdir( current.latin1() ); |
649 | if (TabWidget->currentPageIndex() == 0) { | 649 | if (TabWidget->currentPageIndex() == 0) { |
650 | currentDir.cd( current, TRUE); | 650 | currentDir.cd( current, TRUE); |
651 | populateLocalView(); | 651 | populateLocalView(); |
652 | } else { | 652 | } else { |
653 | currentRemoteDir.cd( current, TRUE); | 653 | currentRemoteDir.cd( current, TRUE); |
654 | populateRemoteView(); | 654 | populateRemoteView(); |
655 | } | 655 | } |
656 | update(); | 656 | update(); |
657 | } | 657 | } |
658 | 658 | ||
659 | void AdvancedFm::parsetab(const QString &fileName) { | 659 | void AdvancedFm::parsetab(const QString &fileName) { |
660 | 660 | ||
661 | fileSystemTypeList.clear(); | 661 | fileSystemTypeList.clear(); |
662 | fsList.clear(); | 662 | fsList.clear(); |
663 | struct mntent *me; | 663 | struct mntent *me; |
664 | FILE *mntfp = setmntent( fileName.latin1(), "r" ); | 664 | FILE *mntfp = setmntent( fileName.latin1(), "r" ); |
665 | if ( mntfp ) { | 665 | if ( mntfp ) { |
666 | while ( (me = getmntent( mntfp )) != 0 ) { | 666 | while ( (me = getmntent( mntfp )) != 0 ) { |
667 | QString deviceName = me->mnt_fsname; | 667 | QString deviceName = me->mnt_fsname; |
668 | QString filesystemType = me->mnt_type; | 668 | QString filesystemType = me->mnt_type; |
669 | QString mountDir = me->mnt_dir; | 669 | QString mountDir = me->mnt_dir; |
670 | if(deviceName != "none") { | 670 | if(deviceName != "none") { |
671 | if( fsList.contains(filesystemType) == 0 | 671 | if( fsList.contains(filesystemType) == 0 |
672 | & filesystemType.find("proc",0,TRUE) == -1 | 672 | & filesystemType.find("proc",0,TRUE) == -1 |
673 | & filesystemType.find("cramfs",0,TRUE) == -1 | 673 | & filesystemType.find("cramfs",0,TRUE) == -1 |
674 | & filesystemType.find("auto",0,TRUE) == -1) | 674 | & filesystemType.find("auto",0,TRUE) == -1) |
675 | fsList << filesystemType; | 675 | fsList << filesystemType; |
676 | fileSystemTypeList << mountDir+"::"+filesystemType; | 676 | fileSystemTypeList << mountDir+"::"+filesystemType; |
677 | } | 677 | } |
678 | } | 678 | } |
679 | } | 679 | } |
680 | endmntent( mntfp ); | 680 | endmntent( mntfp ); |
681 | } | 681 | } |
682 | 682 | ||
683 | QString AdvancedFm::getFileSystemType(const QString ¤tText) { | 683 | QString AdvancedFm::getFileSystemType(const QString ¤tText) { |
684 | parsetab("/etc/mtab"); //why did TT forget filesystem type? | 684 | parsetab("/etc/mtab"); //why did TT forget filesystem type? |
685 | QString current = currentText;//.right( currentText.length()-1); | 685 | QString current = currentText;//.right( currentText.length()-1); |
686 | QString baseFs; | 686 | QString baseFs; |
687 | for ( QStringList::Iterator it = fileSystemTypeList.begin(); it != fileSystemTypeList.end(); ++it ) { | 687 | for ( QStringList::Iterator it = fileSystemTypeList.begin(); it != fileSystemTypeList.end(); ++it ) { |
688 | QString temp = (*it); | 688 | QString temp = (*it); |
689 | QString path = temp.left(temp.find("::",0,TRUE) ); | 689 | QString path = temp.left(temp.find("::",0,TRUE) ); |
690 | path = path.right( path.length()-1); | 690 | path = path.right( path.length()-1); |
691 | if(path.isEmpty()) baseFs = temp.right( temp.length() - temp.find("::",0,TRUE) - 2); | 691 | if(path.isEmpty()) baseFs = temp.right( temp.length() - temp.find("::",0,TRUE) - 2); |
692 | if( current.find( path,0,TRUE) != -1 && !path.isEmpty()) { | 692 | if( current.find( path,0,TRUE) != -1 && !path.isEmpty()) { |
693 | return temp.right( temp.length() - temp.find("::",0,TRUE) - 2); | 693 | return temp.right( temp.length() - temp.find("::",0,TRUE) - 2); |
694 | } | 694 | } |
695 | } | 695 | } |
696 | return baseFs; | 696 | return baseFs; |
697 | } | 697 | } |
698 | 698 | ||
699 | QString AdvancedFm::getDiskSpace( const QString &path) { | 699 | QString AdvancedFm::getDiskSpace( const QString &path) { |
700 | struct statfs fss; | 700 | struct statfs fss; |
701 | if ( !statfs( path.latin1(), &fss ) ) { | 701 | if ( !statfs( path.latin1(), &fss ) ) { |
702 | int blkSize = fss.f_bsize; | 702 | int blkSize = fss.f_bsize; |
703 | // int totalBlks = fs.f_blocks; | 703 | // int totalBlks = fs.f_blocks; |
704 | int availBlks = fss.f_bavail; | 704 | int availBlks = fss.f_bavail; |
705 | 705 | ||
706 | long mult = blkSize / 1024; | 706 | long mult = blkSize / 1024; |
707 | long div = 1024 / blkSize; | 707 | long div = 1024 / blkSize; |
708 | if ( !mult ) mult = 1; | 708 | if ( !mult ) mult = 1; |
709 | if ( !div ) div = 1; | 709 | if ( !div ) div = 1; |
710 | 710 | ||
711 | return QString::number(availBlks * mult / div); | 711 | return QString::number(availBlks * mult / div); |
712 | } | 712 | } |
713 | return ""; | 713 | return ""; |
714 | } | 714 | } |
715 | 715 | ||
716 | 716 | ||
717 | void AdvancedFm::showFileMenu() { | 717 | void AdvancedFm::showFileMenu() { |
718 | 718 | ||
719 | QString curApp; | 719 | QString curApp; |
720 | bool isLocalView = false; | 720 | bool isLocalView = false; |
721 | if (TabWidget->currentPageIndex() == 0) { | 721 | if (TabWidget->currentPageIndex() == 0) { |
722 | isLocalView = TRUE; | 722 | isLocalView = TRUE; |
723 | curApp = Local_View->currentItem()->text(0); | 723 | curApp = Local_View->currentItem()->text(0); |
724 | } else { | 724 | } else { |
725 | curApp = Remote_View->currentItem()->text(0); | 725 | curApp = Remote_View->currentItem()->text(0); |
726 | } | 726 | } |
727 | 727 | ||
728 | MimeType mt( curApp ); | 728 | MimeType mt( curApp ); |
729 | const AppLnk* app = mt.application(); | 729 | const AppLnk* app = mt.application(); |
730 | QFile fi(curApp); | 730 | QFile fi(curApp); |
731 | 731 | ||
732 | QPopupMenu *m = new QPopupMenu(0); | 732 | QPopupMenu *m = new QPopupMenu(0); |
733 | QPopupMenu *n = new QPopupMenu(0); | ||
734 | // QPopupMenu *o = new QPopupMenu(0); | ||
733 | 735 | ||
734 | m->insertItem( tr( "Show Hidden Files" ), this, SLOT( showHidden() )); | 736 | m->insertItem( tr( "Show Hidden Files" ), this, SLOT( showHidden() )); |
735 | if ( !QFileInfo(fi).isDir() ) { | 737 | if ( !QFileInfo(fi).isDir() ) { |
736 | m->insertSeparator(); | 738 | // m->insertSeparator(); |
737 | // m->insertItem( tr( "Change Directory" ), this, SLOT( doLocalCd() )); | 739 | // m->insertItem( tr( "Change Directory" ), this, SLOT( doLocalCd() )); |
738 | // } else { | 740 | // } else { |
739 | 741 | ||
740 | if ( app ) | 742 | if ( app ) |
741 | m->insertItem( app->pixmap(), tr( "Open in " | 743 | m->insertItem( app->pixmap(), tr( "Open in " |
742 | + app->name() ), this, SLOT( runThis() ) ); | 744 | + app->name() ), this, SLOT( runThis() ) ); |
743 | else if( QFileInfo(fi).isExecutable() ) | 745 | else if( QFileInfo(fi).isExecutable() ) |
744 | m->insertItem( Resource::loadPixmap( app->name()), tr( "Execute" ), this, SLOT( runThis() ) ); | 746 | m->insertItem( Resource::loadPixmap( app->name()), tr( "Execute" ), this, SLOT( runThis() ) ); |
745 | 747 | ||
746 | m->insertItem( Resource::loadPixmap( "txt" ), tr( "Open as text" ),this, SLOT( runText() ) ); | 748 | m->insertItem( Resource::loadPixmap( "txt" ), tr( "Open as text" ),this, SLOT( runText() ) ); |
747 | } | 749 | } |
748 | m->insertSeparator(); | ||
749 | 750 | ||
751 | m->insertItem(tr("Actions"),n); | ||
752 | if(isLocalView) | ||
753 | n->insertItem( tr( "Make Directory" ), this, SLOT( localMakDir() )); | ||
754 | else | ||
755 | n->insertItem( tr( "Make Directory" ), this, SLOT( remoteMakDir() )); | ||
756 | |||
757 | n->insertItem( tr( "Make Symlink" ), this, SLOT( mkSym() )); | ||
750 | 758 | ||
759 | n->insertSeparator(); | ||
760 | |||
761 | |||
751 | if(isLocalView) | 762 | if(isLocalView) |
752 | m->insertItem( tr( "Make Directory" ), this, SLOT( localMakDir() )); | 763 | n->insertItem( tr( "Rename" ), this, SLOT( localRename() )); |
753 | else | 764 | else |
754 | m->insertItem( tr( "Make Directory" ), this, SLOT( remoteMakDir() )); | 765 | n->insertItem( tr( "Rename" ), this, SLOT( remoteRename() )); |
755 | 766 | ||
756 | m->insertItem( tr( "Make Symlink" ), this, SLOT( mkSym() )); | 767 | n->insertItem( tr( "Copy" ), this, SLOT( copy() )); |
757 | m->insertSeparator(); | 768 | n->insertItem( tr( "Copy As" ), this, SLOT( copyAs() )); |
769 | n->insertItem( tr( "Copy Same Dir" ), this, SLOT( copySameDir() )); | ||
770 | n->insertItem( tr( "Move" ), this, SLOT( move() )); | ||
771 | |||
772 | n->insertSeparator(); | ||
758 | 773 | ||
759 | if(isLocalView) | 774 | if(isLocalView) |
760 | m->insertItem( tr( "Rename" ), this, SLOT( localRename() )); | 775 | n->insertItem( tr( "Delete" ), this, SLOT( localDelete() )); |
761 | else | 776 | else |
762 | m->insertItem( tr( "Rename" ), this, SLOT( remoteRename() )); | 777 | n->insertItem( tr( "Delete" ), this, SLOT( remoteDelete() )); |
763 | 778 | ||
764 | m->insertItem( tr( "Copy" ), this, SLOT( copy() )); | ||
765 | m->insertItem( tr( "Copy As" ), this, SLOT( copyAs() )); | ||
766 | m->insertItem( tr( "Copy Same Dir" ), this, SLOT( copySameDir() )); | ||
767 | m->insertItem( tr( "Move" ), this, SLOT( move() )); | ||
768 | m->insertSeparator(); | ||
769 | m->insertItem( tr( "Add To Documents" ), this, SLOT( addToDocs() )); | ||
770 | 779 | ||
771 | // if(isLocalView) | 780 | m->insertItem( tr( "Add To Documents" ), this, SLOT( addToDocs() )); |
772 | // m->insertItem( tr( "Rescan" ), this, SLOT( populateLocalView() )); | ||
773 | // else | ||
774 | // m->insertItem( tr( "Rescan" ), this, SLOT( populateRemoteView() )); | ||
775 | 781 | ||
776 | m->insertItem( tr( "Run Command" ), this, SLOT( runCommand() )); | 782 | m->insertItem( tr( "Run Command" ), this, SLOT( runCommand() )); |
777 | m->insertItem( tr( "File Info" ), this, SLOT( fileStatus() )); | 783 | m->insertItem( tr( "File Info" ), this, SLOT( fileStatus() )); |
778 | m->insertSeparator(); | ||
779 | |||
780 | if(isLocalView) | ||
781 | m->insertItem( tr( "Delete" ), this, SLOT( localDelete() )); | ||
782 | else | ||
783 | m->insertItem( tr( "Delete" ), this, SLOT( remoteDelete() )); | ||
784 | 784 | ||
785 | m->insertSeparator(); | 785 | m->insertSeparator(); |
786 | m->insertItem( tr( "Set Permissions" ), this, SLOT( filePerms() )); | 786 | m->insertItem( tr( "Set Permissions" ), this, SLOT( filePerms() )); |
787 | 787 | ||
788 | #if defined(QT_QWS_OPIE) | 788 | #if defined(QT_QWS_OPIE) |
789 | m->insertItem( tr( "Properties" ), this, SLOT( doProperties() )); | 789 | m->insertItem( tr( "Properties" ), this, SLOT( doProperties() )); |
790 | #endif | 790 | #endif |
791 | m->setCheckable(TRUE); | 791 | m->setCheckable(TRUE); |
792 | if (!b) | 792 | if (!b) |
793 | m->setItemChecked(m->idAt(0),TRUE); | 793 | m->setItemChecked(m->idAt(0),TRUE); |
794 | else | 794 | else |
795 | m->setItemChecked(m->idAt(0),FALSE); | 795 | m->setItemChecked(m->idAt(0),FALSE); |
796 | 796 | ||
797 | if(Ir::supported()) | 797 | if(Ir::supported()) |
798 | m->insertItem( tr( "Beam File" ), this, SLOT( doBeam() )); | 798 | m->insertItem( tr( "Beam File" ), this, SLOT( doBeam() )); |
799 | m->setFocus(); | 799 | m->setFocus(); |
800 | m->exec( QCursor::pos() ); | 800 | m->exec( QCursor::pos() ); |
801 | sleep(1); | 801 | sleep(1); |
802 | if(m) delete m; | 802 | if(m) delete m; |
803 | } | 803 | } |
804 | 804 | ||
805 | 805 | ||
806 | void AdvancedFm::cancelMenuTimer() { | 806 | void AdvancedFm::cancelMenuTimer() { |
807 | 807 | ||
808 | // qDebug("selectionChanged: cancel menu timer"); | 808 | // qDebug("selectionChanged: cancel menu timer"); |
809 | if( menuTimer.isActive() ) | 809 | if( menuTimer.isActive() ) |
810 | menuTimer.stop(); | 810 | menuTimer.stop(); |
811 | } | 811 | } |
812 | 812 | ||
813 | QString AdvancedFm::checkDiskSpace(const QString &path) { | 813 | QString AdvancedFm::checkDiskSpace(const QString &path) { |
814 | struct statfs fss; | 814 | struct statfs fss; |
815 | if ( !statfs( path.latin1(), &fss ) ) { | 815 | if ( !statfs( path.latin1(), &fss ) ) { |
816 | int blkSize = fss.f_bsize; | 816 | int blkSize = fss.f_bsize; |
817 | // int totalBlks = fs.f_blocks; | 817 | // int totalBlks = fs.f_blocks; |
818 | int availBlks = fss.f_bavail; | 818 | int availBlks = fss.f_bavail; |
819 | 819 | ||
820 | long mult = blkSize / 1024; | 820 | long mult = blkSize / 1024; |
821 | long div = 1024 / blkSize; | 821 | long div = 1024 / blkSize; |
822 | if ( !mult ) mult = 1; | 822 | if ( !mult ) mult = 1; |
823 | if ( !div ) div = 1; | 823 | if ( !div ) div = 1; |
824 | 824 | ||
825 | 825 | ||
826 | return QString::number(availBlks * mult / div); | 826 | return QString::number(availBlks * mult / div); |
827 | } | 827 | } |
828 | return ""; | 828 | return ""; |
829 | } | 829 | } |
830 | 830 | ||
831 | void AdvancedFm::addToDocs() { | 831 | void AdvancedFm::addToDocs() { |
832 | QStringList strListPaths = getPath(); | 832 | QStringList strListPaths = getPath(); |
833 | if( strListPaths.count() > 0) { | 833 | if( strListPaths.count() > 0) { |
834 | QString curFile; | 834 | QString curFile; |
835 | if (TabWidget->currentPageIndex() == 0) { | 835 | if (TabWidget->currentPageIndex() == 0) { |
836 | for ( QStringList::Iterator it = strListPaths.begin(); it != strListPaths.end(); ++it ) { | 836 | for ( QStringList::Iterator it = strListPaths.begin(); it != strListPaths.end(); ++it ) { |
837 | curFile = currentDir.canonicalPath()+"/"+(*it); | 837 | curFile = currentDir.canonicalPath()+"/"+(*it); |
838 | qDebug(curFile); | 838 | qDebug(curFile); |
839 | DocLnk f; | 839 | DocLnk f; |
840 | // curFile.replace(QRegExp("\\..*"),""); | 840 | // curFile.replace(QRegExp("\\..*"),""); |
841 | f.setName((*it)); | 841 | f.setName((*it)); |
842 | f.setFile( curFile); | 842 | f.setFile( curFile); |
843 | f.writeLink(); | 843 | f.writeLink(); |
844 | } | 844 | } |
845 | } else { | 845 | } else { |
846 | for ( QStringList::Iterator it = strListPaths.begin(); it != strListPaths.end(); ++it ) { | 846 | for ( QStringList::Iterator it = strListPaths.begin(); it != strListPaths.end(); ++it ) { |
847 | curFile = currentRemoteDir.canonicalPath()+"/"+(*it); | 847 | curFile = currentRemoteDir.canonicalPath()+"/"+(*it); |
848 | qDebug(curFile); | 848 | qDebug(curFile); |
849 | 849 | ||
850 | DocLnk f; | 850 | DocLnk f; |
851 | // curFile.replace(QRegExp("\\..*"),""); | 851 | // curFile.replace(QRegExp("\\..*"),""); |
852 | f.setName((*it)); | 852 | f.setName((*it)); |
853 | f.setFile( curFile); | 853 | f.setFile( curFile); |
854 | f.writeLink(); | 854 | f.writeLink(); |
855 | } | 855 | } |
856 | } | 856 | } |
857 | } | 857 | } |
858 | } | 858 | } |