summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/textedit/fileBrowser.cpp14
-rw-r--r--noncore/net/opieftp/opieftp.cpp109
-rw-r--r--noncore/net/opieftp/opieftp.h12
3 files changed, 109 insertions, 26 deletions
diff --git a/core/apps/textedit/fileBrowser.cpp b/core/apps/textedit/fileBrowser.cpp
index 41e800c..acd50c2 100644
--- a/core/apps/textedit/fileBrowser.cpp
+++ b/core/apps/textedit/fileBrowser.cpp
@@ -136,132 +136,140 @@ fileBrowser::fileBrowser( QWidget* parent, const char* name, bool modal, WFlags
136 this, SLOT( selectionChanged( const QString & ) ) ); 136 this, SLOT( selectionChanged( const QString & ) ) );
137 137
138 typemb = new MenuButton(this); 138 typemb = new MenuButton(this);
139 typemb->setLabel(tr("Type: %1")); 139 typemb->setLabel(tr("Type: %1"));
140 typemb->setMinimumWidth(110); 140 typemb->setMinimumWidth(110);
141 typemb->setFixedHeight(22); 141 typemb->setFixedHeight(22);
142 layout->addMultiCellWidget( typemb, 2, 2, 4, 7 ); 142 layout->addMultiCellWidget( typemb, 2, 2, 4, 7 );
143 updateMimeTypeMenu() ; 143 updateMimeTypeMenu() ;
144 144
145 currentDir.setPath(QDir::currentDirPath()); 145 currentDir.setPath(QDir::currentDirPath());
146 currentDir.setFilter( QDir::Files | QDir::Dirs/* | QDir::Hidden */| QDir::All); 146 currentDir.setFilter( QDir::Files | QDir::Dirs/* | QDir::Hidden */| QDir::All);
147 147
148 populateList(); 148 populateList();
149 move(0,15); 149 move(0,15);
150} 150}
151 151
152fileBrowser::~fileBrowser() 152fileBrowser::~fileBrowser()
153{ 153{
154} 154}
155 155
156void fileBrowser::setFileView( int selection ) 156void fileBrowser::setFileView( int selection )
157{ 157{
158 SelectionCombo->setCurrentItem( selection ); 158 SelectionCombo->setCurrentItem( selection );
159 selectionChanged( SelectionCombo->currentText() ); 159 selectionChanged( SelectionCombo->currentText() );
160} 160}
161 161
162void fileBrowser::populateList() 162void fileBrowser::populateList()
163{ 163{
164 ListView->clear(); 164 ListView->clear();
165 bool isDir=FALSE; 165 bool isDir=FALSE;
166//qDebug(currentDir.canonicalPath()); 166//qDebug(currentDir.canonicalPath());
167 currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst); 167 currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst);
168 currentDir.setMatchAllDirs(TRUE); 168 currentDir.setMatchAllDirs(TRUE);
169 169
170 currentDir.setNameFilter(filterStr); 170 currentDir.setNameFilter(filterStr);
171// currentDir.setNameFilter("*.txt;*.etx"); 171// currentDir.setNameFilter("*.txt;*.etx");
172 QString fileL, fileS, fileDate; 172 QString fileL, fileS, fileDate;
173 const QFileInfoList *list = currentDir.entryInfoList( /*QDir::All*/ /*, QDir::SortByMask*/); 173 const QFileInfoList *list = currentDir.entryInfoList( /*QDir::All*/ /*, QDir::SortByMask*/);
174 QFileInfoListIterator it(*list); 174 QFileInfoListIterator it(*list);
175 QFileInfo *fi; 175 QFileInfo *fi;
176 while ( (fi=it.current()) ) { 176 while ( (fi=it.current()) ) {
177 177
178 if (fi->isSymLink() ){ 178 if (fi->isSymLink() ){
179 QString symLink=fi->readLink(); 179 QString symLink=fi->readLink();
180// qDebug("Symlink detected "+symLink); 180// qDebug("Symlink detected "+symLink);
181 QFileInfo sym( symLink); 181 QFileInfo sym( symLink);
182 fileS.sprintf( "%10li", sym.size() ); 182 fileS.sprintf( "%10li", sym.size() );
183 fileL.sprintf( "%s -> %s", sym.fileName().data(),sym.absFilePath().data() ); 183 fileL.sprintf( "%s -> %s", sym.fileName().data(),sym.absFilePath().data() );
184 fileDate = sym.lastModified().toString(); 184 fileDate = sym.lastModified().toString();
185 } else { 185 } else {
186// qDebug("Not a dir: "+currentDir.canonicalPath()+fileL); 186// qDebug("Not a dir: "+currentDir.canonicalPath()+fileL);
187 fileS.sprintf( "%10li", fi->size() ); 187 fileS.sprintf( "%10li", fi->size() );
188 fileL.sprintf( "%s",fi->fileName().data() ); 188 fileL.sprintf( "%s",fi->fileName().data() );
189 fileDate= fi->lastModified().toString(); 189 fileDate= fi->lastModified().toString();
190 if( QDir(QDir::cleanDirPath(currentDir.canonicalPath()+"/"+fileL)).exists() ) { 190 if( QDir(QDir::cleanDirPath(currentDir.canonicalPath()+"/"+fileL)).exists() ) {
191 fileL+="/"; 191 fileL+="/";
192 isDir=TRUE; 192 isDir=TRUE;
193// qDebug( fileL); 193// qDebug( fileL);
194 } 194 }
195 } 195 }
196 if(fileL !="./") { 196 if(fileL !="./") {
197 item= new QListViewItem( ListView,fileL,fileS , fileDate); 197 item= new QListViewItem( ListView,fileL,fileS , fileDate);
198 QPixmap pm; 198 QPixmap pm;
199 pm= Resource::loadPixmap( "folder" ); 199 pm= Resource::loadPixmap( "folder" );
200 if(isDir || fileL.find("/",0,TRUE) != -1) 200
201 if(isDir || fileL.find("/",0,TRUE) != -1) {
202 if( !QDir( fi->filePath() ).isReadable())
203 pm = Resource::loadPixmap( "lockedfolder" );
201 item->setPixmap( 0,pm ); 204 item->setPixmap( 0,pm );
202 else 205 } else {
203 item->setPixmap( 0, Resource::loadPixmap( "fileopen" )); 206 if( !fi->isReadable() )
207 pm = Resource::loadPixmap( "locked" );
208 else
209 pm = Resource::loadPixmap( "fileopen" );
210 item->setPixmap( 0,pm);
211 }
204 if( fileL.find("->",0,TRUE) != -1) { 212 if( fileL.find("->",0,TRUE) != -1) {
205 // overlay link image 213 // overlay link image
206 QPixmap lnk = Resource::loadPixmap( "symlink" ); 214 QPixmap lnk = Resource::loadPixmap( "symlink" );
207 QPainter painter( &pm ); 215 QPainter painter( &pm );
208 painter.drawPixmap( pm.width()-lnk.width(), pm.height()-lnk.height(), lnk ); 216 painter.drawPixmap( pm.width()-lnk.width(), pm.height()-lnk.height(), lnk );
209 pm.setMask( pm.createHeuristicMask( FALSE ) ); 217 pm.setMask( pm.createHeuristicMask( FALSE ) );
210 item->setPixmap( 0, pm); 218 item->setPixmap( 0, pm);
211 } 219 }
212 } 220 }
213 isDir=FALSE; 221 isDir=FALSE;
214 ++it; 222 ++it;
215 } 223 }
216 ListView->setSorting( 3, FALSE); 224 ListView->setSorting( 3, FALSE);
217 QString currentPath = currentDir.canonicalPath(); 225 QString currentPath = currentDir.canonicalPath();
218 226
219 fillCombo( (const QString &)currentPath); 227 fillCombo( (const QString &)currentPath);
220// dirPathCombo->lineEdit()->setText(currentPath); 228// dirPathCombo->lineEdit()->setText(currentPath);
221 229
222// if( dirPathStringList.grep(currentPath,TRUE).isEmpty() ) { 230// if( dirPathStringList.grep(currentPath,TRUE).isEmpty() ) {
223// dirPathCombo->clear(); 231// dirPathCombo->clear();
224// dirPathStringList.prepend(currentPath ); 232// dirPathStringList.prepend(currentPath );
225// dirPathCombo->insertStringList( dirPathStringList,-1); 233// dirPathCombo->insertStringList( dirPathStringList,-1);
226// } 234// }
227} 235}
228 236
229void fileBrowser::upDir() 237void fileBrowser::upDir()
230{ 238{
231 QString current = currentDir.canonicalPath(); 239 QString current = currentDir.canonicalPath();
232 QDir dir(current); 240 QDir dir(current);
233 dir.cdUp(); 241 dir.cdUp();
234 current = dir.canonicalPath(); 242 current = dir.canonicalPath();
235 chdir( current.latin1() ); 243 chdir( current.latin1() );
236 currentDir.cd( current, TRUE); 244 currentDir.cd( current, TRUE);
237 populateList(); 245 populateList();
238 update(); 246 update();
239} 247}
240 248
241// you may want to switch these 2 functions. I like single clicks 249// you may want to switch these 2 functions. I like single clicks
242void fileBrowser::listClicked(QListViewItem *selectedItem) 250void fileBrowser::listClicked(QListViewItem *selectedItem)
243{ 251{
244 QString strItem=selectedItem->text(0); 252 QString strItem=selectedItem->text(0);
245 QString strSize=selectedItem->text(1); 253 QString strSize=selectedItem->text(1);
246// qDebug("strItem is "+strItem); 254// qDebug("strItem is "+strItem);
247 strSize.stripWhiteSpace(); 255 strSize.stripWhiteSpace();
248// qDebug(strSize); 256// qDebug(strSize);
249 257
250 if(strItem.find("@",0,TRUE) !=-1 || strItem.find("->",0,TRUE) !=-1 ) { //if symlink 258 if(strItem.find("@",0,TRUE) !=-1 || strItem.find("->",0,TRUE) !=-1 ) { //if symlink
251 // is symlink 259 // is symlink
252 QString strItem2=strItem.right( (strItem.length()-strItem.find("->",0,TRUE)) -4); 260 QString strItem2=strItem.right( (strItem.length()-strItem.find("->",0,TRUE)) -4);
253// qDebug("strItem symlink is "+strItem2); 261// qDebug("strItem symlink is "+strItem2);
254 if(QDir(strItem2).exists() ) { 262 if(QDir(strItem2).exists() ) {
255 currentDir.cd(strItem2, TRUE); 263 currentDir.cd(strItem2, TRUE);
256 populateList(); 264 populateList();
257 } 265 }
258 } else { // not a symlink 266 } else { // not a symlink
259 if(strItem.find(". .",0,TRUE) && strItem.find("/",0,TRUE)!=-1 ) { 267 if(strItem.find(". .",0,TRUE) && strItem.find("/",0,TRUE)!=-1 ) {
260 if(QDir(QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem)).exists() ) { 268 if(QDir(QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem)).exists() ) {
261 strItem=QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem); 269 strItem=QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem);
262 currentDir.cd(strItem,FALSE); 270 currentDir.cd(strItem,FALSE);
263// qDebug("Path is "+strItem); 271// qDebug("Path is "+strItem);
264 populateList(); 272 populateList();
265 } else { 273 } else {
266 currentDir.cdUp(); 274 currentDir.cdUp();
267 populateList(); 275 populateList();
diff --git a/noncore/net/opieftp/opieftp.cpp b/noncore/net/opieftp/opieftp.cpp
index e97a9bf..37e2134 100644
--- a/noncore/net/opieftp/opieftp.cpp
+++ b/noncore/net/opieftp/opieftp.cpp
@@ -1,88 +1,89 @@
1/*************************************************************************** 1/***************************************************************************
2 opieftp.cpp 2 opieftp.cpp
3 ------------------- 3 -------------------
4** Created: Sat Mar 9 23:33:09 2002 4** Created: Sat Mar 9 23:33:09 2002
5 copyright : (C) 2002 by ljp 5 copyright : (C) 2002 by ljp
6 email : ljp@llornkcor.com 6 email : ljp@llornkcor.com
7 * This program is free software; you can redistribute it and/or modify * 7 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by * 8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation; either version 2 of the License, or * 9 * the Free Software Foundation; either version 2 of the License, or *
10 * (at your option) any later version. * 10 * (at your option) any later version. *
11 ***************************************************************************/ 11 ***************************************************************************/
12//#define DEVELOPERS_VERSION 12//#define DEVELOPERS_VERSION
13 13
14#include "opieftp.h" 14#include "opieftp.h"
15#include "ftplib.h" 15#include "ftplib.h"
16#include "inputDialog.h" 16#include "inputDialog.h"
17 17
18#include <qpe/qpemenubar.h> 18#include <qpe/qpemenubar.h>
19#include <qpe/qpetoolbar.h> 19#include <qpe/qpetoolbar.h>
20#include <qpe/qpeapplication.h> 20#include <qpe/qpeapplication.h>
21#include <qpe/resource.h> 21#include <qpe/resource.h>
22#include <qpe/qcopenvelope_qws.h> 22#include <qpe/qcopenvelope_qws.h>
23#include <qpe/config.h> 23#include <qpe/config.h>
24 24
25#include <qstringlist.h>
25#include <qtextstream.h> 26#include <qtextstream.h>
26#include <qpushbutton.h> 27#include <qpushbutton.h>
27#include <qtoolbutton.h> 28#include <qtoolbutton.h>
28#include <qdatetime.h> 29#include <qdatetime.h>
29#include <qdir.h> 30#include <qdir.h>
30#include <qfile.h> 31#include <qfile.h>
31#include <qstring.h> 32#include <qstring.h>
32#include <qcombobox.h> 33#include <qcombobox.h>
33#include <qpopupmenu.h> 34#include <qpopupmenu.h>
34#include <qlistview.h> 35#include <qlistview.h>
35#include <qmainwindow.h> 36#include <qmainwindow.h>
36#include <qlabel.h> 37#include <qlabel.h>
37#include <qprogressbar.h> 38#include <qprogressbar.h>
38#include <qspinbox.h> 39#include <qspinbox.h>
39#include <qtabwidget.h> 40#include <qtabwidget.h>
40#include <qwidget.h> 41#include <qwidget.h>
41#include <qlayout.h> 42#include <qlayout.h>
42#include <qimage.h> 43#include <qimage.h>
43#include <qpixmap.h> 44#include <qpixmap.h>
44#include <qmessagebox.h> 45#include <qmessagebox.h>
45#include <qlineedit.h> 46#include <qlineedit.h>
46#include <qregexp.h> 47#include <qregexp.h>
47 48
48#include <unistd.h> 49#include <unistd.h>
49#include <stdlib.h> 50#include <stdlib.h>
50 51
51 52
52QProgressBar *ProgressBar; 53QProgressBar *ProgressBar;
53static netbuf *conn=NULL; 54static netbuf *conn=NULL;
54 55
55static int log_progress(netbuf *ctl, int xfered, void *arg) 56static int log_progress(netbuf *ctl, int xfered, void *arg)
56{ 57{
57 int fsz = *(int *)arg; 58 int fsz = *(int *)arg;
58 int pct = (xfered * 100) / fsz; 59 int pct = (xfered * 100) / fsz;
59// printf("%3d%%\r", pct); 60// printf("%3d%%\r", pct);
60// fflush(stdout); 61// fflush(stdout);
61 ProgressBar->setProgress(xfered); 62 ProgressBar->setProgress(xfered);
62 qApp->processEvents(); 63 qApp->processEvents();
63 return 1; 64 return 1;
64} 65}
65 66
66OpieFtp::OpieFtp( ) 67OpieFtp::OpieFtp( )
67 : QMainWindow( ) 68 : QMainWindow( )
68{ 69{
69 setCaption( tr( "OpieFtp" ) ); 70 setCaption( tr( "OpieFtp" ) );
70 71
71 QGridLayout *layout = new QGridLayout( this ); 72 QGridLayout *layout = new QGridLayout( this );
72 layout->setSpacing( 2); 73 layout->setSpacing( 2);
73 layout->setMargin( 2); 74 layout->setMargin( 2);
74 75
75 connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) ); 76 connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) );
76 77
77 QPEMenuBar *menuBar = new QPEMenuBar(this); 78 QPEMenuBar *menuBar = new QPEMenuBar(this);
78 connectionMenu = new QPopupMenu( this ); 79 connectionMenu = new QPopupMenu( this );
79 localMenu = new QPopupMenu( this ); 80 localMenu = new QPopupMenu( this );
80 remoteMenu = new QPopupMenu( this ); 81 remoteMenu = new QPopupMenu( this );
81 tabMenu = new QPopupMenu( this ); 82 tabMenu = new QPopupMenu( this );
82 83
83 layout->addMultiCellWidget( menuBar, 0, 0, 0, 3 ); 84 layout->addMultiCellWidget( menuBar, 0, 0, 0, 3 );
84 85
85 menuBar->insertItem( tr( "Connection" ), connectionMenu); 86 menuBar->insertItem( tr( "Connection" ), connectionMenu);
86 menuBar->insertItem( tr( "Local" ), localMenu); 87 menuBar->insertItem( tr( "Local" ), localMenu);
87 menuBar->insertItem( tr( "Remote" ), remoteMenu); 88 menuBar->insertItem( tr( "Remote" ), remoteMenu);
88 menuBar->insertItem( tr( "View" ), tabMenu); 89 menuBar->insertItem( tr( "View" ), tabMenu);
@@ -175,186 +176,192 @@ OpieFtp::OpieFtp( )
175 tabLayout_3->addMultiCellWidget( TextLabel1, 0, 0, 0, 1 ); 176 tabLayout_3->addMultiCellWidget( TextLabel1, 0, 0, 0, 1 );
176 177
177 UsernameComboBox = new QComboBox( FALSE, tab_3, "UsernameComboBox" ); 178 UsernameComboBox = new QComboBox( FALSE, tab_3, "UsernameComboBox" );
178 UsernameComboBox->setEditable(TRUE); 179 UsernameComboBox->setEditable(TRUE);
179 tabLayout_3->addMultiCellWidget( UsernameComboBox, 1, 1, 0, 1 ); 180 tabLayout_3->addMultiCellWidget( UsernameComboBox, 1, 1, 0, 1 );
180 181
181 TextLabel2 = new QLabel( tab_3, "TextLabel2" ); 182 TextLabel2 = new QLabel( tab_3, "TextLabel2" );
182 TextLabel2->setText( tr( "Password" ) ); 183 TextLabel2->setText( tr( "Password" ) );
183 tabLayout_3->addMultiCellWidget( TextLabel2, 0, 0, 2, 3 ); 184 tabLayout_3->addMultiCellWidget( TextLabel2, 0, 0, 2, 3 );
184 185
185 PasswordEdit = new QLineEdit( "", tab_3, "PasswordComboBox" ); 186 PasswordEdit = new QLineEdit( "", tab_3, "PasswordComboBox" );
186 PasswordEdit->setEchoMode(QLineEdit::Password); 187 PasswordEdit->setEchoMode(QLineEdit::Password);
187 tabLayout_3->addMultiCellWidget( PasswordEdit, 1, 1, 2, 3 ); 188 tabLayout_3->addMultiCellWidget( PasswordEdit, 1, 1, 2, 3 );
188 189
189 TextLabel3 = new QLabel( tab_3, "TextLabel3" ); 190 TextLabel3 = new QLabel( tab_3, "TextLabel3" );
190 TextLabel3->setText( tr( "Remote server" ) ); 191 TextLabel3->setText( tr( "Remote server" ) );
191 tabLayout_3->addMultiCellWidget( TextLabel3, 2, 2, 0, 1 ); 192 tabLayout_3->addMultiCellWidget( TextLabel3, 2, 2, 0, 1 );
192 193
193 ServerComboBox = new QComboBox( FALSE, tab_3, "ServerComboBox" ); 194 ServerComboBox = new QComboBox( FALSE, tab_3, "ServerComboBox" );
194 ServerComboBox->setEditable(TRUE); 195 ServerComboBox->setEditable(TRUE);
195 tabLayout_3->addMultiCellWidget( ServerComboBox, 3, 3, 0, 1 ); 196 tabLayout_3->addMultiCellWidget( ServerComboBox, 3, 3, 0, 1 );
196 197
197 connect(ServerComboBox,SIGNAL(activated(int)),this,SLOT(serverComboSelected(int ) )); 198 connect(ServerComboBox,SIGNAL(activated(int)),this,SLOT(serverComboSelected(int ) ));
198 connect(ServerComboBox,SIGNAL(textChanged(const QString &)),this,SLOT(serverComboEdited(const QString & ) )); 199 connect(ServerComboBox,SIGNAL(textChanged(const QString &)),this,SLOT(serverComboEdited(const QString & ) ));
199 200
200 QLabel *TextLabel5 = new QLabel( tab_3, "TextLabel5" ); 201 QLabel *TextLabel5 = new QLabel( tab_3, "TextLabel5" );
201 TextLabel5->setText( tr( "Remote path" ) ); 202 TextLabel5->setText( tr( "Remote path" ) );
202 tabLayout_3->addMultiCellWidget( TextLabel5, 2, 2, 2, 3 ); 203 tabLayout_3->addMultiCellWidget( TextLabel5, 2, 2, 2, 3 );
203 204
204 remotePath = new QLineEdit( "/", tab_3, "remotePath" ); 205 remotePath = new QLineEdit( "/", tab_3, "remotePath" );
205 tabLayout_3->addMultiCellWidget( remotePath, 3, 3, 2, 3 ); 206 tabLayout_3->addMultiCellWidget( remotePath, 3, 3, 2, 3 );
206 207
207 TextLabel4 = new QLabel( tab_3, "TextLabel4" ); 208 TextLabel4 = new QLabel( tab_3, "TextLabel4" );
208 TextLabel4->setText( tr( "Port" ) ); 209 TextLabel4->setText( tr( "Port" ) );
209 tabLayout_3->addMultiCellWidget( TextLabel4, 4, 4, 0, 1 ); 210 tabLayout_3->addMultiCellWidget( TextLabel4, 4, 4, 0, 1 );
210 211
211 PortSpinBox = new QSpinBox( tab_3, "PortSpinBox" ); 212 PortSpinBox = new QSpinBox( tab_3, "PortSpinBox" );
212 PortSpinBox->setButtonSymbols( QSpinBox::UpDownArrows ); 213 PortSpinBox->setButtonSymbols( QSpinBox::UpDownArrows );
213 PortSpinBox->setMaxValue(32786); 214 PortSpinBox->setMaxValue(32786);
214 tabLayout_3->addMultiCellWidget( PortSpinBox, 4, 4, 1, 1); 215 tabLayout_3->addMultiCellWidget( PortSpinBox, 4, 4, 1, 1);
215 216
216 QPushButton *deleteServerBtn; 217 QPushButton *deleteServerBtn;
217 deleteServerBtn = new QPushButton( "Delete Server", tab_3 , "OpenButton" ); 218 deleteServerBtn = new QPushButton( "Delete Server", tab_3 , "OpenButton" );
218 tabLayout_3->addMultiCellWidget( deleteServerBtn, 5, 5, 2, 3); 219 tabLayout_3->addMultiCellWidget( deleteServerBtn, 5, 5, 2, 3);
219 220
220 connect(deleteServerBtn,SIGNAL(clicked()),SLOT(deleteServer())); 221 connect(deleteServerBtn,SIGNAL(clicked()),SLOT(deleteServer()));
221 222
222 connectServerBtn = new QPushButton( "Connect", tab_3 , "ConnectButton" ); 223 connectServerBtn = new QPushButton( "Connect", tab_3 , "ConnectButton" );
223 tabLayout_3->addMultiCellWidget( connectServerBtn, 5, 5, 0, 1); 224 tabLayout_3->addMultiCellWidget( connectServerBtn, 5, 5, 0, 1);
224 connectServerBtn->setToggleButton(TRUE); 225 connectServerBtn->setToggleButton(TRUE);
225 connect(connectServerBtn,SIGNAL( toggled( bool)),SLOT( connectorBtnToggled(bool) )); 226 connect(connectServerBtn,SIGNAL( toggled( bool)),SLOT( connectorBtnToggled(bool) ));
226 227
227 228
228 QSpacerItem* spacer = new QSpacerItem( 20, 20, QSizePolicy::Minimum, QSizePolicy::Expanding ); 229 QSpacerItem* spacer = new QSpacerItem( 20, 20, QSizePolicy::Minimum, QSizePolicy::Expanding );
229 tabLayout_3->addItem( spacer, 5, 0 ); 230 tabLayout_3->addItem( spacer, 5, 0 );
230 231
231 TabWidget->insertTab( tab_3, tr( "Config" ) ); 232 TabWidget->insertTab( tab_3, tr( "Config" ) );
232 233
233 connect(TabWidget,SIGNAL(currentChanged(QWidget *)), 234 connect(TabWidget,SIGNAL(currentChanged(QWidget *)),
234 this,SLOT(tabChanged(QWidget*))); 235 this,SLOT(tabChanged(QWidget*)));
235 236
236 currentDir.setFilter( QDir::Files | QDir::Dirs/* | QDir::Hidden*/ | QDir::All); 237 currentDir.setFilter( QDir::Files | QDir::Dirs/* | QDir::Hidden*/ | QDir::All);
237 currentDir.setPath( QDir::currentDirPath()); 238 currentDir.setPath( QDir::currentDirPath());
238// currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst); 239// currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst);
239 currentPathEdit = new QLineEdit( "/", this, "currentPathEdit" );
240 layout->addMultiCellWidget( currentPathEdit, 3, 3, 0, 3 );
241 240
242 currentPathEdit->setText( currentDir.canonicalPath()); 241 currentPathCombo = new QComboBox( FALSE, this, "currentPathCombo" );
243 connect( currentPathEdit,SIGNAL(returnPressed()),this,SLOT(currentPathEditChanged())); 242 layout->addMultiCellWidget( currentPathCombo, 3, 3, 0, 3 );
243
244 currentPathCombo->lineEdit()->setText( currentDir.canonicalPath());
245
246 connect( currentPathCombo, SIGNAL( activated( const QString & ) ),
247 this, SLOT( currentPathComboChanged()currentPathCombo( const QString & ) ) );
248
249 connect( currentPathCombo->lineEdit(),SIGNAL(returnPressed()),
250 this,SLOT(currentPathComboChanged()));
244 251
245 ProgressBar = new QProgressBar( this, "ProgressBar" ); 252 ProgressBar = new QProgressBar( this, "ProgressBar" );
246 layout->addMultiCellWidget( ProgressBar, 4, 4, 0, 3 ); 253 layout->addMultiCellWidget( ProgressBar, 4, 4, 0, 3 );
247 254
248// fillCombos(); 255// fillCombos();
249 256
250#ifdef DEVELOPERS_VERSION 257#ifdef DEVELOPERS_VERSION
251 ServerComboBox->lineEdit()->setText( tr( "192.168.129.201" ) ); 258 ServerComboBox->lineEdit()->setText( tr( "192.168.129.201" ) );
252 UsernameComboBox->lineEdit()->setText("root"); 259 UsernameComboBox->lineEdit()->setText("root");
253 PortSpinBox->setValue( 4242); 260 PortSpinBox->setValue( 4242);
254 remotePath->setText( currentRemoteDir = "/"); 261 remotePath->setText( currentRemoteDir = "/");
255// ServerComboBox->lineEdit()->setText( tr( "llornkcor.com" ) ); 262// ServerComboBox->lineEdit()->setText( tr( "llornkcor.com" ) );
256// UsernameComboBox->lineEdit()->setText("llornkcor"); 263// UsernameComboBox->lineEdit()->setText("llornkcor");
257// PortSpinBox->setValue( 21); 264// PortSpinBox->setValue( 21);
258// remotePath->setText( currentRemoteDir = "/home/llornkcor"); 265// remotePath->setText( currentRemoteDir = "/home/llornkcor");
259 PasswordEdit->setText( tr( "" ) ); 266 PasswordEdit->setText( tr( "" ) );
260#endif 267#endif
261 filterStr="*"; 268 filterStr="*";
262 b=FALSE; 269 b=FALSE;
263 populateLocalView(); 270 populateLocalView();
264 readConfig(); 271 readConfig();
265 ServerComboBox->setCurrentItem(currentServerConfig); 272 ServerComboBox->setCurrentItem(currentServerConfig);
266 TabWidget->setCurrentPage(2); 273 TabWidget->setCurrentPage(2);
267} 274}
268 275
269OpieFtp::~OpieFtp() 276OpieFtp::~OpieFtp()
270{ 277{
271} 278}
272 279
273void OpieFtp::cleanUp() 280void OpieFtp::cleanUp()
274{ 281{
275 if(conn) 282 if(conn)
276 FtpQuit(conn); 283 FtpQuit(conn);
277 QString sfile=QDir::homeDirPath(); 284 QString sfile=QDir::homeDirPath();
278 if(sfile.right(1) != "/") 285 if(sfile.right(1) != "/")
279 sfile+="/._temp"; 286 sfile+="/._temp";
280 else 287 else
281 sfile+="._temp"; 288 sfile+="._temp";
282 QFile file( sfile); 289 QFile file( sfile);
283 if(file.exists()) 290 if(file.exists())
284 file.remove(); 291 file.remove();
285} 292}
286 293
287void OpieFtp::tabChanged(QWidget *w) 294void OpieFtp::tabChanged(QWidget *w)
288{ 295{
289 if (TabWidget->currentPageIndex() == 0) { 296 if (TabWidget->currentPageIndex() == 0) {
290 currentPathEdit->setText( currentDir.canonicalPath()); 297 currentPathCombo->lineEdit()->setText( currentDir.canonicalPath());
291 tabMenu->setItemChecked(tabMenu->idAt(0),TRUE); 298 tabMenu->setItemChecked(tabMenu->idAt(0),TRUE);
292 tabMenu->setItemChecked(tabMenu->idAt(1),FALSE); 299 tabMenu->setItemChecked(tabMenu->idAt(1),FALSE);
293 tabMenu->setItemChecked(tabMenu->idAt(2),FALSE); 300 tabMenu->setItemChecked(tabMenu->idAt(2),FALSE);
294 } 301 }
295 if (TabWidget->currentPageIndex() == 1) { 302 if (TabWidget->currentPageIndex() == 1) {
296 currentPathEdit->setText( currentRemoteDir ); 303 currentPathCombo->lineEdit()->setText( currentRemoteDir );
297 tabMenu->setItemChecked(tabMenu->idAt(1),TRUE); 304 tabMenu->setItemChecked(tabMenu->idAt(1),TRUE);
298 tabMenu->setItemChecked(tabMenu->idAt(0),FALSE); 305 tabMenu->setItemChecked(tabMenu->idAt(0),FALSE);
299 tabMenu->setItemChecked(tabMenu->idAt(2),FALSE); 306 tabMenu->setItemChecked(tabMenu->idAt(2),FALSE);
300 } 307 }
301 if (TabWidget->currentPageIndex() == 2) { 308 if (TabWidget->currentPageIndex() == 2) {
302 tabMenu->setItemChecked(tabMenu->idAt(2),TRUE); 309 tabMenu->setItemChecked(tabMenu->idAt(2),TRUE);
303 tabMenu->setItemChecked(tabMenu->idAt(0),FALSE); 310 tabMenu->setItemChecked(tabMenu->idAt(0),FALSE);
304 tabMenu->setItemChecked(tabMenu->idAt(1),FALSE); 311 tabMenu->setItemChecked(tabMenu->idAt(1),FALSE);
305 } 312 }
306} 313}
307 314
308void OpieFtp::newConnection() 315void OpieFtp::newConnection()
309{ 316{
310 UsernameComboBox->lineEdit()->setText(""); 317 UsernameComboBox->lineEdit()->setText("");
311 PasswordEdit->setText( "" ); 318 PasswordEdit->setText( "" );
312 ServerComboBox->lineEdit()->setText( ""); 319 ServerComboBox->lineEdit()->setText( "");
313 remotePath->setText( currentRemoteDir = "/"); 320 remotePath->setText( currentRemoteDir = "/");
314 PortSpinBox->setValue( 21); 321 PortSpinBox->setValue( 21);
315 TabWidget->setCurrentPage(2); 322 TabWidget->setCurrentPage(2);
316 currentServerConfig = -1; 323 currentServerConfig = -1;
317} 324}
318 325
319void OpieFtp::serverComboEdited(const QString & edit) { 326void OpieFtp::serverComboEdited(const QString & edit) {
320 if( !edit.isEmpty() ) { 327 if( !edit.isEmpty() ) {
321 currentServerConfig = -1; 328 currentServerConfig = -1;
322 qDebug("comboedited"); 329 qDebug("comboedited");
323 } 330 }
324} 331}
325 332
326void OpieFtp::connectorBtnToggled(bool On) 333void OpieFtp::connectorBtnToggled(bool On)
327{ 334{
328 if(On) { 335 if(On) {
329 connector(); 336 connector();
330 } else { 337 } else {
331 disConnector(); 338 disConnector();
332 } 339 }
333 340
334} 341}
335 342
336void OpieFtp::connector() 343void OpieFtp::connector()
337{ 344{
338 QCopEnvelope ( "QPE/System", "busy()" ); 345 QCopEnvelope ( "QPE/System", "busy()" );
339// qApp->processEvents(); 346// qApp->processEvents();
340 currentRemoteDir=remotePath->text(); 347 currentRemoteDir=remotePath->text();
341 if(ServerComboBox->currentText().isEmpty()) { 348 if(ServerComboBox->currentText().isEmpty()) {
342 QMessageBox::warning(this,tr("Ftp"),tr("Please set the server info"),tr("Ok"),0,0); 349 QMessageBox::warning(this,tr("Ftp"),tr("Please set the server info"),tr("Ok"),0,0);
343 TabWidget->setCurrentPage(2); 350 TabWidget->setCurrentPage(2);
344 ServerComboBox->setFocus(); 351 ServerComboBox->setFocus();
345 connectServerBtn->setOn(FALSE); 352 connectServerBtn->setOn(FALSE);
346 connectServerBtn->setText( tr("Connect")); 353 connectServerBtn->setText( tr("Connect"));
347 return; 354 return;
348 } 355 }
349 FtpInit(); 356 FtpInit();
350 TabWidget->setCurrentPage(1); 357 TabWidget->setCurrentPage(1);
351 QString ftp_host = ServerComboBox->currentText(); 358 QString ftp_host = ServerComboBox->currentText();
352 QString ftp_user = UsernameComboBox->currentText(); 359 QString ftp_user = UsernameComboBox->currentText();
353 QString ftp_pass = PasswordEdit->text(); 360 QString ftp_pass = PasswordEdit->text();
354 QString port=PortSpinBox->cleanText(); 361 QString port=PortSpinBox->cleanText();
355 port.stripWhiteSpace(); 362 port.stripWhiteSpace();
356 363
357 if(ftp_host.find("ftp://",0, TRUE) != -1 ) 364 if(ftp_host.find("ftp://",0, TRUE) != -1 )
358 ftp_host=ftp_host.right(ftp_host.length()-6); 365 ftp_host=ftp_host.right(ftp_host.length()-6);
359 ftp_host+=":"+port; 366 ftp_host+=":"+port;
360 if (!FtpConnect( ftp_host.latin1(), &conn)) { 367 if (!FtpConnect( ftp_host.latin1(), &conn)) {
@@ -483,246 +490,267 @@ bool OpieFtp::remoteDirList(const QString &dir)
483 tmp+="/._temp"; 490 tmp+="/._temp";
484 else 491 else
485 tmp+="._temp"; 492 tmp+="._temp";
486// qDebug("Listing remote dir "+tmp); 493// qDebug("Listing remote dir "+tmp);
487 QCopEnvelope ( "QPE/System", "busy()" ); 494 QCopEnvelope ( "QPE/System", "busy()" );
488 if (!FtpDir( tmp.latin1(), dir.latin1(), conn) ) { 495 if (!FtpDir( tmp.latin1(), dir.latin1(), conn) ) {
489 QString msg; 496 QString msg;
490 msg.sprintf(tr("Unable to list the directory\n")+dir+"\n%s",FtpLastResponse(conn) ); 497 msg.sprintf(tr("Unable to list the directory\n")+dir+"\n%s",FtpLastResponse(conn) );
491 msg.replace(QRegExp(":"),"\n"); 498 msg.replace(QRegExp(":"),"\n");
492 QMessageBox::message(tr("Note"),msg); 499 QMessageBox::message(tr("Note"),msg);
493 return false; 500 return false;
494 } 501 }
495 populateRemoteView() ; 502 populateRemoteView() ;
496 QCopEnvelope ( "QPE/System", "notBusy()" ); 503 QCopEnvelope ( "QPE/System", "notBusy()" );
497 return true; 504 return true;
498} 505}
499 506
500bool OpieFtp::remoteChDir(const QString &dir) 507bool OpieFtp::remoteChDir(const QString &dir)
501{ 508{
502 QCopEnvelope ( "QPE/System", "busy()" ); 509 QCopEnvelope ( "QPE/System", "busy()" );
503 if (!FtpChdir( dir.latin1(), conn )) { 510 if (!FtpChdir( dir.latin1(), conn )) {
504 QString msg; 511 QString msg;
505 msg.sprintf(tr("Unable to change directories\n")+dir+"\n%s",FtpLastResponse(conn)); 512 msg.sprintf(tr("Unable to change directories\n")+dir+"\n%s",FtpLastResponse(conn));
506 msg.replace(QRegExp(":"),"\n"); 513 msg.replace(QRegExp(":"),"\n");
507 QMessageBox::message(tr("Note"),msg); 514 QMessageBox::message(tr("Note"),msg);
508 qDebug(msg); 515 qDebug(msg);
509 QCopEnvelope ( "QPE/System", "notBusy()" ); 516 QCopEnvelope ( "QPE/System", "notBusy()" );
510 return FALSE; 517 return FALSE;
511 } 518 }
512 QCopEnvelope ( "QPE/System", "notBusy()" ); 519 QCopEnvelope ( "QPE/System", "notBusy()" );
513 return TRUE; 520 return TRUE;
514} 521}
515 522
516void OpieFtp::populateLocalView() 523void OpieFtp::populateLocalView()
517{ 524{
518 Local_View->clear(); 525 Local_View->clear();
519 currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst); 526 currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst);
520 currentDir.setMatchAllDirs(TRUE); 527 currentDir.setMatchAllDirs(TRUE);
521 currentDir.setNameFilter(filterStr); 528 currentDir.setNameFilter(filterStr);
522 QString fileL, fileS, fileDate; 529 QString fileL, fileS, fileDate;
523 bool isDir=FALSE; 530 bool isDir=FALSE;
524 const QFileInfoList *list = currentDir.entryInfoList( /*QDir::All*/ /*, QDir::SortByMask*/); 531 const QFileInfoList *list = currentDir.entryInfoList( /*QDir::All*/ /*, QDir::SortByMask*/);
525 QFileInfoListIterator it(*list); 532 QFileInfoListIterator it(*list);
526 QFileInfo *fi; 533 QFileInfo *fi;
527 while ( (fi=it.current()) ) { 534 while ( (fi=it.current()) ) {
528 if (fi->isSymLink() ){ 535 if (fi->isSymLink() ){
529 QString symLink=fi->readLink(); 536 QString symLink=fi->readLink();
530// qDebug("Symlink detected "+symLink); 537// qDebug("Symlink detected "+symLink);
531 QFileInfo sym( symLink); 538 QFileInfo sym( symLink);
532 fileS.sprintf( "%10li", sym.size() ); 539 fileS.sprintf( "%10li", sym.size() );
533 fileL.sprintf( "%s -> %s", sym.fileName().data(),sym.absFilePath().data() ); 540 fileL.sprintf( "%s -> %s", sym.fileName().data(),sym.absFilePath().data() );
534 fileDate = sym.lastModified().toString(); 541 fileDate = sym.lastModified().toString();
535 } else { 542 } else {
536// qDebug("Not a dir: "+currentDir.canonicalPath()+fileL); 543// qDebug("Not a dir: "+currentDir.canonicalPath()+fileL);
537 fileS.sprintf( "%10li", fi->size() ); 544 fileS.sprintf( "%10li", fi->size() );
538 fileL.sprintf( "%s",fi->fileName().data() ); 545 fileL.sprintf( "%s",fi->fileName().data() );
539 fileDate= fi->lastModified().toString(); 546 fileDate= fi->lastModified().toString();
540 if( QDir(QDir::cleanDirPath(currentDir.canonicalPath()+"/"+fileL)).exists() ) { 547 if( QDir(QDir::cleanDirPath(currentDir.canonicalPath()+"/"+fileL)).exists() ) {
541 fileL+="/"; 548 fileL+="/";
542 isDir=TRUE; 549 isDir=TRUE;
543// qDebug( fileL); 550// qDebug( fileL);
544 } 551 }
545 } 552 }
546 if(fileL !="./") { 553 if(fileL !="./") {
547 item = new QListViewItem( Local_View,fileL,fileS, fileDate); 554 item= new QListViewItem( ListView,fileL,fileS , fileDate);
548 if(isDir || fileL.find("/",0,TRUE) != -1) 555 QPixmap pm;
549 item->setPixmap( 0, Resource::loadPixmap( "folder" )); 556 pm= Resource::loadPixmap( "folder" );
550 else 557
551 item->setPixmap( 0, Resource::loadPixmap( "fileopen" )); 558 if(isDir || fileL.find("/",0,TRUE) != -1) {
559 if( !QDir( fi->filePath() ).isReadable())
560 pm = Resource::loadPixmap( "lockedfolder" );
561 item->setPixmap( 0,pm );
562 } else {
563 if( !fi->isReadable() )
564 pm = Resource::loadPixmap( "locked" );
565 else
566 pm = Resource::loadPixmap( "fileopen" );
567 item->setPixmap( 0,pm);
568 }
569 if( fileL.find("->",0,TRUE) != -1) {
570 // overlay link image
571 QPixmap lnk = Resource::loadPixmap( "symlink" );
572 QPainter painter( &pm );
573 painter.drawPixmap( pm.width()-lnk.width(), pm.height()-lnk.height(), lnk );
574 pm.setMask( pm.createHeuristicMask( FALSE ) );
575 item->setPixmap( 0, pm);
576 }
552 } 577 }
553 isDir=FALSE; 578 isDir=FALSE;
554 ++it; 579 ++it;
555 } 580 }
556 Local_View->setSorting( 3,FALSE); 581 Local_View->setSorting( 3,FALSE);
557 currentPathEdit->setText( currentDir.canonicalPath() ); 582 currentPathCombo->lineEdit()->setText( currentDir.canonicalPath() );
583 fillCombo( (const QString &)currentDir);
584
558} 585}
559 586
560bool OpieFtp::populateRemoteView( ) 587bool OpieFtp::populateRemoteView( )
561{ 588{
562// qDebug("populate remoteview"); 589// qDebug("populate remoteview");
563 QString sfile=QDir::homeDirPath(); 590 QString sfile=QDir::homeDirPath();
564 if(sfile.right(1) != "/") 591 if(sfile.right(1) != "/")
565 sfile+="/._temp"; 592 sfile+="/._temp";
566 else 593 else
567 sfile+="._temp"; 594 sfile+="._temp";
568 QFile file( sfile); 595 QFile file( sfile);
569 Remote_View->clear(); 596 Remote_View->clear();
570 QString s, File_Name; 597 QString s, File_Name;
571 QListViewItem *itemDir=NULL, *itemFile=NULL; 598 QListViewItem *itemDir=NULL, *itemFile=NULL;
572 QString fileL, fileS, fileDate; 599 QString fileL, fileS, fileDate;
573 if ( file.open(IO_ReadOnly)) { 600 if ( file.open(IO_ReadOnly)) {
574 QTextStream t( &file ); // use a text stream 601 QTextStream t( &file ); // use a text stream
575 while ( !t.eof()) { 602 while ( !t.eof()) {
576 s = t.readLine(); 603 s = t.readLine();
577 fileL = s.right(s.length()-55); 604 fileL = s.right(s.length()-55);
578 fileL = fileL.stripWhiteSpace(); 605 fileL = fileL.stripWhiteSpace();
579 if(s.left(1) == "d") 606 if(s.left(1) == "d")
580 fileL = fileL+"/"; 607 fileL = fileL+"/";
581// fileL = "/"+fileL+"/"; 608// fileL = "/"+fileL+"/";
582 fileS = s.mid( 30, 42-30); 609 fileS = s.mid( 30, 42-30);
583 fileS = fileS.stripWhiteSpace(); 610 fileS = fileS.stripWhiteSpace();
584 fileDate = s.mid( 42, 55-42); 611 fileDate = s.mid( 42, 55-42);
585 fileDate = fileDate.stripWhiteSpace(); 612 fileDate = fileDate.stripWhiteSpace();
586 if(fileL.find("total",0,TRUE) == -1) { 613 if(fileL.find("total",0,TRUE) == -1) {
587 if(s.left(1) == "d" || fileL.find("/",0,TRUE) != -1) { 614 if(s.left(1) == "d" || fileL.find("/",0,TRUE) != -1) {
588 QListViewItem * item = new QListViewItem( Remote_View, fileL, fileS, fileDate,"d"); 615 QListViewItem * item = new QListViewItem( Remote_View, fileL, fileS, fileDate,"d");
589 item->setPixmap( 0, Resource::loadPixmap( "folder" )); 616 item->setPixmap( 0, Resource::loadPixmap( "folder" ));
590// if(itemDir) 617// if(itemDir)
591 item->moveItem(itemDir); 618 item->moveItem(itemDir);
592 itemDir=item; 619 itemDir=item;
593 } else { 620 } else {
594 QListViewItem * item = new QListViewItem( Remote_View, fileL, fileS, fileDate,"f"); 621 QListViewItem * item = new QListViewItem( Remote_View, fileL, fileS, fileDate,"f");
595 item->setPixmap( 0, Resource::loadPixmap( "fileopen" )); 622 item->setPixmap( 0, Resource::loadPixmap( "fileopen" ));
596// if(itemFile) 623// if(itemFile)
597 item->moveItem(itemDir); 624 item->moveItem(itemDir);
598 item->moveItem(itemFile); 625 item->moveItem(itemFile);
599 itemFile=item; 626 itemFile=item;
600 } 627 }
601 } 628 }
602 } 629 }
603 QListViewItem * item1 = new QListViewItem( Remote_View, "../"); 630 QListViewItem * item1 = new QListViewItem( Remote_View, "../");
604 item1->setPixmap( 0, Resource::loadPixmap( "folder" )); 631 item1->setPixmap( 0, Resource::loadPixmap( "folder" ));
605 file.close(); 632 file.close();
606 if( file.exists()) 633 if( file.exists())
607 file. remove(); 634 file. remove();
608 } else 635 } else
609 qDebug("temp file not opened successfullly "+sfile); 636 qDebug("temp file not opened successfullly "+sfile);
610 Remote_View->setSorting( 4,TRUE); 637 Remote_View->setSorting( 4,TRUE);
611 return true; 638 return true;
612} 639}
613 640
614void OpieFtp::remoteListClicked(QListViewItem *selectedItem) 641void OpieFtp::remoteListClicked(QListViewItem *selectedItem)
615{ 642{
616 QCopEnvelope ( "QPE/System", "busy()" ); 643 QCopEnvelope ( "QPE/System", "busy()" );
617 QString oldRemoteCurrentDir = currentRemoteDir; 644 QString oldRemoteCurrentDir = currentRemoteDir;
618 QString strItem=selectedItem->text(0); 645 QString strItem=selectedItem->text(0);
619 strItem=strItem.simplifyWhiteSpace(); 646 strItem=strItem.simplifyWhiteSpace();
620 if(strItem == "../") { // the user wants to go ^ 647 if(strItem == "../") { // the user wants to go ^
621 if( FtpCDUp( conn) == 0) { 648 if( FtpCDUp( conn) == 0) {
622 QString msg; 649 QString msg;
623 msg.sprintf(tr("Unable to cd up\n")+"%s",FtpLastResponse(conn)); 650 msg.sprintf(tr("Unable to cd up\n")+"%s",FtpLastResponse(conn));
624 msg.replace(QRegExp(":"),"\n"); 651 msg.replace(QRegExp(":"),"\n");
625 QMessageBox::message(tr("Note"),msg); 652 QMessageBox::message(tr("Note"),msg);
626 qDebug(msg); 653 qDebug(msg);
627 } 654 }
628 char path[256]; 655 char path[256];
629 if( FtpPwd( path,sizeof(path),conn) == 0) { //this is easier than fudging the string 656 if( FtpPwd( path,sizeof(path),conn) == 0) { //this is easier than fudging the string
630 QString msg; 657 QString msg;
631 msg.sprintf(tr("Unable to get working dir\n")+"%s",FtpLastResponse(conn)); 658 msg.sprintf(tr("Unable to get working dir\n")+"%s",FtpLastResponse(conn));
632 msg.replace(QRegExp(":"),"\n"); 659 msg.replace(QRegExp(":"),"\n");
633 QMessageBox::message(tr("Note"),msg); 660 QMessageBox::message(tr("Note"),msg);
634 qDebug(msg); 661 qDebug(msg);
635 } 662 }
636 currentRemoteDir=path; 663 currentRemoteDir=path;
637 } else { 664 } else {
638 if(strItem.find("->",0,TRUE) != -1) { //symlink on some servers 665 if(strItem.find("->",0,TRUE) != -1) { //symlink on some servers
639 strItem=strItem.right( strItem.length() - strItem.find("->",0,TRUE) - 2 ); 666 strItem=strItem.right( strItem.length() - strItem.find("->",0,TRUE) - 2 );
640 strItem = strItem.stripWhiteSpace(); 667 strItem = strItem.stripWhiteSpace();
641 currentRemoteDir = strItem; 668 currentRemoteDir = strItem;
642 if( !remoteChDir( (const QString &)strItem)) { 669 if( !remoteChDir( (const QString &)strItem)) {
643 currentRemoteDir = oldRemoteCurrentDir; 670 currentRemoteDir = oldRemoteCurrentDir;
644 strItem=""; 671 strItem="";
645 qDebug("RemoteCurrentDir1 "+oldRemoteCurrentDir); 672 qDebug("RemoteCurrentDir1 "+oldRemoteCurrentDir);
646 } 673 }
647 } else if(strItem.find("/",0,TRUE) != -1) { // this is a directory 674 } else if(strItem.find("/",0,TRUE) != -1) { // this is a directory
648 qDebug("trying directory"); 675 qDebug("trying directory");
649 if( !remoteChDir( (const QString &)currentRemoteDir + strItem)) { 676 if( !remoteChDir( (const QString &)currentRemoteDir + strItem)) {
650 currentRemoteDir = oldRemoteCurrentDir; 677 currentRemoteDir = oldRemoteCurrentDir;
651 strItem=""; 678 strItem="";
652 qDebug("RemoteCurrentDir1 "+oldRemoteCurrentDir); 679 qDebug("RemoteCurrentDir1 "+oldRemoteCurrentDir);
653 680
654 } else { 681 } else {
655 currentRemoteDir = currentRemoteDir+strItem; 682 currentRemoteDir = currentRemoteDir+strItem;
656 } 683 }
657 } else { 684 } else {
658 qDebug("download "+strItem); 685 qDebug("download "+strItem);
659 } 686 }
660 } 687 }
661 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate 688 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate
662 if(currentRemoteDir.right(1) !="/") 689 if(currentRemoteDir.right(1) !="/")
663 currentRemoteDir +="/"; 690 currentRemoteDir +="/";
664 currentPathEdit->setText( currentRemoteDir ); 691 currentPathCombo->lineEdit()->setText( currentRemoteDir );
692 fillRemoteCombo( (const QString &)currentDir);
665 QCopEnvelope ( "QPE/System", "notBusy()" ); 693 QCopEnvelope ( "QPE/System", "notBusy()" );
666} 694}
667 695
668void OpieFtp::localListClicked(QListViewItem *selectedItem) 696void OpieFtp::localListClicked(QListViewItem *selectedItem)
669{ 697{
670 QString strItem=selectedItem->text(0); 698 QString strItem=selectedItem->text(0);
671 QString strSize=selectedItem->text(1); 699 QString strSize=selectedItem->text(1);
672 strSize=strSize.stripWhiteSpace(); 700 strSize=strSize.stripWhiteSpace();
673 if(strItem.find("@",0,TRUE) !=-1 || strItem.find("->",0,TRUE) !=-1 ) { //if symlink 701 if(strItem.find("@",0,TRUE) !=-1 || strItem.find("->",0,TRUE) !=-1 ) { //if symlink
674 // is symlink 702 // is symlink
675 QString strItem2 = strItem.right( (strItem.length() - strItem.find("->",0,TRUE)) - 4); 703 QString strItem2 = strItem.right( (strItem.length() - strItem.find("->",0,TRUE)) - 4);
676 if(QDir(strItem2).exists() ) { 704 if(QDir(strItem2).exists() ) {
677 currentDir.cd(strItem2, TRUE); 705 currentDir.cd(strItem2, TRUE);
678 populateLocalView(); 706 populateLocalView();
679 } 707 }
680 } else { // not a symlink 708 } else { // not a symlink
681 if(strItem.find(". .",0,TRUE) && strItem.find("/",0,TRUE)!=-1 ) { 709 if(strItem.find(". .",0,TRUE) && strItem.find("/",0,TRUE)!=-1 ) {
682 if(QDir(QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem)).exists() ) { 710 if(QDir(QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem)).exists() ) {
683 strItem=QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem); 711 strItem=QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem);
684 currentDir.cd(strItem,FALSE); 712 currentDir.cd(strItem,FALSE);
685 populateLocalView(); 713 populateLocalView();
686 } else { 714 } else {
687 currentDir.cdUp(); 715 currentDir.cdUp();
688 populateLocalView(); 716 populateLocalView();
689 } 717 }
690 if(QDir(strItem).exists()){ 718 if(QDir(strItem).exists()){
691 currentDir.cd(strItem, TRUE); 719 currentDir.cd(strItem, TRUE);
692 populateLocalView(); 720 populateLocalView();
693 } 721 }
694 } else { 722 } else {
695 strItem=QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem); 723 strItem=QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem);
696 if( QFile::exists(strItem ) ) { 724 if( QFile::exists(strItem ) ) {
697 qDebug("upload "+strItem); 725 qDebug("upload "+strItem);
698 } 726 }
699 } //end not symlink 727 } //end not symlink
700 chdir(strItem.latin1()); 728 chdir(strItem.latin1());
701 } 729 }
702} 730}
703 731
704void OpieFtp::doLocalCd() 732void OpieFtp::doLocalCd()
705{ 733{
706 localListClicked( Local_View->currentItem()); 734 localListClicked( Local_View->currentItem());
707} 735}
708 736
709void OpieFtp:: doRemoteCd() 737void OpieFtp:: doRemoteCd()
710{ 738{
711 remoteListClicked( Remote_View->currentItem()); 739 remoteListClicked( Remote_View->currentItem());
712 740
713} 741}
714 742
715void OpieFtp::showHidden() 743void OpieFtp::showHidden()
716{ 744{
717 if (!b) { 745 if (!b) {
718 currentDir.setFilter( QDir::Files | QDir::Dirs | QDir::Hidden | QDir::All); 746 currentDir.setFilter( QDir::Files | QDir::Dirs | QDir::Hidden | QDir::All);
719 localMenu->setItemChecked(localMenu->idAt(0),TRUE); 747 localMenu->setItemChecked(localMenu->idAt(0),TRUE);
720// currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst); 748// currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst);
721 b=TRUE; 749 b=TRUE;
722 750
723 } else { 751 } else {
724 currentDir.setFilter( QDir::Files | QDir::Dirs/* | QDir::Hidden*/ | QDir::All); 752 currentDir.setFilter( QDir::Files | QDir::Dirs/* | QDir::Hidden*/ | QDir::All);
725 localMenu->setItemChecked(localMenu->idAt(0),FALSE); 753 localMenu->setItemChecked(localMenu->idAt(0),FALSE);
726// currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst); 754// currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst);
727 b=FALSE; 755 b=FALSE;
728 } 756 }
@@ -871,149 +899,190 @@ void OpieFtp::remoteDelete()
871 QMessageBox::message(tr("Note"),msg); 899 QMessageBox::message(tr("Note"),msg);
872 } 900 }
873 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate 901 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate
874 902
875 } 903 }
876 break; 904 break;
877 }; 905 };
878 } else { 906 } else {
879 switch ( QMessageBox::warning(this,tr("Delete"),tr("Do you really want to delete\n")+f+"?" 907 switch ( QMessageBox::warning(this,tr("Delete"),tr("Do you really want to delete\n")+f+"?"
880 ,tr("Yes"),tr("No"),0,0,1) ) { 908 ,tr("Yes"),tr("No"),0,0,1) ) {
881 case 0: { 909 case 0: {
882 QString path= currentRemoteDir+f; 910 QString path= currentRemoteDir+f;
883 if(FtpDelete( path.latin1(), conn)==0) { 911 if(FtpDelete( path.latin1(), conn)==0) {
884 QString msg; 912 QString msg;
885 msg.sprintf(tr("Unable to delete file\n")+"%s",FtpLastResponse(conn)); 913 msg.sprintf(tr("Unable to delete file\n")+"%s",FtpLastResponse(conn));
886 msg.replace(QRegExp(":"),"\n"); 914 msg.replace(QRegExp(":"),"\n");
887 QMessageBox::message(tr("Note"),msg); 915 QMessageBox::message(tr("Note"),msg);
888 } 916 }
889 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate 917 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate
890 } 918 }
891 break; 919 break;
892 }; 920 };
893 } 921 }
894 QCopEnvelope ( "QPE/System", "notBusy()" ); 922 QCopEnvelope ( "QPE/System", "notBusy()" );
895} 923}
896 924
897void OpieFtp::remoteRename() 925void OpieFtp::remoteRename()
898{ 926{
899 QString curFile = Remote_View->currentItem()->text(0); 927 QString curFile = Remote_View->currentItem()->text(0);
900 InputDialog *fileDlg; 928 InputDialog *fileDlg;
901 fileDlg = new InputDialog(this,tr("Rename"),TRUE, 0); 929 fileDlg = new InputDialog(this,tr("Rename"),TRUE, 0);
902 fileDlg->inputText = curFile; 930 fileDlg->inputText = curFile;
903 fileDlg->exec(); 931 fileDlg->exec();
904 if( fileDlg->result() == 1 ) { 932 if( fileDlg->result() == 1 ) {
905 QString oldName = currentRemoteDir +"/"+ curFile; 933 QString oldName = currentRemoteDir +"/"+ curFile;
906 QString newName = currentRemoteDir +"/"+ fileDlg->LineEdit1->text();//+".playlist"; 934 QString newName = currentRemoteDir +"/"+ fileDlg->LineEdit1->text();//+".playlist";
907 QCopEnvelope ( "QPE/System", "busy()" ); 935 QCopEnvelope ( "QPE/System", "busy()" );
908 if(FtpRename( oldName.latin1(), newName.latin1(),conn) == 0) { 936 if(FtpRename( oldName.latin1(), newName.latin1(),conn) == 0) {
909 QString msg; 937 QString msg;
910 msg.sprintf(tr("Unable to rename file\n")+"%s",FtpLastResponse(conn)); 938 msg.sprintf(tr("Unable to rename file\n")+"%s",FtpLastResponse(conn));
911 msg.replace(QRegExp(":"),"\n"); 939 msg.replace(QRegExp(":"),"\n");
912 QMessageBox::message(tr("Note"),msg); 940 QMessageBox::message(tr("Note"),msg);
913 } 941 }
914 QCopEnvelope ( "QPE/System", "notBusy()" ); 942 QCopEnvelope ( "QPE/System", "notBusy()" );
915 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate 943 remoteDirList( (const QString &)currentRemoteDir); //this also calls populate
916 } 944 }
917} 945}
918 946
919void OpieFtp::localRename() 947void OpieFtp::localRename()
920{ 948{
921 QString curFile = Local_View->currentItem()->text(0); 949 QString curFile = Local_View->currentItem()->text(0);
922 InputDialog *fileDlg; 950 InputDialog *fileDlg;
923 fileDlg = new InputDialog(this,tr("Rename"),TRUE, 0); 951 fileDlg = new InputDialog(this,tr("Rename"),TRUE, 0);
924 fileDlg->inputText = curFile; 952 fileDlg->inputText = curFile;
925 fileDlg->exec(); 953 fileDlg->exec();
926 if( fileDlg->result() == 1 ) { 954 if( fileDlg->result() == 1 ) {
927 QString oldname = currentDir.canonicalPath() + "/" + curFile; 955 QString oldname = currentDir.canonicalPath() + "/" + curFile;
928 QString newName = currentDir.canonicalPath() + "/" + fileDlg->LineEdit1->text();//+".playlist"; 956 QString newName = currentDir.canonicalPath() + "/" + fileDlg->LineEdit1->text();//+".playlist";
929 if( rename(oldname.latin1(), newName.latin1())== -1) 957 if( rename(oldname.latin1(), newName.latin1())== -1)
930 QMessageBox::message(tr("Note"),tr("Could not rename")); 958 QMessageBox::message(tr("Note"),tr("Could not rename"));
931 } 959 }
932 populateLocalView(); 960 populateLocalView();
933} 961}
934 962
935void OpieFtp::currentPathEditChanged() 963void OpieFtp::currentPathComboActivated(const QString & currentPath) {
964 if (TabWidget->currentPageIndex() == 0) {
965 chdir( currentPath.latin1() );
966 currentDir.cd( currentPath, TRUE);
967 populateLocalList();
968 update();
969 } else {
970// chdir( currentPath.latin1() );
971// currentDir.cd( currentPath, TRUE);
972// populateList();
973// update();
974
975 }
976}
977
978void OpieFtp::fillCombo(const QString &currentPath) {
979
980 currentPathComboBox->lineEdit()->setText(currentPath);
981 if( localDirPathStringList.grep(currentPath,TRUE).isEmpty() ) {
982 currentPathComboBox->clear();
983 localDirPathStringList.prepend(currentPath );
984 currentPathComboBox->insertStringList( localDirPathStringList,-1);
985 }
986 currentPathComboBox->lineEdit()->setText(currentPath);
987 if( remoteDirPathStringList.grep(currentPath,TRUE).isEmpty() ) {
988 currentPathComboBox->clear();
989 remoteDirPathStringList.prepend(currentPath );
990 currentPathComboBox->insertStringList( remoteDirPathStringList,-1);
991 }
992}
993
994void OpieFtp::fillRemoteCombo(const QString &currentPath) {
995
996 dirPathCombo->lineEdit()->setText(currentPath);
997 if( remoteDirPathStringList.grep(currentPath,TRUE).isEmpty() ) {
998 dirPathCombo->clear();
999 remoteDirPathStringList.prepend(currentPath );
1000 dirPathCombo->insertStringList( remoteDirPathStringList,-1);
1001 }
1002}
1003
1004void OpieFtp::currentPathComboChanged()
936{ 1005{
937 QString oldRemoteCurrentDir = currentRemoteDir; 1006 QString oldRemoteCurrentDir = currentRemoteDir;
938// qDebug("oldRemoteCurrentDir "+oldRemoteCurrentDir); 1007// qDebug("oldRemoteCurrentDir "+oldRemoteCurrentDir);
939 if (TabWidget->currentPageIndex() == 0) { 1008 if (TabWidget->currentPageIndex() == 0) {
940 if(QDir( currentPathEdit->text()).exists()) { 1009 if(QDir( currentPathCombo->lineEdit()->text()).exists()) {
941 currentDir.setPath( currentPathEdit->text() ); 1010 currentDir.setPath( currentPathCombo->lineEdit()->text() );
942 populateLocalView(); 1011 populateLocalView();
943 } else { 1012 } else {
944 QMessageBox::message(tr("Note"),tr("That directory does not exist")); 1013 QMessageBox::message(tr("Note"),tr("That directory does not exist"));
945 } 1014 }
946 } 1015 }
947 if (TabWidget->currentPageIndex() == 1) { 1016 if (TabWidget->currentPageIndex() == 1) {
948 currentRemoteDir = currentPathEdit->text(); 1017 currentRemoteDir = currentPathCombo->lineEdit()->text();
949 if(currentRemoteDir.right(1) !="/") { 1018 if(currentRemoteDir.right(1) !="/") {
950 currentRemoteDir = currentRemoteDir +"/"; 1019 currentRemoteDir = currentRemoteDir +"/";
951 currentPathEdit->setText( currentRemoteDir ); 1020 currentPathCombo->lineEdit()->setText( currentRemoteDir );
952 } 1021 }
953 if( !remoteChDir( (const QString &)currentRemoteDir) ) { 1022 if( !remoteChDir( (const QString &)currentRemoteDir) ) {
954 currentRemoteDir = oldRemoteCurrentDir; 1023 currentRemoteDir = oldRemoteCurrentDir;
955 currentPathEdit->setText( currentRemoteDir ); 1024 currentPathCombo->lineEdit()->setText( currentRemoteDir );
956 } 1025 }
957 1026
958 remoteDirList( (const QString &)currentRemoteDir); 1027 remoteDirList( (const QString &)currentRemoteDir);
959 } 1028 }
960} 1029}
961 1030
962void OpieFtp::switchToLocalTab() 1031void OpieFtp::switchToLocalTab()
963{ 1032{
964 TabWidget->setCurrentPage(0); 1033 TabWidget->setCurrentPage(0);
965} 1034}
966 1035
967void OpieFtp::switchToRemoteTab() 1036void OpieFtp::switchToRemoteTab()
968{ 1037{
969 TabWidget->setCurrentPage(1); 1038 TabWidget->setCurrentPage(1);
970} 1039}
971 1040
972void OpieFtp::switchToConfigTab() 1041void OpieFtp::switchToConfigTab()
973{ 1042{
974 TabWidget->setCurrentPage(2); 1043 TabWidget->setCurrentPage(2);
975} 1044}
976 1045
977void OpieFtp::readConfig() 1046void OpieFtp::readConfig()
978{ 1047{
979 fillCombos(); 1048 fillCombos();
980 Config cfg("opieftp"); 1049 Config cfg("opieftp");
981 cfg.setGroup("Server"); 1050 cfg.setGroup("Server");
982 currentServerConfig = cfg.readNumEntry("currentServer", -1); 1051 currentServerConfig = cfg.readNumEntry("currentServer", -1);
983 serverComboSelected( currentServerConfig); 1052 serverComboSelected( currentServerConfig);
984} 1053}
985 1054
986void OpieFtp::writeConfig() 1055void OpieFtp::writeConfig()
987{ 1056{
988 1057
989 Config cfg("opieftp"); 1058 Config cfg("opieftp");
990 cfg.setGroup("Server"); 1059 cfg.setGroup("Server");
991 QString username, remoteServerStr, remotePathStr, password, port, temp; 1060 QString username, remoteServerStr, remotePathStr, password, port, temp;
992 int numberOfEntries = cfg.readNumEntry("numberOfEntries",0); 1061 int numberOfEntries = cfg.readNumEntry("numberOfEntries",0);
993 if( currentServerConfig == -1) { 1062 if( currentServerConfig == -1) {
994 1063
995 temp.setNum( numberOfEntries + 1); 1064 temp.setNum( numberOfEntries + 1);
996 cfg.setGroup("Server"); 1065 cfg.setGroup("Server");
997 remoteServerStr = cfg.readEntry( temp,""); 1066 remoteServerStr = cfg.readEntry( temp,"");
998 int divider = remoteServerStr.length() - remoteServerStr.find(":",0,TRUE); 1067 int divider = remoteServerStr.length() - remoteServerStr.find(":",0,TRUE);
999 remoteServerStr = remoteServerStr.left(remoteServerStr.length()-divider); 1068 remoteServerStr = remoteServerStr.left(remoteServerStr.length()-divider);
1000 1069
1001 temp.setNum(numberOfEntries+1); 1070 temp.setNum(numberOfEntries+1);
1002 cfg.setGroup("Server"); 1071 cfg.setGroup("Server");
1003 cfg.writeEntry( temp, ServerComboBox->currentText() +":"+PortSpinBox->cleanText() ); 1072 cfg.writeEntry( temp, ServerComboBox->currentText() +":"+PortSpinBox->cleanText() );
1004 cfg.setGroup(temp); 1073 cfg.setGroup(temp);
1005 cfg.writeEntry("RemotePath", remotePath->text()); 1074 cfg.writeEntry("RemotePath", remotePath->text());
1006 cfg.writeEntry("Username", UsernameComboBox->currentText()); 1075 cfg.writeEntry("Username", UsernameComboBox->currentText());
1007 cfg.writeEntryCrypt( UsernameComboBox->currentText(), PasswordEdit->text()); 1076 cfg.writeEntryCrypt( UsernameComboBox->currentText(), PasswordEdit->text());
1008 cfg.setGroup("Server"); 1077 cfg.setGroup("Server");
1009 cfg.writeEntry("numberOfEntries", QString::number(numberOfEntries + 1 )); 1078 cfg.writeEntry("numberOfEntries", QString::number(numberOfEntries + 1 ));
1010 1079
1011 } 1080 }
1012} 1081}
1013 1082
1014void OpieFtp::fillCombos() 1083void OpieFtp::fillCombos()
1015{ 1084{
1016 Config cfg("opieftp"); 1085 Config cfg("opieftp");
1017 cfg.setGroup("Server"); 1086 cfg.setGroup("Server");
1018 QString username, remoteServerStr, remotePathStr, password, port, temp; 1087 QString username, remoteServerStr, remotePathStr, password, port, temp;
1019 int numberOfEntries = cfg.readNumEntry("numberOfEntries",0); 1088 int numberOfEntries = cfg.readNumEntry("numberOfEntries",0);
diff --git a/noncore/net/opieftp/opieftp.h b/noncore/net/opieftp/opieftp.h
index 52ed885..57599b7 100644
--- a/noncore/net/opieftp/opieftp.h
+++ b/noncore/net/opieftp/opieftp.h
@@ -1,111 +1,117 @@
1/*************************************************************************** 1/***************************************************************************
2 opieftp.h 2 opieftp.h
3 ------------------- 3 -------------------
4** Created: Sat Mar 9 23:33:09 2002 4** Created: Sat Mar 9 23:33:09 2002
5 copyright : (C) 2002 by ljp 5 copyright : (C) 2002 by ljp
6 email : ljp@llornkcor.com 6 email : ljp@llornkcor.com
7 * This program is free software; you can redistribute it and/or modify * 7 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by * 8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation; either version 2 of the License, or * 9 * the Free Software Foundation; either version 2 of the License, or *
10 * (at your option) any later version. * 10 * (at your option) any later version. *
11 ***************************************************************************/ 11 ***************************************************************************/
12#ifndef OPIEFTP_H 12#ifndef OPIEFTP_H
13#define OPIEFTP_H 13#define OPIEFTP_H
14 14
15#include <qvariant.h> 15#include <qvariant.h>
16#include <qdialog.h> 16#include <qdialog.h>
17#include <qmainwindow.h> 17#include <qmainwindow.h>
18#include <qdir.h> 18#include <qdir.h>
19#include <qstring.h> 19#include <qstring.h>
20#include <qpoint.h> 20#include <qpoint.h>
21 21
22class QVBoxLayout; 22class QVBoxLayout;
23class QHBoxLayout; 23class QHBoxLayout;
24class QGridLayout; 24class QGridLayout;
25class QComboBox; 25class QComboBox;
26class QListView; 26class QListView;
27class QListviewItem; 27class QListviewItem;
28class QLabel; 28class QLabel;
29class QProgressBar; 29class QProgressBar;
30class QSpinBox; 30class QSpinBox;
31class QTabWidget; 31class QTabWidget;
32class QWidget; 32class QWidget;
33class QPEToolBar; 33class QPEToolBar;
34class QPEMenuBar; 34class QPEMenuBar;
35class QPopupMenu; 35class QPopupMenu;
36class QFile; 36class QFile;
37class QListViewItem; 37class QListViewItem;
38class QLineEdit; 38class QLineEdit;
39class QPushButton; 39class QPushButton;
40class QStringList;
40 41
41class OpieFtp : public QMainWindow 42class OpieFtp : public QMainWindow
42{ 43{
43 Q_OBJECT 44 Q_OBJECT
44 45
45public: 46public:
46 OpieFtp( ); 47 OpieFtp( );
47 ~OpieFtp(); 48 ~OpieFtp();
48 49
49 QTabWidget *TabWidget; 50 QTabWidget *TabWidget;
50 QWidget *tab, *tab_2, *tab_3; 51 QWidget *tab, *tab_2, *tab_3;
51 QListView *Local_View, *Remote_View; 52 QListView *Local_View, *Remote_View;
52 53
53 QComboBox *UsernameComboBox, *ServerComboBox; 54 QComboBox *UsernameComboBox, *ServerComboBox, *currentPathCombo;
54 QLineEdit *PasswordEdit, *remotePath, *currentPathEdit; 55 QLineEdit *PasswordEdit, *remotePath, *currentPathEdit;
55 QLabel *TextLabel2, *TextLabel1, *TextLabel3, *TextLabel4;; 56 QLabel *TextLabel2, *TextLabel1, *TextLabel3, *TextLabel4;;
56 QSpinBox* PortSpinBox; 57 QSpinBox* PortSpinBox;
57 QPopupMenu *connectionMenu, *localMenu, *remoteMenu, *tabMenu; 58 QPopupMenu *connectionMenu, *localMenu, *remoteMenu, *tabMenu;
58 QDir currentDir; 59 QDir currentDir;
59 QString currentRemoteDir; 60 QString currentRemoteDir;
60 QString filterStr; 61 QString filterStr;
61 QListViewItem * item; 62 QListViewItem * item;
62 QPushButton *connectServerBtn; 63 QPushButton *connectServerBtn;
63 bool b; 64 bool b;
64 int currentServerConfig; 65 int currentServerConfig;
65protected slots: 66protected slots:
66 void serverComboEdited(const QString & ); 67 void serverComboEdited(const QString & );
67 void showLocalMenu( QListViewItem *); 68 void showLocalMenu( QListViewItem *);
68 void showRemoteMenu( QListViewItem *); 69 void showRemoteMenu( QListViewItem *);
69 void doLocalCd(); 70 void doLocalCd();
70 void doRemoteCd(); 71 void doRemoteCd();
71 void localUpload(); 72 void localUpload();
72 void remoteDownload(); 73 void remoteDownload();
73 void newConnection(); 74 void newConnection();
74 void connector(); 75 void connector();
75 void disConnector(); 76 void disConnector();
76 void populateLocalView(); 77 void populateLocalView();
77 bool populateRemoteView(); 78 bool populateRemoteView();
78 void showHidden(); 79 void showHidden();
79 void writeConfig(); 80 void writeConfig();
80 void readConfig(); 81 void readConfig();
81 void localListClicked(QListViewItem *); 82 void localListClicked(QListViewItem *);
82 void remoteListClicked(QListViewItem *); 83 void remoteListClicked(QListViewItem *);
83 void ListPressed( int, QListViewItem *, const QPoint&, int); 84 void ListPressed( int, QListViewItem *, const QPoint&, int);
84 void RemoteListPressed( int, QListViewItem *, const QPoint&, int); 85 void RemoteListPressed( int, QListViewItem *, const QPoint&, int);
85 void localMakDir(); 86 void localMakDir();
86 void localDelete(); 87 void localDelete();
87 void remoteMakDir(); 88 void remoteMakDir();
88 void remoteDelete(); 89 void remoteDelete();
89 bool remoteDirList(const QString &); 90 bool remoteDirList(const QString &);
90 bool remoteChDir(const QString &); 91 bool remoteChDir(const QString &);
91 void tabChanged(QWidget*); 92 void tabChanged(QWidget*);
92 void cleanUp(); 93 void cleanUp();
93 void remoteRename(); 94 void remoteRename();
94 void localRename(); 95 void localRename();
95 void currentPathEditChanged(); 96 void currentPathComboChanged();
97 void fillCombos();
98 void fillCombo(const QString &);
99 void currentPathComboActivated(const QString &);
96 void switchToLocalTab(); 100 void switchToLocalTab();
97 void switchToRemoteTab(); 101 void switchToRemoteTab();
98 void switchToConfigTab(); 102 void switchToConfigTab();
99 void fillCombos(); 103 void fillCombo();
104 void fillRemoteCombo();
100 void serverComboSelected(int); 105 void serverComboSelected(int);
101 void deleteServer(); 106 void deleteServer();
102 void connectorBtnToggled(bool); 107 void connectorBtnToggled(bool);
103protected: 108protected:
109 QStringList remoteDirPathStringList, localDirPathStringList;
104 void nullifyCallBack(); 110 void nullifyCallBack();
105 QGridLayout* tabLayout; 111 QGridLayout* tabLayout;
106 QGridLayout* tabLayout_2; 112 QGridLayout* tabLayout_2;
107 QGridLayout* tabLayout_3; 113 QGridLayout* tabLayout_3;
108 114
109}; 115};
110 116
111#endif // OPIEFTP_H 117#endif // OPIEFTP_H