summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/advancedfm/advancedfm.cpp609
-rw-r--r--noncore/apps/advancedfm/advancedfm.h16
2 files changed, 337 insertions, 288 deletions
diff --git a/noncore/apps/advancedfm/advancedfm.cpp b/noncore/apps/advancedfm/advancedfm.cpp
index f32031b..869a433 100644
--- a/noncore/apps/advancedfm/advancedfm.cpp
+++ b/noncore/apps/advancedfm/advancedfm.cpp
@@ -73,2 +73,3 @@ AdvancedFm::AdvancedFm( )
73 setCaption( tr( "AdvancedFm" ) ); 73 setCaption( tr( "AdvancedFm" ) );
74// menuTimer( this );
74 75
@@ -146,4 +147,21 @@ AdvancedFm::AdvancedFm( )
146 147
148
149 currentPathCombo = new QComboBox( FALSE, this, "currentPathCombo" );
150 currentPathCombo->setEditable(TRUE);
151 layout->addMultiCellWidget( currentPathCombo, 1, 1, 0, 7);
152 currentPathCombo->lineEdit()->setText( currentDir.canonicalPath());
153
154 connect( currentPathCombo, SIGNAL( activated( const QString & ) ),
155 this, SLOT( currentPathComboActivated( const QString & ) ) );
156
157 connect( currentPathCombo->lineEdit(),SIGNAL(returnPressed()),
158 this,SLOT(currentPathComboChanged()));
159
160 currentPathCombo->lineEdit()->setText( currentDir.canonicalPath());
161
162 layout->addMultiCellWidget( currentPathCombo, 1, 1, 0, 7);
163
164
147 TabWidget = new QTabWidget( this, "TabWidget" ); 165 TabWidget = new QTabWidget( this, "TabWidget" );
148 layout->addMultiCellWidget( TabWidget, 1, 1, 0, 7); 166 layout->addMultiCellWidget( TabWidget, 2, 2, 0, 7);
149 167
@@ -167,2 +185,4 @@ AdvancedFm::AdvancedFm( )
167 185
186
187
168 tabLayout->addWidget( Local_View, 0, 0 ); 188 tabLayout->addWidget( Local_View, 0, 0 );
@@ -173,2 +193,3 @@ AdvancedFm::AdvancedFm( )
173 this,SLOT( localListPressed(int, QListViewItem *, const QPoint&, int)) ); 193 this,SLOT( localListPressed(int, QListViewItem *, const QPoint&, int)) );
194 connect( Local_View, SIGNAL( selectionChanged() ), SLOT( cancelMenuTimer() ) );
174 195
@@ -197,2 +218,3 @@ AdvancedFm::AdvancedFm( )
197 this,SLOT( remoteListPressed(int, QListViewItem *, const QPoint&, int)) ); 218 this,SLOT( remoteListPressed(int, QListViewItem *, const QPoint&, int)) );
219 connect( Remote_View, SIGNAL( selectionChanged() ), SLOT( cancelMenuTimer() ) );
198 220
@@ -223,16 +245,2 @@ AdvancedFm::AdvancedFm( )
223 b = TRUE; 245 b = TRUE;
224 currentPathCombo = new QComboBox( FALSE, this, "currentPathCombo" );
225 currentPathCombo->setEditable(TRUE);
226 layout->addMultiCellWidget( currentPathCombo, 3, 3, 0, 7);
227 currentPathCombo->lineEdit()->setText( currentDir.canonicalPath());
228
229 connect( currentPathCombo, SIGNAL( activated( const QString & ) ),
230 this, SLOT( currentPathComboActivated( const QString & ) ) );
231
232 connect( currentPathCombo->lineEdit(),SIGNAL(returnPressed()),
233 this,SLOT(currentPathComboChanged()));
234
235 currentPathCombo->lineEdit()->setText( currentDir.canonicalPath());
236
237 layout->addMultiCellWidget( currentPathCombo, 3, 3, 0, 7);
238 246
@@ -240,2 +248,5 @@ AdvancedFm::AdvancedFm( )
240 b=FALSE; 248 b=FALSE;
249
250 connect( &menuTimer, SIGNAL( timeout() ), SLOT( showFileMenu() ) );
251
241 populateLocalView(); 252 populateLocalView();
@@ -538,6 +549,6 @@ void AdvancedFm::localListClicked(QListViewItem *selectedItem)
538 if( QFile::exists(strItem ) ) { 549 if( QFile::exists(strItem ) ) {
539 qDebug("clicked item "+strItem); 550 qDebug("clicked item "+strItem);
540 DocLnk doc( strItem, FALSE ); 551 DocLnk doc( strItem, FALSE );
541 doc.execute(); 552 doc.execute();
542 // Local_View->clearSelection(); 553 // Local_View->clearSelection();
543 } 554 }
@@ -579,6 +590,6 @@ void AdvancedFm::remoteListClicked(QListViewItem *selectedItem)
579 if( QFile::exists(strItem ) ) { 590 if( QFile::exists(strItem ) ) {
580 qDebug("clicked item "+strItem); 591 qDebug("clicked item "+strItem);
581 DocLnk doc( strItem, FALSE ); 592 DocLnk doc( strItem, FALSE );
582 doc.execute(); 593 doc.execute();
583 // Remote_View->clearSelection(); 594 // Remote_View->clearSelection();
584 } 595 }
@@ -639,10 +650,9 @@ void AdvancedFm::localListPressed( int mouse, QListViewItem *item, const QPoint
639{ 650{
640 switch (mouse) { 651 switch (mouse) {
641 case 1: 652 case 1:
642 break; 653 break;
643 case 2: 654 case 2:
644 showLocalMenu(item); 655 menuTimer.start( 500, TRUE );
645 Local_View->clearSelection(); 656 break;
646 break; 657 };
647 };
648} 658}
@@ -651,88 +661,10 @@ void AdvancedFm::remoteListPressed( int mouse, QListViewItem *item, const QPoint
651{ 661{
652 switch (mouse) {
653 case 1:
654 break;
655 case 2:
656 showRemoteMenu(item);
657 Remote_View->clearSelection();
658 break;
659 };
660}
661
662void AdvancedFm::showLocalMenu(QListViewItem * item)
663{
664 if(item) {
665 QPopupMenu m;
666 m.insertItem( tr( "Show Hidden Files" ), this, SLOT( showHidden() ));
667 m.insertSeparator();
668 if( /*item->text(0).right(1) == "/" ||*/ item->text(0).find("/",0,TRUE) !=-1)
669 m.insertItem( tr( "Change Directory" ), this, SLOT( doLocalCd() ));
670 else
671 m.insertItem( tr( "Open / Execute" ), this, SLOT( runThis() ));
672 m.insertItem( tr( "Open as Text" ), this, SLOT( runText() ));
673 m.insertItem( tr( "Make Directory" ), this, SLOT( localMakDir() ));
674 m.insertItem( tr( "Make Symlink" ), this, SLOT( mkSym() ));
675 m.insertSeparator();
676 m.insertItem( tr( "Rename" ), this, SLOT( localRename() ));
677 m.insertItem( tr( "Copy" ), this, SLOT( copy() ));
678 m.insertItem( tr( "Copy As" ), this, SLOT( copyAs() ));
679 m.insertItem( tr( "Move" ), this, SLOT( move() ));
680 m.insertSeparator();
681 m.insertItem( tr( "Rescan" ), this, SLOT( populateLocalView() ));
682 m.insertItem( tr( "Run Command" ), this, SLOT( runCommand() ));
683 m.insertItem( tr( "File Info" ), this, SLOT( fileStatus() ));
684 m.insertSeparator();
685 m.insertItem( tr( "Delete" ), this, SLOT( localDelete() ));
686 m.insertSeparator();
687 m.insertItem( tr( "Set Permissions" ), this, SLOT( filePerms() ));
688 if( QFile(QPEApplication::qpeDir()+"lib/libopie.so").exists() ) //bad hack for Sharp zaurus failings
689 m.insertItem( tr( "Properties" ), this, SLOT( doProperties() ));
690 m.setCheckable(TRUE);
691 if (!b)
692 m.setItemChecked(m.idAt(0),TRUE);
693 else
694 m.setItemChecked(m.idAt(0),FALSE);
695 if(Ir::supported())
696 m.insertItem( tr( "Beam File" ), this, SLOT( doBeam() ));
697 m.exec( QCursor::pos() );
698 }
699}
700 662
701void AdvancedFm::showRemoteMenu(QListViewItem * item) 663 switch (mouse) {
702{ 664 case 1:
703 if(item) { 665 break;
704 QPopupMenu m; 666 case 2:
705 m.insertItem( tr( "Show Hidden Files" ), this, SLOT( showRemoteHidden() )); 667 menuTimer.start( 500, TRUE );
706 m.insertSeparator(); 668 break;
707 if( /*item->text(0).right(1) == "/" ||*/ item->text(0).find("/",0,TRUE) !=-1) 669 };
708 m.insertItem( tr( "Change Directory" ), this, SLOT( doRemoteCd() ));
709 else
710 m.insertItem( tr( "Open / Execute" ), this, SLOT( runThis() ));
711 m.insertItem( tr( "Open as Text" ), this, SLOT( runText() ));
712 m.insertItem( tr( "Make Directory" ), this, SLOT( remoteMakDir() ));
713 m.insertItem( tr( "Make Symlink" ), this, SLOT( mkSym() ));
714 m.insertSeparator();
715 m.insertItem( tr( "Rename" ), this, SLOT( remoteRename() ));
716 m.insertItem( tr( "Copy" ), this, SLOT( copy() ));
717 m.insertItem( tr( "Copy As" ), this, SLOT( copyAs() ));
718 m.insertItem( tr( "Move" ), this, SLOT( move() ));
719 m.insertSeparator();
720 m.insertItem( tr( "Rescan" ), this, SLOT( populateRemoteView() ));
721 m.insertItem( tr( "Run Command" ), this, SLOT( runCommand() ));
722 m.insertItem( tr( "File Info" ), this, SLOT( fileStatus() ));
723 m.insertSeparator();
724 m.insertItem( tr( "Delete" ), this, SLOT( remoteDelete() ));
725 m.insertSeparator();
726 m.insertItem( tr( "Set Permissions" ), this, SLOT( filePerms() ));
727 if( QFile(QPEApplication::qpeDir()+"lib/libopie.so").exists() ) //bad hack for Sharp zaurus failings
728 m.insertItem( tr( "Properties" ), this, SLOT( doProperties() ));
729 m.setCheckable(TRUE);
730 if (!b)
731 m.setItemChecked(m.idAt(0),TRUE);
732 else
733 m.setItemChecked(m.idAt(0),FALSE);
734 if(Ir::supported())
735 m.insertItem( tr( "Beam File" ), this, SLOT( doBeam() ));
736 m.exec( QCursor::pos() );
737 }
738} 670}
@@ -741,26 +673,28 @@ void AdvancedFm::runThis() {
741// QFileInfo *fi; 673// QFileInfo *fi;
742QString fs; 674 QString fs;
743 if (TabWidget->currentPageIndex() == 0) { 675 if (TabWidget->currentPageIndex() == 0) {
744 QString curFile = Local_View->currentItem()->text(0); 676 QString curFile = Local_View->currentItem()->text(0);
745 677 if(curFile != "../") {
746 fs= getFileSystemType((const QString &) currentDir.canonicalPath()); 678
747 QFileInfo fileInfo( currentDir.canonicalPath()+"/"+curFile); 679 fs= getFileSystemType((const QString &) currentDir.canonicalPath());
748 qDebug( fileInfo.owner()); 680 QFileInfo fileInfo( currentDir.canonicalPath()+"/"+curFile);
749 if( (fileInfo.permission( QFileInfo::ExeUser) 681 qDebug( fileInfo.owner());
750 | fileInfo.permission( QFileInfo::ExeGroup) 682 if( (fileInfo.permission( QFileInfo::ExeUser)
751 | fileInfo.permission( QFileInfo::ExeOther)) // & fs.find("vfat",0,TRUE) == -1) { 683 | fileInfo.permission( QFileInfo::ExeGroup)
752 | fs == "vfat" && fileInfo.filePath().contains("/bin") ) { 684 | fileInfo.permission( QFileInfo::ExeOther)) // & fs.find("vfat",0,TRUE) == -1) {
685 | fs == "vfat" && fileInfo.filePath().contains("/bin") ) {
753// if( fileInfo.isExecutable() | 686// if( fileInfo.isExecutable() |
754 QCopEnvelope e("QPE/System", "execute(QString)" ); 687 QCopEnvelope e("QPE/System", "execute(QString)" );
755 e << curFile; 688 e << curFile;
756 } else {
757 curFile = currentDir.canonicalPath()+"/"+curFile;
758 DocLnk nf(curFile);
759 QString execStr = nf.exec();
760 qDebug( execStr);
761 if( execStr.isEmpty() ) {
762 } else { 689 } else {
763 nf.execute(); 690 curFile = currentDir.canonicalPath()+"/"+curFile;
691 DocLnk nf(curFile);
692 QString execStr = nf.exec();
693 qDebug( execStr);
694 if( execStr.isEmpty() ) {
695 } else {
696 nf.execute();
697 }
764 } 698 }
765 } 699 }
766// MimeType mt( curFile); 700// MimeType mt( curFile);
@@ -768,21 +702,24 @@ QString fs;
768 QString curFile = Remote_View->currentItem()->text(0); 702 QString curFile = Remote_View->currentItem()->text(0);
769 fs= getFileSystemType((const QString &) currentRemoteDir.canonicalPath()); 703 if(curFile != "../") {
770 qDebug("Filesystemtype is "+fs); 704
771 QFileInfo fileInfo( currentRemoteDir.canonicalPath()+"/"+curFile); 705 fs= getFileSystemType((const QString &) currentRemoteDir.canonicalPath());
772 if( (fileInfo.permission( QFileInfo::ExeUser) 706 qDebug("Filesystemtype is "+fs);
773 | fileInfo.permission( QFileInfo::ExeGroup) 707 QFileInfo fileInfo( currentRemoteDir.canonicalPath()+"/"+curFile);
774 | fileInfo.permission( QFileInfo::ExeOther)) // & fs.find("vfat",0,TRUE) == -1) { 708 if( (fileInfo.permission( QFileInfo::ExeUser)
775 | fs == "vfat" && fileInfo.filePath().contains("/bin") ) { 709 | fileInfo.permission( QFileInfo::ExeGroup)
776 QCopEnvelope e("QPE/System", "execute(QString)" ); 710 | fileInfo.permission( QFileInfo::ExeOther)) // & fs.find("vfat",0,TRUE) == -1) {
777 e << curFile; 711 | fs == "vfat" && fileInfo.filePath().contains("/bin") ) {
778 } else { 712 QCopEnvelope e("QPE/System", "execute(QString)" );
779 curFile = currentRemoteDir.canonicalPath()+"/"+curFile; 713 e << curFile;
780 DocLnk nf(curFile);
781 QString execStr = nf.exec();
782 qDebug(execStr);
783 if( execStr.isEmpty() ) {
784 } else { 714 } else {
785 nf.execute(); 715 curFile = currentRemoteDir.canonicalPath()+"/"+curFile;
716 DocLnk nf(curFile);
717 QString execStr = nf.exec();
718 qDebug(execStr);
719 if( execStr.isEmpty() ) {
720 } else {
721 nf.execute();
722 }
786 } 723 }
787 } 724 }
788// MimeType mt( curFile); 725// MimeType mt( curFile);
@@ -794,2 +731,3 @@ void AdvancedFm::runText() {
794 QString curFile = Local_View->currentItem()->text(0); 731 QString curFile = Local_View->currentItem()->text(0);
732 if(curFile != "../") {
795 curFile = currentDir.canonicalPath()+"/"+curFile; 733 curFile = currentDir.canonicalPath()+"/"+curFile;
@@ -797,4 +735,6 @@ void AdvancedFm::runText() {
797 e << curFile; 735 e << curFile;
736 }
798 } else { 737 } else {
799 QString curFile = Remote_View->currentItem()->text(0); 738 QString curFile = Remote_View->currentItem()->text(0);
739 if(curFile != "../") {
800 curFile = currentRemoteDir.canonicalPath()+"/"+curFile; 740 curFile = currentRemoteDir.canonicalPath()+"/"+curFile;
@@ -803,2 +743,3 @@ void AdvancedFm::runText() {
803 e << curFile; 743 e << curFile;
744 }
804 } 745 }
@@ -833,43 +774,45 @@ void AdvancedFm::localDelete()
833 QStringList curFileList = getPath(); 774 QStringList curFileList = getPath();
834 QString myFile; 775 if(curFileList.count() > 0) {
835 for ( QStringList::Iterator it = curFileList.begin(); it != curFileList.end(); ++it ) { 776 QString myFile;
836 myFile = (*it); 777 for ( QStringList::Iterator it = curFileList.begin(); it != curFileList.end(); ++it ) {
837 if( myFile.find(" -> ",0,TRUE) != -1) 778 myFile = (*it);
838 myFile = myFile.left( myFile.find(" -> ",0,TRUE)); 779 if( myFile.find(" -> ",0,TRUE) != -1)
839 780 myFile = myFile.left( myFile.find(" -> ",0,TRUE));
840 QString f = currentDir.canonicalPath(); 781
841 if(f.right(1).find("/",0,TRUE) == -1) 782 QString f = currentDir.canonicalPath();
842 f+="/"; 783 if(f.right(1).find("/",0,TRUE) == -1)
843 f+=myFile; 784 f+="/";
844 if(QDir(f).exists() && !QFileInfo(f).isSymLink() ) { 785 f+=myFile;
845 switch ( QMessageBox::warning(this,tr("Delete"),tr("Do you really want to delete\n")+f+ 786 if(QDir(f).exists() && !QFileInfo(f).isSymLink() ) {
846 "\nand all it's contents ?" 787 switch ( QMessageBox::warning(this,tr("Delete"),tr("Do you really want to delete\n")+f+
847 ,tr("Yes"),tr("No"),0,0,1) ) { 788 "\nand all it's contents ?"
848 case 0: { 789 ,tr("Yes"),tr("No"),0,0,1) ) {
849 f=f.left(f.length()-1); 790 case 0: {
850 QString cmd="rm -rf "+f; 791 f=f.left(f.length()-1);
851 system( cmd.latin1()); 792 QString cmd="rm -rf "+f;
852 populateLocalView(); 793 system( cmd.latin1());
853 } 794 populateLocalView();
854 break; 795 }
855 case 1: 796 break;
856 // exit 797 case 1:
857 break; 798 // exit
858 }; 799 break;
800 };
859 801
860 } else { 802 } else {
861 switch ( QMessageBox::warning(this,tr("Delete"),tr("Do you really want to delete\n")+f 803 switch ( QMessageBox::warning(this,tr("Delete"),tr("Do you really want to delete\n")+f
862 +" ?",tr("Yes"),tr("No"),0,0,1) ) { 804 +" ?",tr("Yes"),tr("No"),0,0,1) ) {
863 case 0: { 805 case 0: {
864 QString cmd="rm "+f; 806 QString cmd="rm "+f;
865 QFile file(f); 807 QFile file(f);
866 file.remove(); 808 file.remove();
867// system( cmd.latin1()); 809// system( cmd.latin1());
868 populateLocalView(); 810 populateLocalView();
869 } 811 }
870 break; 812 break;
871 case 1: 813 case 1:
872 // exit 814 // exit
873 break; 815 break;
874 }; 816 };
817 }
875 } 818 }
@@ -881,43 +824,45 @@ void AdvancedFm::remoteDelete()
881 QStringList curFileList = getPath(); 824 QStringList curFileList = getPath();
882 QString myFile; 825 if( curFileList.count() > 0) {
826 QString myFile;
883 827
884 for ( QStringList::Iterator it = curFileList.begin(); it != curFileList.end(); ++it ) { 828 for ( QStringList::Iterator it = curFileList.begin(); it != curFileList.end(); ++it ) {
885 myFile = (*it); 829 myFile = (*it);
886 if(myFile.find(" -> ",0,TRUE) != -1) 830 if(myFile.find(" -> ",0,TRUE) != -1)
887 myFile = myFile.left(myFile.find(" -> ",0,TRUE)); 831 myFile = myFile.left(myFile.find(" -> ",0,TRUE));
888 QString f = currentRemoteDir.canonicalPath(); 832 QString f = currentRemoteDir.canonicalPath();
889 if(f.right(1).find("/",0,TRUE) == -1) 833 if(f.right(1).find("/",0,TRUE) == -1)
890 f+="/"; 834 f+="/";
891 f+=myFile; 835 f+=myFile;
892 if(QDir(f).exists() && !QFileInfo(f).isSymLink() ) { 836 if(QDir(f).exists() && !QFileInfo(f).isSymLink() ) {
893 switch ( QMessageBox::warning(this,tr("Delete"),tr("Do you really want to delete\n")+f+ 837 switch ( QMessageBox::warning(this,tr("Delete"),tr("Do you really want to delete\n")+f+
894 "\nand all it's contents ?", 838 "\nand all it's contents ?",
895 tr("Yes"),tr("No"),0,0,1) ) { 839 tr("Yes"),tr("No"),0,0,1) ) {
896 case 0: { 840 case 0: {
897 f=f.left(f.length()-1); 841 f=f.left(f.length()-1);
898 QString cmd="rm -rf "+f; 842 QString cmd="rm -rf "+f;
899 system( cmd.latin1()); 843 system( cmd.latin1());
900 populateRemoteView(); 844 populateRemoteView();
901 } 845 }
902 break; 846 break;
903 case 1: 847 case 1:
904 // exit 848 // exit
905 break; 849 break;
906 }; 850 };
907 851
908 } else { 852 } else {
909 switch ( QMessageBox::warning(this,tr("Delete"),tr("Do you really want to delete\n")+f 853 switch ( QMessageBox::warning(this,tr("Delete"),tr("Do you really want to delete\n")+f
910 +" ?",tr("Yes"),tr("No"),0,0,1) ) { 854 +" ?",tr("Yes"),tr("No"),0,0,1) ) {
911 case 0: { 855 case 0: {
912 QString cmd="rm "+f; 856 QString cmd="rm "+f;
913 QFile file(f); 857 QFile file(f);
914 file.remove(); 858 file.remove();
915// system( cmd.latin1()); 859// system( cmd.latin1());
916 populateRemoteView(); 860 populateRemoteView();
917 } 861 }
918 break; 862 break;
919 case 1: 863 case 1:
920 // exit 864 // exit
921 break; 865 break;
922 }; 866 };
867 }
923 } 868 }
@@ -929,13 +874,16 @@ void AdvancedFm::localRename()
929 QString curFile = Local_View->currentItem()->text(0); 874 QString curFile = Local_View->currentItem()->text(0);
930 InputDialog *fileDlg; 875 qDebug("currentItem "+curFile);
931 fileDlg = new InputDialog(this,tr("Rename"),TRUE, 0); 876 if( curFile !="../") {
932 fileDlg->setInputText((const QString &)curFile); 877 InputDialog *fileDlg;
933 fileDlg->exec(); 878 fileDlg = new InputDialog(this,tr("Rename"),TRUE, 0);
934 if( fileDlg->result() == 1 ) { 879 fileDlg->setInputText((const QString &)curFile);
935 QString oldname = currentDir.canonicalPath() + "/" + curFile; 880 fileDlg->exec();
936 QString newName = currentDir.canonicalPath() + "/" + fileDlg->LineEdit1->text();//+".playlist"; 881 if( fileDlg->result() == 1 ) {
937 if( rename(oldname.latin1(), newName.latin1())== -1) 882 QString oldname = currentDir.canonicalPath() + "/" + curFile;
938 QMessageBox::message(tr("Note"),tr("Could not rename")); 883 QString newName = currentDir.canonicalPath() + "/" + fileDlg->LineEdit1->text();//+".playlist";
939 } 884 if( rename(oldname.latin1(), newName.latin1())== -1)
940 populateLocalView(); 885 QMessageBox::message(tr("Note"),tr("Could not rename"));
886 }
887 populateLocalView();
888 }
941} 889}
@@ -943,15 +891,17 @@ void AdvancedFm::localRename()
943void AdvancedFm::remoteRename() 891void AdvancedFm::remoteRename()
944{ 892 {
945 QString curFile = Local_View->currentItem()->text(0); 893 QString curFile = Remote_View->currentItem()->text(0);
946 InputDialog *fileDlg; 894 if( curFile !="../") {
947 fileDlg = new InputDialog(this,tr("Rename"),TRUE, 0); 895 InputDialog *fileDlg;
948 fileDlg->setInputText((const QString &)curFile); 896 fileDlg = new InputDialog(this,tr("Rename"),TRUE, 0);
949 fileDlg->exec(); 897 fileDlg->setInputText((const QString &)curFile);
950 if( fileDlg->result() == 1 ) { 898 fileDlg->exec();
951 QString oldname = currentRemoteDir.canonicalPath() + "/" + curFile; 899 if( fileDlg->result() == 1 ) {
952 QString newName = currentRemoteDir.canonicalPath() + "/" + fileDlg->LineEdit1->text();//+".playlist"; 900 QString oldname = currentRemoteDir.canonicalPath() + "/" + curFile;
953 if( rename(oldname.latin1(), newName.latin1())== -1) 901 QString newName = currentRemoteDir.canonicalPath() + "/" + fileDlg->LineEdit1->text();//+".playlist";
954 QMessageBox::message(tr("Note"),tr("Could not rename")); 902 if( rename(oldname.latin1(), newName.latin1())== -1)
955 } 903 QMessageBox::message(tr("Note"),tr("Could not rename"));
956 populateRemoteView(); 904 }
905 populateRemoteView();
906 }
957} 907}
@@ -1057,4 +1007,2 @@ void AdvancedFm::filePerms() {
1057 } 1007 }
1058
1059
1060} 1008}
@@ -1065,3 +1013,2 @@ void AdvancedFm::doProperties() {
1065 if (TabWidget->currentPageIndex() == 0) { 1013 if (TabWidget->currentPageIndex() == 0) {
1066
1067 filePath = currentDir.canonicalPath()+"/"; 1014 filePath = currentDir.canonicalPath()+"/";
@@ -1186,2 +1133,3 @@ void AdvancedFm::copy()
1186 QStringList curFileList = getPath(); 1133 QStringList curFileList = getPath();
1134 if( curFileList.count() > 0) {
1187 QString curFile; 1135 QString curFile;
@@ -1230,2 +1178,3 @@ void AdvancedFm::copy()
1230} 1178}
1179}
1231 1180
@@ -1234,2 +1183,3 @@ void AdvancedFm::copyAs()
1234 QStringList curFileList = getPath(); 1183 QStringList curFileList = getPath();
1184 if( curFileList.count() > 0) {
1235 QString curFile; 1185 QString curFile;
@@ -1286,3 +1236,4 @@ void AdvancedFm::copyAs()
1286 } 1236 }
1287 } 1237 }
1238}
1288} 1239}
@@ -1292,2 +1243,3 @@ void AdvancedFm::move() {
1292 QStringList curFileList = getPath(); 1243 QStringList curFileList = getPath();
1244 if( curFileList.count() > 0) {
1293 QString curFile; 1245 QString curFile;
@@ -1343,2 +1295,3 @@ void AdvancedFm::move() {
1343 populateLocalView(); 1295 populateLocalView();
1296}
1344 } 1297 }
@@ -1576,2 +1529,3 @@ void AdvancedFm::mkSym() {
1576 QStringList curFileList = getPath(); 1529 QStringList curFileList = getPath();
1530 if( curFileList.count() > 0) {
1577 1531
@@ -1588,4 +1542,4 @@ void AdvancedFm::mkSym() {
1588 } 1542 }
1589 populateRemoteView(); 1543 populateRemoteView();
1590 TabWidget->setCurrentPage(1); 1544 TabWidget->setCurrentPage(1);
1591 } else { 1545 } else {
@@ -1602,6 +1556,7 @@ void AdvancedFm::mkSym() {
1602 } 1556 }
1603 populateLocalView(); 1557 populateLocalView();
1604 TabWidget->setCurrentPage(0); 1558 TabWidget->setCurrentPage(0);
1605 } 1559 }
1606} 1560}
1561}
1607 1562
@@ -1665,30 +1620,33 @@ QString AdvancedFm::getFileSystemType(const QString &currentText) {
1665void AdvancedFm::doBeam() { 1620void AdvancedFm::doBeam() {
1666 Ir ir; 1621 Ir ir;
1667 if(!ir.supported()){ 1622 if(!ir.supported()){
1668 } else { 1623 } else {
1669 1624
1670 QStringList curFileList = getPath(); 1625 QStringList curFileList = getPath();
1626 if( curFileList.count() > 0) {
1671 1627
1672 if (TabWidget->currentPageIndex() == 0) { 1628 if (TabWidget->currentPageIndex() == 0) {
1673 for ( QStringList::Iterator it = curFileList.begin(); it != curFileList.end(); ++it ) { 1629 for ( QStringList::Iterator it = curFileList.begin(); it != curFileList.end(); ++it ) {
1630
1631 QString curFile = currentDir.canonicalPath()+"/"+(*it);
1632 if( curFile.right(1) == "/") curFile = curFile.left( curFile.length() -1);
1633 Ir *file = new Ir(this, "IR");
1634 connect(file, SIGNAL(done(Ir*)), this, SLOT( fileBeamFinished( Ir * )));
1635 file->send( curFile, curFile );
1636 }
1674 1637
1675 QString curFile = currentDir.canonicalPath()+"/"+(*it); 1638 } else {
1676 if( curFile.right(1) == "/") curFile = curFile.left( curFile.length() -1); 1639 for ( QStringList::Iterator it = curFileList.begin(); it != curFileList.end(); ++it ) {
1677 Ir *file = new Ir(this, "IR");
1678 connect(file, SIGNAL(done(Ir*)), this, SLOT( fileBeamFinished( Ir * )));
1679 file->send( curFile, curFile );
1680 }
1681 1640
1682 } else { 1641 QString curFile = currentRemoteDir.canonicalPath()+"/"+(*it);
1683 for ( QStringList::Iterator it = curFileList.begin(); it != curFileList.end(); ++it ) { 1642 if( curFile.right(1) == "/") curFile = curFile.left( curFile.length() -1);
1643 Ir *file = new Ir(this, "IR");
1644 connect(file, SIGNAL(done(Ir*)), this, SLOT( fileBeamFinished( Ir * )));
1645 file->send( curFile, curFile );
1684 1646
1685 QString curFile = currentRemoteDir.canonicalPath()+"/"+(*it); 1647 }
1686 if( curFile.right(1) == "/") curFile = curFile.left( curFile.length() -1); 1648 }
1687 Ir *file = new Ir(this, "IR"); 1649 }
1688 connect(file, SIGNAL(done(Ir*)), this, SLOT( fileBeamFinished( Ir * ))); 1650}
1689 file->send( curFile, curFile );
1690 1651
1691 }
1692 }
1693 }
1694} 1652}
@@ -1710 +1668,86 @@ void AdvancedFm::fileBeamFinished( Ir *ir) {
1710// } 1668// }
1669
1670void AdvancedFm::showFileMenu() {
1671 QString curApp;
1672 bool isLocalView = false;
1673 if (TabWidget->currentPageIndex() == 0) {
1674 isLocalView = TRUE;
1675 curApp = Local_View->currentItem()->text(0);
1676 } else {
1677 curApp = Remote_View->currentItem()->text(0);
1678 }
1679
1680 MimeType mt( curApp );
1681 const AppLnk* app = mt.application();
1682 QFile fi(curApp);
1683
1684 QPopupMenu m;
1685 m.insertItem( tr( "Show Hidden Files" ), this, SLOT( showHidden() ));
1686 m.insertSeparator();
1687 if ( QFileInfo(fi).isDir() ) {
1688 m.insertItem( tr( "Change Directory" ), this, SLOT( doLocalCd() ));
1689 } else {
1690
1691 if ( app )
1692 m.insertItem( app->pixmap(), tr( "Open in " + app->name() ), this, SLOT( run() ) );
1693 else if( QFileInfo(fi).isExecutable() )
1694 m.insertItem( tr( "Execute" ), this, SLOT( run() ) );
1695
1696 m.insertItem( /*Resource::loadPixmap( "txt" ),*/ tr( "Open as text" ),this, SLOT( runText() ) );
1697 }
1698 m.insertSeparator();
1699
1700
1701 if(isLocalView)
1702 m.insertItem( tr( "Make Directory" ), this, SLOT( localMakDir() ));
1703 else
1704 m.insertItem( tr( "Make Directory" ), this, SLOT( remoteMakDir() ));
1705
1706 m.insertItem( tr( "Make Symlink" ), this, SLOT( mkSym() ));
1707 m.insertSeparator();
1708
1709 if(isLocalView)
1710 m.insertItem( tr( "Rename" ), this, SLOT( localRename() ));
1711 else
1712 m.insertItem( tr( "Rename" ), this, SLOT( remoteRename() ));
1713
1714 m.insertItem( tr( "Copy" ), this, SLOT( copy() ));
1715 m.insertItem( tr( "Copy As" ), this, SLOT( copyAs() ));
1716 m.insertItem( tr( "Move" ), this, SLOT( move() ));
1717 m.insertSeparator();
1718
1719 if(isLocalView)
1720 m.insertItem( tr( "Rescan" ), this, SLOT( populateLocalView() ));
1721 else
1722 m.insertItem( tr( "Rescan" ), this, SLOT( populateRemoteView() ));
1723
1724 m.insertItem( tr( "Run Command" ), this, SLOT( runCommand() ));
1725 m.insertItem( tr( "File Info" ), this, SLOT( fileStatus() ));
1726 m.insertSeparator();
1727
1728 if(isLocalView)
1729 m.insertItem( tr( "Delete" ), this, SLOT( localDelete() ));
1730 else
1731 m.insertItem( tr( "Delete" ), this, SLOT( remoteDelete() ));
1732
1733 m.insertSeparator();
1734 m.insertItem( tr( "Set Permissions" ), this, SLOT( filePerms() ));
1735 if( QFile(QPEApplication::qpeDir()+"lib/libopie.so").exists() ) //bad hack for Sharp zaurus failings
1736 m.insertItem( tr( "Properties" ), this, SLOT( doProperties() ));
1737 m.setCheckable(TRUE);
1738 if (!b)
1739 m.setItemChecked(m.idAt(0),TRUE);
1740 else
1741 m.setItemChecked(m.idAt(0),FALSE);
1742 if(Ir::supported())
1743 m.insertItem( tr( "Beam File" ), this, SLOT( doBeam() ));
1744 m.exec( QCursor::pos() );
1745}
1746
1747
1748void AdvancedFm::cancelMenuTimer()
1749{
1750qDebug("cancel menu timer");
1751 if( menuTimer.isActive() )
1752 menuTimer.stop();
1753}
diff --git a/noncore/apps/advancedfm/advancedfm.h b/noncore/apps/advancedfm/advancedfm.h
index 5817fca..0cf94c6 100644
--- a/noncore/apps/advancedfm/advancedfm.h
+++ b/noncore/apps/advancedfm/advancedfm.h
@@ -14,2 +14,4 @@
14 14
15#include <qpe/ir.h>
16
15#include <qvariant.h> 17#include <qvariant.h>
@@ -17,2 +19,3 @@
17#include <qmainwindow.h> 19#include <qmainwindow.h>
20#include <qstringlist.h>
18#include <qdir.h> 21#include <qdir.h>
@@ -20,4 +23,3 @@
20#include <qpoint.h> 23#include <qpoint.h>
21#include <qstringlist.h> 24#include <qtimer.h>
22#include <qpe/ir.h>
23 25
@@ -41,2 +43,3 @@ class QLineEdit;
41class QPushButton; 43class QPushButton;
44class Ir;
42 45
@@ -64,4 +67,2 @@ public:
64protected slots: 67protected slots:
65 void showLocalMenu( QListViewItem *);
66 void showRemoteMenu( QListViewItem *);
67 void doLocalCd(); 68 void doLocalCd();
@@ -106,2 +107,3 @@ protected:
106 QStringList remoteDirPathStringList, localDirPathStringList; 107 QStringList remoteDirPathStringList, localDirPathStringList;
108
107 void keyReleaseEvent( QKeyEvent *); 109 void keyReleaseEvent( QKeyEvent *);
@@ -111,2 +113,4 @@ protected:
111protected slots: 113protected slots:
114 void showFileMenu();
115 void cancelMenuTimer();
112 void homeButtonPushed(); 116 void homeButtonPushed();
@@ -127,3 +131,5 @@ protected slots:
127 void doBeam(); 131 void doBeam();
128 void fileBeamFinished( Ir *ir); 132 void fileBeamFinished( Ir *);
133private:
134 QTimer menuTimer;
129}; 135};