summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieftp/opieftp.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/net/opieftp/opieftp.cpp b/noncore/net/opieftp/opieftp.cpp
index 6d0be57..0b88a35 100644
--- a/noncore/net/opieftp/opieftp.cpp
+++ b/noncore/net/opieftp/opieftp.cpp
@@ -673,403 +673,405 @@ bool OpieFtp::populateRemoteView( )
673 QString fileL, fileS, fileDate; 673 QString fileL, fileS, fileDate;
674 if ( file.open(IO_ReadOnly)) { 674 if ( file.open(IO_ReadOnly)) {
675 QTextStream t( &file ); // use a text stream 675 QTextStream t( &file ); // use a text stream
676 while ( !t.eof()) { 676 while ( !t.eof()) {
677 s = t.readLine(); 677 s = t.readLine();
678 fileL = s.right(s.length()-55); 678 fileL = s.right(s.length()-55);
679 fileL = fileL.stripWhiteSpace(); 679 fileL = fileL.stripWhiteSpace();
680 if(s.left(1) == "d") 680 if(s.left(1) == "d")
681 fileL = fileL+"/"; 681 fileL = fileL+"/";
682// fileL = "/"+fileL+"/"; 682// fileL = "/"+fileL+"/";
683 fileS = s.mid( 30, 42-30); 683 fileS = s.mid( 30, 42-30);
684 fileS = fileS.stripWhiteSpace(); 684 fileS = fileS.stripWhiteSpace();
685 fileDate = s.mid( 42, 55-42); 685 fileDate = s.mid( 42, 55-42);
686 fileDate = fileDate.stripWhiteSpace(); 686 fileDate = fileDate.stripWhiteSpace();
687 if(fileL.find("total",0,TRUE) == -1) { 687 if(fileL.find("total",0,TRUE) == -1) {
688 if(s.left(1) == "d" || fileL.find("/",0,TRUE) != -1) { 688 if(s.left(1) == "d" || fileL.find("/",0,TRUE) != -1) {
689 QListViewItem * item = new QListViewItem( Remote_View, fileL, fileDate, fileS,"d"); 689 QListViewItem * item = new QListViewItem( Remote_View, fileL, fileDate, fileS,"d");
690 item->setPixmap( 0, Resource::loadPixmap( "folder" )); 690 item->setPixmap( 0, Resource::loadPixmap( "folder" ));
691// if(itemDir) 691// if(itemDir)
692 item->moveItem(itemDir); 692 item->moveItem(itemDir);
693 itemDir=item; 693 itemDir=item;
694 } else { 694 } else {
695 QListViewItem * item = new QListViewItem( Remote_View, fileL, fileDate, fileS,"f"); 695 QListViewItem * item = new QListViewItem( Remote_View, fileL, fileDate, fileS,"f");
696 item->setPixmap( 0, Resource::loadPixmap( "fileopen" )); 696 item->setPixmap( 0, Resource::loadPixmap( "fileopen" ));
697// if(itemFile) 697// if(itemFile)
698 item->moveItem(itemDir); 698 item->moveItem(itemDir);
699 item->moveItem(itemFile); 699 item->moveItem(itemFile);
700 itemFile=item; 700 itemFile=item;
701 } 701 }
702 } 702 }
703 } 703 }
704 QListViewItem * item1 = new QListViewItem( Remote_View, "../"); 704 QListViewItem * item1 = new QListViewItem( Remote_View, "../");
705 item1->setPixmap( 0, Resource::loadPixmap( "folder" )); 705 item1->setPixmap( 0, Resource::loadPixmap( "folder" ));
706 file.close(); 706 file.close();
707 if( file.exists()) 707 if( file.exists())
708 file. remove(); 708 file. remove();
709 } else 709 } else
710 qDebug("temp file not opened successfullly "+sfile); 710 qDebug("temp file not opened successfullly "+sfile);
711 Remote_View->setSorting( 4,TRUE); 711 Remote_View->setSorting( 4,TRUE);
712 return true; 712 return true;
713} 713}
714 714
715void OpieFtp::remoteListClicked(QListViewItem *selectedItem) 715void OpieFtp::remoteListClicked(QListViewItem *selectedItem)
716{ 716{
717 if( selectedItem) { 717 if( selectedItem) {
718// QCopEnvelope ( "QPE/System", "busy()" ); 718// QCopEnvelope ( "QPE/System", "busy()" );
719 QString oldRemoteCurrentDir = currentRemoteDir; 719 QString oldRemoteCurrentDir = currentRemoteDir;
720 QString strItem=selectedItem->text(0); 720 QString strItem=selectedItem->text(0);
721 strItem=strItem.simplifyWhiteSpace(); 721 strItem=strItem.simplifyWhiteSpace();
722 if(strItem == "../") { // the user wants to go ^ 722 if(strItem == "../") { // the user wants to go ^
723 if( FtpCDUp( conn) == 0) { 723 if( FtpCDUp( conn) == 0) {
724 QString msg; 724 QString msg;
725 msg.sprintf(tr("Unable to cd up\n")+"%s",FtpLastResponse(conn)); 725 msg.sprintf(tr("Unable to cd up\n")+"%s",FtpLastResponse(conn));
726 msg.replace(QRegExp(":"),"\n"); 726 msg.replace(QRegExp(":"),"\n");
727 QMessageBox::message(tr("Note"),msg); 727 QMessageBox::message(tr("Note"),msg);
728// qDebug(msg); 728// qDebug(msg);
729 } 729 }
730 char path[256]; 730 char path[256];
731 if( FtpPwd( path,sizeof(path),conn) == 0) { //this is easier than fudging the string 731 if( FtpPwd( path,sizeof(path),conn) == 0) { //this is easier than fudging the string
732 QString msg; 732 QString msg;
733 msg.sprintf(tr("Unable to get working dir\n")+"%s",FtpLastResponse(conn)); 733 msg.sprintf(tr("Unable to get working dir\n")+"%s",FtpLastResponse(conn));
734 msg.replace(QRegExp(":"),"\n"); 734 msg.replace(QRegExp(":"),"\n");
735 QMessageBox::message(tr("Note"),msg); 735 QMessageBox::message(tr("Note"),msg);
736// qDebug(msg); 736// qDebug(msg);
737 } 737 }
738 currentRemoteDir=path; 738 currentRemoteDir=path;
739 } else { 739 } else {
740 if(strItem.find("->",0,TRUE) != -1) { //symlink on some servers 740 if(strItem.find("->",0,TRUE) != -1) { //symlink on some servers
741 strItem=strItem.right( strItem.length() - strItem.find("->",0,TRUE) - 2 ); 741 strItem=strItem.right( strItem.length() - strItem.find("->",0,TRUE) - 2 );
742 strItem = strItem.stripWhiteSpace(); 742 strItem = strItem.stripWhiteSpace();
743 currentRemoteDir = strItem; 743 currentRemoteDir = strItem;
744 if( !remoteChDir( (const QString &)strItem)) { 744 if( !remoteChDir( (const QString &)strItem)) {
745 currentRemoteDir = oldRemoteCurrentDir; 745 currentRemoteDir = oldRemoteCurrentDir;
746 strItem=""; 746 strItem="";
747// qDebug("RemoteCurrentDir1 "+oldRemoteCurrentDir); 747// qDebug("RemoteCurrentDir1 "+oldRemoteCurrentDir);
748 } 748 }
749 } else if(strItem.find("/",0,TRUE) != -1) { // this is a directory 749 } else if(strItem.find("/",0,TRUE) != -1) { // this is a directory
750 if( !remoteChDir( (const QString &)currentRemoteDir + strItem)) { 750 if( !remoteChDir( (const QString &)currentRemoteDir + strItem)) {
751 currentRemoteDir = oldRemoteCurrentDir; 751 currentRemoteDir = oldRemoteCurrentDir;
752 strItem=""; 752 strItem="";
753// qDebug("RemoteCurrentDir1 "+oldRemoteCurrentDir); 753// qDebug("RemoteCurrentDir1 "+oldRemoteCurrentDir);
754 754
755 } else { 755 } else {
756 currentRemoteDir = currentRemoteDir+strItem; 756 currentRemoteDir = currentRemoteDir+strItem;
757 } 757 }
758 } else { 758 } else {
759// QCopEnvelope ( "QPE/System", "notBusy()" ); 759// QCopEnvelope ( "QPE/System", "notBusy()" );
760 return; 760 return;
761 } 761 }
762 } 762 }
763 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate 763 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate
764 if(currentRemoteDir.right(1) !="/") 764 if(currentRemoteDir.right(1) !="/")
765 currentRemoteDir +="/"; 765 currentRemoteDir +="/";
766 currentPathCombo->lineEdit()->setText( currentRemoteDir); 766 currentPathCombo->lineEdit()->setText( currentRemoteDir);
767 fillRemoteCombo( (const QString &)currentRemoteDir); 767 fillRemoteCombo( (const QString &)currentRemoteDir);
768// QCopEnvelope ( "QPE/System", "notBusy()" ); 768// QCopEnvelope ( "QPE/System", "notBusy()" );
769 } 769 }
770} 770}
771 771
772void OpieFtp::localListClicked(QListViewItem *selectedItem) 772void OpieFtp::localListClicked(QListViewItem *selectedItem)
773{ 773{
774 if(selectedItem!= NULL) { 774 if(selectedItem!= NULL) {
775 775
776 QString strItem=selectedItem->text(0); 776 QString strItem=selectedItem->text(0);
777 QString strSize=selectedItem->text(1); 777 QString strSize=selectedItem->text(1);
778 strSize=strSize.stripWhiteSpace(); 778 strSize=strSize.stripWhiteSpace();
779 if(strItem.find("@",0,TRUE) !=-1 || strItem.find("->",0,TRUE) !=-1 ) { //if symlink 779 if(strItem.find("@",0,TRUE) !=-1 || strItem.find("->",0,TRUE) !=-1 ) { //if symlink
780 // is symlink 780 // is symlink
781 QString strItem2 = strItem.right( (strItem.length() - strItem.find("->",0,TRUE)) - 4); 781 QString strItem2 = strItem.right( (strItem.length() - strItem.find("->",0,TRUE)) - 4);
782 if(QDir(strItem2).exists() ) { 782 if(QDir(strItem2).exists() ) {
783 currentDir.cd(strItem2, TRUE); 783 currentDir.cd(strItem2, TRUE);
784 populateLocalView(); 784 populateLocalView();
785 } 785 }
786 } else { // not a symlink 786 } else { // not a symlink
787 if(strItem.find(". .",0,TRUE) && strItem.find("/",0,TRUE)!=-1 ) { 787 if(strItem.find(". .",0,TRUE) && strItem.find("/",0,TRUE)!=-1 ) {
788 788
789 if(QDir(QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem)).exists() ) { 789 if(QDir(QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem)).exists() ) {
790 strItem=QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem); 790 strItem=QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem);
791 currentDir.cd(strItem,FALSE); 791 currentDir.cd(strItem,FALSE);
792 populateLocalView(); 792 populateLocalView();
793 } else { 793 } else {
794 currentDir.cdUp(); 794 currentDir.cdUp();
795 populateLocalView(); 795 populateLocalView();
796 } 796 }
797 if(QDir(strItem).exists()){ 797 if(QDir(strItem).exists()){
798 currentDir.cd(strItem, TRUE); 798 currentDir.cd(strItem, TRUE);
799 populateLocalView(); 799 populateLocalView();
800 } 800 }
801 } else { 801 } else {
802 strItem=QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem); 802 strItem=QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem);
803 if( QFile::exists(strItem ) ) { 803 if( QFile::exists(strItem ) ) {
804 // qDebug("upload "+strItem); 804 // qDebug("upload "+strItem);
805 return; 805 return;
806 } 806 }
807 } //end not symlink 807 } //end not symlink
808 chdir(strItem.latin1()); 808 chdir(strItem.latin1());
809 } 809 }
810 } 810 }
811} 811}
812 812
813void OpieFtp::doLocalCd() 813void OpieFtp::doLocalCd()
814{ 814{
815 localListClicked( Local_View->currentItem()); 815 localListClicked( Local_View->currentItem());
816} 816}
817 817
818void OpieFtp:: doRemoteCd() 818void OpieFtp:: doRemoteCd()
819{ 819{
820 remoteListClicked( Remote_View->currentItem()); 820 remoteListClicked( Remote_View->currentItem());
821 821
822} 822}
823 823
824void OpieFtp::showHidden() 824void OpieFtp::showHidden()
825{ 825{
826 if (!b) { 826 if (!b) {
827 currentDir.setFilter( QDir::Files | QDir::Dirs | QDir::Hidden | QDir::All); 827 currentDir.setFilter( QDir::Files | QDir::Dirs | QDir::Hidden | QDir::All);
828 localMenu->setItemChecked(localMenu->idAt(0),TRUE); 828 localMenu->setItemChecked(localMenu->idAt(0),TRUE);
829// currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst); 829// currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst);
830 b=TRUE; 830 b=TRUE;
831 831
832 } else { 832 } else {
833 currentDir.setFilter( QDir::Files | QDir::Dirs/* | QDir::Hidden*/ | QDir::All); 833 currentDir.setFilter( QDir::Files | QDir::Dirs/* | QDir::Hidden*/ | QDir::All);
834 localMenu->setItemChecked(localMenu->idAt(0),FALSE); 834 localMenu->setItemChecked(localMenu->idAt(0),FALSE);
835// currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst); 835// currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst);
836 b=FALSE; 836 b=FALSE;
837 } 837 }
838 populateLocalView(); 838 populateLocalView();
839} 839}
840 840
841void OpieFtp::ListPressed( int mouse, QListViewItem *item, const QPoint &point, int i) 841void OpieFtp::ListPressed( int mouse, QListViewItem *item, const QPoint &point, int i)
842{ 842{
843// if(item) 843// if(item)
844 if (mouse == 2) { 844 if (mouse == 2) {
845 showLocalMenu(item); 845 showLocalMenu(item);
846 } 846 }
847} 847}
848 848
849void OpieFtp::RemoteListPressed( int mouse, QListViewItem *item, const QPoint &point, int i) 849void OpieFtp::RemoteListPressed( int mouse, QListViewItem *item, const QPoint &point, int i)
850{ 850{
851 if(mouse == 2) { 851 if(mouse == 2) {
852 showRemoteMenu(item); 852 showRemoteMenu(item);
853 } 853 }
854} 854}
855 855
856void OpieFtp::showRemoteMenu(QListViewItem * item) 856void OpieFtp::showRemoteMenu(QListViewItem * item)
857{ 857{
858 QPopupMenu * m;// = new QPopupMenu( Local_View ); 858 QPopupMenu * m;// = new QPopupMenu( Local_View );
859 m = new QPopupMenu(this); 859 m = new QPopupMenu(this);
860 if( /*item->text(0).right(1) == "/" ||*/ item->text(0).find("/",0,TRUE) != -1) 860 if( /*item->text(0).right(1) == "/" ||*/ item->text(0).find("/",0,TRUE) != -1)
861 m->insertItem( tr( "Change Directory" ), this, SLOT( doRemoteCd() )); 861 m->insertItem( tr( "Change Directory" ), this, SLOT( doRemoteCd() ));
862 else 862 else
863 m->insertItem( tr( "Download" ), this, SLOT( remoteDownload() )); 863 m->insertItem( tr( "Download" ), this, SLOT( remoteDownload() ));
864 m->insertItem( tr( "Make Directory" ), this, SLOT( remoteMakDir() )); 864 m->insertItem( tr( "Make Directory" ), this, SLOT( remoteMakDir() ));
865 m->insertItem( tr("Rescan"), this, SLOT( populateLocalView() ));
865 m->insertItem( tr( "Rename" ), this, SLOT( remoteRename() )); 866 m->insertItem( tr( "Rename" ), this, SLOT( remoteRename() ));
866 m->insertSeparator(); 867 m->insertSeparator();
867 m->insertItem( tr( "Delete" ), this, SLOT( remoteDelete() )); 868 m->insertItem( tr( "Delete" ), this, SLOT( remoteDelete() ));
868 m->exec( QCursor::pos() ); 869 m->exec( QCursor::pos() );
869 delete m; 870 delete m;
870} 871}
871 872
872void OpieFtp::showLocalMenu(QListViewItem * item) 873void OpieFtp::showLocalMenu(QListViewItem * item)
873{ 874{
874 875
875 QPopupMenu *m; 876 QPopupMenu *m;
876 m = new QPopupMenu( this); 877 m = new QPopupMenu( this);
877 m->insertItem( tr( "Show Hidden Files" ), this, SLOT( showHidden() )); 878 m->insertItem( tr( "Show Hidden Files" ), this, SLOT( showHidden() ));
878 m->insertSeparator(); 879 m->insertSeparator();
879 if( /*item->text(0).right(1) == "/" ||*/ item->text(0).find("/",0,TRUE) !=-1) 880 if( /*item->text(0).right(1) == "/" ||*/ item->text(0).find("/",0,TRUE) !=-1)
880 m->insertItem( tr( "Change Directory" ), this, SLOT( doLocalCd() )); 881 m->insertItem( tr( "Change Directory" ), this, SLOT( doLocalCd() ));
881 else 882 else
882 m->insertItem( tr( "Upload" ), this, SLOT( localUpload() )); 883 m->insertItem( tr( "Upload" ), this, SLOT( localUpload() ));
883 m->insertItem( tr( "Make Directory" ), this, SLOT( localMakDir() )); 884 m->insertItem( tr( "Make Directory" ), this, SLOT( localMakDir() ));
885 m->insertItem( tr("Rescan"), this, SLOT( populateRemoteView() ));
884 m->insertItem( tr( "Rename" ), this, SLOT( localRename() )); 886 m->insertItem( tr( "Rename" ), this, SLOT( localRename() ));
885 m->insertSeparator(); 887 m->insertSeparator();
886 m->insertItem( tr( "Delete" ), this, SLOT( localDelete() )); 888 m->insertItem( tr( "Delete" ), this, SLOT( localDelete() ));
887 m->setCheckable(TRUE); 889 m->setCheckable(TRUE);
888 if (b) 890 if (b)
889 m->setItemChecked(m->idAt(0),TRUE); 891 m->setItemChecked(m->idAt(0),TRUE);
890 else 892 else
891 m->setItemChecked(m->idAt(0),FALSE); 893 m->setItemChecked(m->idAt(0),FALSE);
892 894
893 m->exec( QCursor::pos() ); 895 m->exec( QCursor::pos() );
894 delete m; 896 delete m;
895} 897}
896 898
897void OpieFtp::localMakDir() 899void OpieFtp::localMakDir()
898{ 900{
899 InputDialog *fileDlg; 901 InputDialog *fileDlg;
900 fileDlg = new InputDialog(this,tr("Make Directory"),TRUE, 0); 902 fileDlg = new InputDialog(this,tr("Make Directory"),TRUE, 0);
901 fileDlg->exec(); 903 fileDlg->exec();
902 if( fileDlg->result() == 1 ) { 904 if( fileDlg->result() == 1 ) {
903 QString filename = fileDlg->LineEdit1->text(); 905 QString filename = fileDlg->LineEdit1->text();
904 currentDir.mkdir( currentDir.canonicalPath()+"/"+filename); 906 currentDir.mkdir( currentDir.canonicalPath()+"/"+filename);
905 } 907 }
906 populateLocalView(); 908 populateLocalView();
907} 909}
908 910
909void OpieFtp::localDelete() 911void OpieFtp::localDelete()
910{ 912{
911 QList<QListViewItem> * getSelectedItems( QListView * Local_View ); 913 QList<QListViewItem> * getSelectedItems( QListView * Local_View );
912 QListViewItemIterator it( Local_View ); 914 QListViewItemIterator it( Local_View );
913 for ( ; it.current(); ++it ) { 915 for ( ; it.current(); ++it ) {
914 if ( it.current()->isSelected() ) { 916 if ( it.current()->isSelected() ) {
915 QString f = it.current()->text(0); 917 QString f = it.current()->text(0);
916 it.current()->setSelected(FALSE); 918 it.current()->setSelected(FALSE);
917 919
918// QString f = Local_View->currentItem()->text(0); 920// QString f = Local_View->currentItem()->text(0);
919 if(QDir(f).exists() ) { 921 if(QDir(f).exists() ) {
920 switch ( QMessageBox::warning(this,tr("Delete"),tr("Do you really want to delete\n")+f+ 922 switch ( QMessageBox::warning(this,tr("Delete"),tr("Do you really want to delete\n")+f+
921 tr(" ?\nIt must be empty"),tr("Yes"),tr("No"),0,0,1) ) { 923 tr(" ?\nIt must be empty"),tr("Yes"),tr("No"),0,0,1) ) {
922 case 0: { 924 case 0: {
923 f=currentDir.canonicalPath()+"/"+f; 925 f=currentDir.canonicalPath()+"/"+f;
924 QString cmd="rmdir "+f; 926 QString cmd="rmdir "+f;
925 system( cmd.latin1()); 927 system( cmd.latin1());
926 } 928 }
927 break; 929 break;
928 case 1: 930 case 1:
929 // exit 931 // exit
930 break; 932 break;
931 }; 933 };
932 934
933 } else { 935 } else {
934 switch ( QMessageBox::warning(this,tr("Delete"),tr("Do you really want to delete\n")+f 936 switch ( QMessageBox::warning(this,tr("Delete"),tr("Do you really want to delete\n")+f
935 +" ?",tr("Yes"),tr("No"),0,0,1) ) { 937 +" ?",tr("Yes"),tr("No"),0,0,1) ) {
936 case 0: { 938 case 0: {
937 f=currentDir.canonicalPath()+"/"+f; 939 f=currentDir.canonicalPath()+"/"+f;
938 QString cmd="rm "+f; 940 QString cmd="rm "+f;
939 system( cmd.latin1()); 941 system( cmd.latin1());
940 } 942 }
941 break; 943 break;
942 case 1: 944 case 1:
943 // exit 945 // exit
944 break; 946 break;
945 }; 947 };
946 } 948 }
947 } 949 }
948 } 950 }
949 populateLocalView(); 951 populateLocalView();
950 952
951} 953}
952 954
953void OpieFtp::remoteMakDir() 955void OpieFtp::remoteMakDir()
954{ 956{
955 InputDialog *fileDlg; 957 InputDialog *fileDlg;
956 fileDlg = new InputDialog(this,tr("Make Directory"),TRUE, 0); 958 fileDlg = new InputDialog(this,tr("Make Directory"),TRUE, 0);
957 fileDlg->exec(); 959 fileDlg->exec();
958 if( fileDlg->result() == 1 ) { 960 if( fileDlg->result() == 1 ) {
959 QString filename = fileDlg->LineEdit1->text();//+".playlist"; 961 QString filename = fileDlg->LineEdit1->text();//+".playlist";
960 QString tmp=currentRemoteDir+filename; 962 QString tmp=currentRemoteDir+filename;
961// QCopEnvelope ( "QPE/System", "busy()" ); 963// QCopEnvelope ( "QPE/System", "busy()" );
962 if(FtpMkdir( tmp.latin1(), conn) == 0) { 964 if(FtpMkdir( tmp.latin1(), conn) == 0) {
963 QString msg; 965 QString msg;
964 msg.sprintf(tr("Unable to make directory\n")+"%s",FtpLastResponse(conn)); 966 msg.sprintf(tr("Unable to make directory\n")+"%s",FtpLastResponse(conn));
965 msg.replace(QRegExp(":"),"\n"); 967 msg.replace(QRegExp(":"),"\n");
966 QMessageBox::message(tr("Note"),msg); 968 QMessageBox::message(tr("Note"),msg);
967 } 969 }
968// QCopEnvelope ( "QPE/System", "notBusy()" ); 970// QCopEnvelope ( "QPE/System", "notBusy()" );
969 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate 971 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate
970 } 972 }
971} 973}
972 974
973void OpieFtp::remoteDelete() 975void OpieFtp::remoteDelete()
974{ 976{
975 QList<QListViewItem> * getSelectedItems( QListView * Remote_View ); 977 QList<QListViewItem> * getSelectedItems( QListView * Remote_View );
976 QListViewItemIterator it( Remote_View ); 978 QListViewItemIterator it( Remote_View );
977 for ( ; it.current(); ++it ) { 979 for ( ; it.current(); ++it ) {
978 if ( it.current()->isSelected() ) { 980 if ( it.current()->isSelected() ) {
979 QString f = it.current()->text(0); 981 QString f = it.current()->text(0);
980// QString f = Remote_View->currentItem()->text(0); 982// QString f = Remote_View->currentItem()->text(0);
981// QCopEnvelope ( "QPE/System", "busy()" ); 983// QCopEnvelope ( "QPE/System", "busy()" );
982 if( f.right(1) =="/") { 984 if( f.right(1) =="/") {
983 QString path= currentRemoteDir+f; 985 QString path= currentRemoteDir+f;
984 switch ( QMessageBox::warning(this,tr("Delete"),tr("Do you really want to delete\n")+f+"?" 986 switch ( QMessageBox::warning(this,tr("Delete"),tr("Do you really want to delete\n")+f+"?"
985 ,tr("Yes"),tr("No"),0,0,1) ) { 987 ,tr("Yes"),tr("No"),0,0,1) ) {
986 case 0: { 988 case 0: {
987 f=currentDir.canonicalPath()+"/"+f; 989 f=currentDir.canonicalPath()+"/"+f;
988 if(FtpRmdir( path.latin1(), conn) ==0) { 990 if(FtpRmdir( path.latin1(), conn) ==0) {
989 QString msg; 991 QString msg;
990 msg.sprintf(tr("Unable to remove directory\n")+"%s",FtpLastResponse(conn)); 992 msg.sprintf(tr("Unable to remove directory\n")+"%s",FtpLastResponse(conn));
991 msg.replace(QRegExp(":"),"\n"); 993 msg.replace(QRegExp(":"),"\n");
992 QMessageBox::message(tr("Note"),msg); 994 QMessageBox::message(tr("Note"),msg);
993 } 995 }
994 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate 996 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate
995 } 997 }
996 break; 998 break;
997 }; 999 };
998 } else { 1000 } else {
999 switch ( QMessageBox::warning(this,tr("Delete"),tr("Do you really want to delete\n")+f+"?" 1001 switch ( QMessageBox::warning(this,tr("Delete"),tr("Do you really want to delete\n")+f+"?"
1000 ,tr("Yes"),tr("No"),0,0,1) ) { 1002 ,tr("Yes"),tr("No"),0,0,1) ) {
1001 case 0: { 1003 case 0: {
1002 QString path= currentRemoteDir+f; 1004 QString path= currentRemoteDir+f;
1003 if(FtpDelete( path.latin1(), conn)==0) { 1005 if(FtpDelete( path.latin1(), conn)==0) {
1004 QString msg; 1006 QString msg;
1005 msg.sprintf(tr("Unable to delete file\n")+"%s",FtpLastResponse(conn)); 1007 msg.sprintf(tr("Unable to delete file\n")+"%s",FtpLastResponse(conn));
1006 msg.replace(QRegExp(":"),"\n"); 1008 msg.replace(QRegExp(":"),"\n");
1007 QMessageBox::message(tr("Note"),msg); 1009 QMessageBox::message(tr("Note"),msg);
1008 } 1010 }
1009 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate 1011 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate
1010 } 1012 }
1011 break; 1013 break;
1012 }; 1014 };
1013 } 1015 }
1014 } 1016 }
1015 } 1017 }
1016// QCopEnvelope ( "QPE/System", "notBusy()" ); 1018// QCopEnvelope ( "QPE/System", "notBusy()" );
1017} 1019}
1018 1020
1019void OpieFtp::remoteRename() 1021void OpieFtp::remoteRename()
1020{ 1022{
1021 QString curFile = Remote_View->currentItem()->text(0); 1023 QString curFile = Remote_View->currentItem()->text(0);
1022 InputDialog *fileDlg; 1024 InputDialog *fileDlg;
1023 fileDlg = new InputDialog(this,tr("Rename"),TRUE, 0); 1025 fileDlg = new InputDialog(this,tr("Rename"),TRUE, 0);
1024 fileDlg->setTextEdit((const QString &)curFile); 1026 fileDlg->setTextEdit((const QString &)curFile);
1025 fileDlg->exec(); 1027 fileDlg->exec();
1026 if( fileDlg->result() == 1 ) { 1028 if( fileDlg->result() == 1 ) {
1027 QString oldName = currentRemoteDir +"/"+ curFile; 1029 QString oldName = currentRemoteDir +"/"+ curFile;
1028 QString newName = currentRemoteDir +"/"+ fileDlg->LineEdit1->text();//+".playlist"; 1030 QString newName = currentRemoteDir +"/"+ fileDlg->LineEdit1->text();//+".playlist";
1029// QCopEnvelope ( "QPE/System", "busy()" ); 1031// QCopEnvelope ( "QPE/System", "busy()" );
1030 if(FtpRename( oldName.latin1(), newName.latin1(),conn) == 0) { 1032 if(FtpRename( oldName.latin1(), newName.latin1(),conn) == 0) {
1031 QString msg; 1033 QString msg;
1032 msg.sprintf(tr("Unable to rename file\n")+"%s",FtpLastResponse(conn)); 1034 msg.sprintf(tr("Unable to rename file\n")+"%s",FtpLastResponse(conn));
1033 msg.replace(QRegExp(":"),"\n"); 1035 msg.replace(QRegExp(":"),"\n");
1034 QMessageBox::message(tr("Note"),msg); 1036 QMessageBox::message(tr("Note"),msg);
1035 } 1037 }
1036// QCopEnvelope ( "QPE/System", "notBusy()" ); 1038// QCopEnvelope ( "QPE/System", "notBusy()" );
1037 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate 1039 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate
1038 } 1040 }
1039} 1041}
1040 1042
1041void OpieFtp::localRename() 1043void OpieFtp::localRename()
1042{ 1044{
1043 QString curFile = Local_View->currentItem()->text(0); 1045 QString curFile = Local_View->currentItem()->text(0);
1044 InputDialog *fileDlg; 1046 InputDialog *fileDlg;
1045 fileDlg = new InputDialog(this,tr("Rename"),TRUE, 0); 1047 fileDlg = new InputDialog(this,tr("Rename"),TRUE, 0);
1046 fileDlg->setTextEdit((const QString &)curFile); 1048 fileDlg->setTextEdit((const QString &)curFile);
1047 fileDlg->exec(); 1049 fileDlg->exec();
1048 if( fileDlg->result() == 1 ) { 1050 if( fileDlg->result() == 1 ) {
1049 QString oldname = currentDir.canonicalPath() + "/" + curFile; 1051 QString oldname = currentDir.canonicalPath() + "/" + curFile;
1050 QString newName = currentDir.canonicalPath() + "/" + fileDlg->LineEdit1->text();//+".playlist"; 1052 QString newName = currentDir.canonicalPath() + "/" + fileDlg->LineEdit1->text();//+".playlist";
1051 if( rename(oldname.latin1(), newName.latin1())== -1) 1053 if( rename(oldname.latin1(), newName.latin1())== -1)
1052 QMessageBox::message(tr("Note"),tr("Could not rename")); 1054 QMessageBox::message(tr("Note"),tr("Could not rename"));
1053 } 1055 }
1054 populateLocalView(); 1056 populateLocalView();
1055} 1057}
1056 1058
1057void OpieFtp::currentPathComboActivated(const QString & currentPath) { 1059void OpieFtp::currentPathComboActivated(const QString & currentPath) {
1058 if (TabWidget->currentPageIndex() == 0) { 1060 if (TabWidget->currentPageIndex() == 0) {
1059 chdir( currentPath.latin1() ); 1061 chdir( currentPath.latin1() );
1060 currentDir.cd( currentPath, TRUE); 1062 currentDir.cd( currentPath, TRUE);
1061 populateLocalView(); 1063 populateLocalView();
1062 update(); 1064 update();
1063 } else { 1065 } else {
1064// chdir( currentPath.latin1() ); 1066// chdir( currentPath.latin1() );
1065// currentDir.cd( currentPath, TRUE); 1067// currentDir.cd( currentPath, TRUE);
1066// populateList(); 1068// populateList();
1067// update(); 1069// update();
1068 1070
1069 } 1071 }
1070} 1072}
1071 1073
1072void OpieFtp::fillCombo(const QString &currentPath) { 1074void OpieFtp::fillCombo(const QString &currentPath) {
1073 1075
1074 currentPathCombo->lineEdit()->setText(currentPath); 1076 currentPathCombo->lineEdit()->setText(currentPath);
1075 if( localDirPathStringList.grep(currentPath,TRUE).isEmpty() ) { 1077 if( localDirPathStringList.grep(currentPath,TRUE).isEmpty() ) {