summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieftp/opieftp.cpp38
1 files changed, 22 insertions, 16 deletions
diff --git a/noncore/net/opieftp/opieftp.cpp b/noncore/net/opieftp/opieftp.cpp
index 9beac94..4e14946 100644
--- a/noncore/net/opieftp/opieftp.cpp
+++ b/noncore/net/opieftp/opieftp.cpp
@@ -57,16 +57,16 @@ extern "C" {
57#include <stdlib.h> 57#include <stdlib.h>
58 58
59 59
60QProgressBar *ProgressBar; 60QProgressBar *ProgressBar;
61static netbuf *conn=NULL; 61static netbuf *conn=NULL;
62 62
63static int log_progress(netbuf *ctl, int xfered, void *arg) 63static int log_progress(netbuf *, int xfered, void *)
64{ 64{
65 int fsz = *(int *)arg; 65// int fsz = *(int *)arg;
66 int pct = (xfered * 100) / fsz; 66// int pct = (xfered * 100) / fsz;
67// printf("%3d%%\r", pct); 67// printf("%3d%%\r", pct);
68// fflush(stdout); 68// fflush(stdout);
69 ProgressBar->setProgress(xfered); 69 ProgressBar->setProgress(xfered);
70 qApp->processEvents(); 70 qApp->processEvents();
71 return 1; 71 return 1;
72} 72}
@@ -222,35 +222,38 @@ OpieFtp::OpieFtp( )
222 tabLayout_3->addMultiCellWidget( TextLabel1, 0, 0, 0, 1 ); 222 tabLayout_3->addMultiCellWidget( TextLabel1, 0, 0, 0, 1 );
223 223
224 UsernameComboBox = new QComboBox( FALSE, tab_3, "UsernameComboBox" ); 224 UsernameComboBox = new QComboBox( FALSE, tab_3, "UsernameComboBox" );
225 UsernameComboBox->setEditable(TRUE); 225 UsernameComboBox->setEditable(TRUE);
226 tabLayout_3->addMultiCellWidget( UsernameComboBox, 1, 1, 0, 1 ); 226 tabLayout_3->addMultiCellWidget( UsernameComboBox, 1, 1, 0, 1 );
227 227
228 connect( UsernameComboBox,SIGNAL(textChanged(const QString &)),this,SLOT( UsernameComboBoxEdited(const QString & ) )); 228 connect( UsernameComboBox,SIGNAL(textChanged(const QString &)),this,
229 SLOT( UsernameComboBoxEdited(const QString & ) ));
229 230
230 TextLabel2 = new QLabel( tab_3, "TextLabel2" ); 231 TextLabel2 = new QLabel( tab_3, "TextLabel2" );
231 TextLabel2->setText( tr( "Password" ) ); 232 TextLabel2->setText( tr( "Password" ) );
232 tabLayout_3->addMultiCellWidget( TextLabel2, 0, 0, 2, 3 ); 233 tabLayout_3->addMultiCellWidget( TextLabel2, 0, 0, 2, 3 );
233 234
234 PasswordEdit = new QLineEdit( "", tab_3, "PasswordComboBox" ); 235 PasswordEdit = new QLineEdit( "", tab_3, "PasswordComboBox" );
235 PasswordEdit->setEchoMode(QLineEdit::Password); 236 PasswordEdit->setEchoMode(QLineEdit::Password);
236 tabLayout_3->addMultiCellWidget( PasswordEdit, 1, 1, 2, 3 ); 237 tabLayout_3->addMultiCellWidget( PasswordEdit, 1, 1, 2, 3 );
237 238
238 connect( PasswordEdit,SIGNAL(textChanged(const QString &)),this,SLOT( PasswordEditEdited(const QString & ) )); 239 connect( PasswordEdit,SIGNAL(textChanged(const QString &)),this,
240 SLOT( PasswordEditEdited(const QString & ) ));
239 241
240//PasswordEdit->setFixedWidth(85); 242//PasswordEdit->setFixedWidth(85);
241 TextLabel3 = new QLabel( tab_3, "TextLabel3" ); 243 TextLabel3 = new QLabel( tab_3, "TextLabel3" );
242 TextLabel3->setText( tr( "Remote server" ) ); 244 TextLabel3->setText( tr( "Remote server" ) );
243 tabLayout_3->addMultiCellWidget( TextLabel3, 2, 2, 0, 1 ); 245 tabLayout_3->addMultiCellWidget( TextLabel3, 2, 2, 0, 1 );
244 246
245 ServerComboBox = new QComboBox( FALSE, tab_3, "ServerComboBox" ); 247 ServerComboBox = new QComboBox( FALSE, tab_3, "ServerComboBox" );
246 ServerComboBox->setEditable(TRUE); 248 ServerComboBox->setEditable(TRUE);
247 tabLayout_3->addMultiCellWidget( ServerComboBox, 3, 3, 0, 1 ); 249 tabLayout_3->addMultiCellWidget( ServerComboBox, 3, 3, 0, 1 );
248 250
249 connect(ServerComboBox,SIGNAL(activated(int)),this,SLOT(serverComboSelected(int ) )); 251 connect(ServerComboBox,SIGNAL(activated(int)),this,SLOT(serverComboSelected(int ) ));
250 connect(ServerComboBox,SIGNAL(textChanged(const QString &)),this,SLOT(serverComboEdited(const QString & ) )); 252 connect(ServerComboBox,SIGNAL(textChanged(const QString &)),this,
253 SLOT(serverComboEdited(const QString & ) ));
251 254
252 QLabel *TextLabel5 = new QLabel( tab_3, "TextLabel5" ); 255 QLabel *TextLabel5 = new QLabel( tab_3, "TextLabel5" );
253 TextLabel5->setText( tr( "Remote path" ) ); 256 TextLabel5->setText( tr( "Remote path" ) );
254 tabLayout_3->addMultiCellWidget( TextLabel5, 2, 2, 2, 3 ); 257 tabLayout_3->addMultiCellWidget( TextLabel5, 2, 2, 2, 3 );
255 258
256 259
@@ -344,13 +347,13 @@ void OpieFtp::cleanUp()
344 cfg.setGroup("Server"); 347 cfg.setGroup("Server");
345 cfg.writeEntry("currentServer", currentServerConfig); 348 cfg.writeEntry("currentServer", currentServerConfig);
346 349
347 exit(0); 350 exit(0);
348} 351}
349 352
350void OpieFtp::tabChanged(QWidget *w) 353void OpieFtp::tabChanged(QWidget *)
351{ 354{
352 if (TabWidget->currentPageIndex() == 0) { 355 if (TabWidget->currentPageIndex() == 0) {
353 currentPathCombo->lineEdit()->setText( currentDir.canonicalPath()); 356 currentPathCombo->lineEdit()->setText( currentDir.canonicalPath());
354 tabMenu->setItemChecked(tabMenu->idAt(0),TRUE); 357 tabMenu->setItemChecked(tabMenu->idAt(0),TRUE);
355 tabMenu->setItemChecked(tabMenu->idAt(1),FALSE); 358 tabMenu->setItemChecked(tabMenu->idAt(1),FALSE);
356 tabMenu->setItemChecked(tabMenu->idAt(2),FALSE); 359 tabMenu->setItemChecked(tabMenu->idAt(2),FALSE);
@@ -386,25 +389,25 @@ void OpieFtp::newConnection()
386 ServerComboBox->lineEdit()->setText( ""); 389 ServerComboBox->lineEdit()->setText( "");
387 remotePath->setText( currentRemoteDir = "/"); 390 remotePath->setText( currentRemoteDir = "/");
388 PortSpinBox->setValue( 21); 391 PortSpinBox->setValue( 21);
389 TabWidget->setCurrentPage(2); 392 TabWidget->setCurrentPage(2);
390} 393}
391 394
392void OpieFtp::serverComboEdited(const QString & edit) 395void OpieFtp::serverComboEdited(const QString & )
393{ 396{
394// if( ServerComboBox->text(currentServerConfig) != edit /*edit.isEmpty() */) { 397// if( ServerComboBox->text(currentServerConfig) != edit /*edit.isEmpty() */) {
395// qDebug("ServerComboEdited"); 398// qDebug("ServerComboEdited");
396// // currentServerConfig = -1; 399// // currentServerConfig = -1;
397// } 400// }
398} 401}
399 402
400void OpieFtp::UsernameComboBoxEdited(const QString & use) { 403void OpieFtp::UsernameComboBoxEdited(const QString &) {
401// currentServerConfig = -1; 404// currentServerConfig = -1;
402} 405}
403 406
404void OpieFtp::PasswordEditEdited(const QString & pass) { 407void OpieFtp::PasswordEditEdited(const QString & ) {
405// currentServerConfig = -1; 408// currentServerConfig = -1;
406} 409}
407 410
408void OpieFtp::connectorBtnToggled(bool On) 411void OpieFtp::connectorBtnToggled(bool On)
409{ 412{
410 if(On) { 413 if(On) {
@@ -439,13 +442,13 @@ void OpieFtp::connector()
439 QString ftp_pass = PasswordEdit->text(); 442 QString ftp_pass = PasswordEdit->text();
440 QString port=PortSpinBox->cleanText(); 443 QString port=PortSpinBox->cleanText();
441 port.stripWhiteSpace(); 444 port.stripWhiteSpace();
442 445
443 Config cfg("opieftp"); 446 Config cfg("opieftp");
444 cfg.setGroup("Server"); 447 cfg.setGroup("Server");
445 int current=cfg.readNumEntry("currentServer", 1); 448// int current=cfg.readNumEntry("currentServer", 1);
446 449
447// if(ftp_host!= cfg.readEntry(QString::number( current))) 450// if(ftp_host!= cfg.readEntry(QString::number( current)))
448// currentServerConfig=-1; 451// currentServerConfig=-1;
449// cfg.setGroup(QString::number(current)); 452// cfg.setGroup(QString::number(current));
450// if( ftp_user != cfg.readEntry("Username")) 453// if( ftp_user != cfg.readEntry("Username"))
451// currentServerConfig=-1; 454// currentServerConfig=-1;
@@ -650,18 +653,18 @@ void OpieFtp::populateLocalView()
650 QFileInfo *fi; 653 QFileInfo *fi;
651 while ( (fi=it.current()) ) { 654 while ( (fi=it.current()) ) {
652 if (fi->isSymLink() ){ 655 if (fi->isSymLink() ){
653 QString symLink=fi->readLink(); 656 QString symLink=fi->readLink();
654// qDebug("Symlink detected "+symLink); 657// qDebug("Symlink detected "+symLink);
655 QFileInfo sym( symLink); 658 QFileInfo sym( symLink);
656 fileS.sprintf( "%10li", sym.size() ); 659 fileS.sprintf( "%10i", sym.size() );
657 fileL.sprintf( "%s -> %s", fi->fileName().data(),sym.absFilePath().data() ); 660 fileL.sprintf( "%s -> %s", fi->fileName().data(),sym.absFilePath().data() );
658 fileDate = sym.lastModified().toString(); 661 fileDate = sym.lastModified().toString();
659 } else { 662 } else {
660// qDebug("Not a dir: "+currentDir.canonicalPath()+fileL); 663// qDebug("Not a dir: "+currentDir.canonicalPath()+fileL);
661 fileS.sprintf( "%10li", fi->size() ); 664 fileS.sprintf( "%10i", fi->size() );
662 fileL.sprintf( "%s",fi->fileName().data() ); 665 fileL.sprintf( "%s",fi->fileName().data() );
663 fileDate= fi->lastModified().toString(); 666 fileDate= fi->lastModified().toString();
664 if( QDir(QDir::cleanDirPath(currentDir.canonicalPath()+"/"+fileL)).exists() ) { 667 if( QDir(QDir::cleanDirPath(currentDir.canonicalPath()+"/"+fileL)).exists() ) {
665 fileL+="/"; 668 fileL+="/";
666 isDir=TRUE; 669 isDir=TRUE;
667// qDebug( fileL); 670// qDebug( fileL);
@@ -811,12 +814,14 @@ void OpieFtp::remoteListClicked(QListViewItem *selectedItem)
811 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate 814 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate
812 if(currentRemoteDir.right(1) !="/") 815 if(currentRemoteDir.right(1) !="/")
813 currentRemoteDir +="/"; 816 currentRemoteDir +="/";
814 currentPathCombo->lineEdit()->setText( currentRemoteDir); 817 currentPathCombo->lineEdit()->setText( currentRemoteDir);
815 fillRemoteCombo( (const QString &)currentRemoteDir); 818 fillRemoteCombo( (const QString &)currentRemoteDir);
816// QCopEnvelope ( "QPE/System", "notBusy()" ); 819// QCopEnvelope ( "QPE/System", "notBusy()" );
820 Remote_View->ensureItemVisible(Remote_View->firstChild());
821
817 } 822 }
818} 823}
819 824
820void OpieFtp::localListClicked(QListViewItem *selectedItem) 825void OpieFtp::localListClicked(QListViewItem *selectedItem)
821{ 826{
822 if(selectedItem!= NULL) { 827 if(selectedItem!= NULL) {
@@ -852,12 +857,13 @@ void OpieFtp::localListClicked(QListViewItem *selectedItem)
852 // qDebug("upload "+strItem); 857 // qDebug("upload "+strItem);
853 return; 858 return;
854 } 859 }
855 } //end not symlink 860 } //end not symlink
856 chdir(strItem.latin1()); 861 chdir(strItem.latin1());
857 } 862 }
863 Local_View->ensureItemVisible(Local_View->firstChild());
858 } 864 }
859} 865}
860 866
861void OpieFtp::doLocalCd() 867void OpieFtp::doLocalCd()
862{ 868{
863 localListClicked( Local_View->currentItem()); 869 localListClicked( Local_View->currentItem());
@@ -883,21 +889,21 @@ void OpieFtp::showHidden()
883// currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst); 889// currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst);
884 b=FALSE; 890 b=FALSE;
885 } 891 }
886 populateLocalView(); 892 populateLocalView();
887} 893}
888 894
889void OpieFtp::ListPressed( int mouse, QListViewItem *item, const QPoint &point, int i) 895void OpieFtp::ListPressed( int mouse, QListViewItem *item, const QPoint &, int)
890{ 896{
891// if(item) 897// if(item)
892 if (mouse == 2) { 898 if (mouse == 2) {
893 showLocalMenu(item); 899 showLocalMenu(item);
894 } 900 }
895} 901}
896 902
897void OpieFtp::RemoteListPressed( int mouse, QListViewItem *item, const QPoint &point, int i) 903void OpieFtp::RemoteListPressed( int mouse, QListViewItem *item, const QPoint &, int )
898{ 904{
899 if(mouse == 2) { 905 if(mouse == 2) {
900 showRemoteMenu(item); 906 showRemoteMenu(item);
901 } 907 }
902} 908}
903 909
@@ -1302,13 +1308,13 @@ void OpieFtp::serverComboSelected(int index)
1302 qDebug("server combo selected %d", index+1); 1308 qDebug("server combo selected %d", index+1);
1303 QString username, remoteServerStr, remotePathStr, password, port, temp; 1309 QString username, remoteServerStr, remotePathStr, password, port, temp;
1304// remoteServerStr = ServerComboBox->text(index); 1310// remoteServerStr = ServerComboBox->text(index);
1305 1311
1306 Config cfg("opieftp"); 1312 Config cfg("opieftp");
1307 cfg.setGroup("Server"); 1313 cfg.setGroup("Server");
1308 int numberOfEntries = cfg.readNumEntry("numberOfEntries",0); 1314// int numberOfEntries = cfg.readNumEntry("numberOfEntries",0);
1309 1315
1310 temp.setNum(index+1); 1316 temp.setNum(index+1);
1311 remoteServerStr = cfg.readEntry( temp,""); 1317 remoteServerStr = cfg.readEntry( temp,"");
1312 1318
1313 qDebug("Group" +temp); 1319 qDebug("Group" +temp);
1314 cfg.setGroup(temp); 1320 cfg.setGroup(temp);