author | llornkcor <llornkcor> | 2002-03-30 02:05:14 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-03-30 02:05:14 (UTC) |
commit | 85b150655408f9f7a0cec56f096d535aa675f804 (patch) (unidiff) | |
tree | aa5a53bdd63ae537906021b2783291f1c7b31cf7 | |
parent | 8c3ddae6102564868c3ae32e337a66dd31c919ac (diff) | |
download | opie-85b150655408f9f7a0cec56f096d535aa675f804.zip opie-85b150655408f9f7a0cec56f096d535aa675f804.tar.gz opie-85b150655408f9f7a0cec56f096d535aa675f804.tar.bz2 |
damn spelling error #2
-rw-r--r-- | noncore/net/opieftp/opieftp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/net/opieftp/opieftp.cpp b/noncore/net/opieftp/opieftp.cpp index fce7574..3dda17e 100644 --- a/noncore/net/opieftp/opieftp.cpp +++ b/noncore/net/opieftp/opieftp.cpp | |||
@@ -39,193 +39,193 @@ | |||
39 | #include <qprogressbar.h> | 39 | #include <qprogressbar.h> |
40 | #include <qspinbox.h> | 40 | #include <qspinbox.h> |
41 | #include <qtabwidget.h> | 41 | #include <qtabwidget.h> |
42 | #include <qwidget.h> | 42 | #include <qwidget.h> |
43 | #include <qlayout.h> | 43 | #include <qlayout.h> |
44 | #include <qimage.h> | 44 | #include <qimage.h> |
45 | #include <qpixmap.h> | 45 | #include <qpixmap.h> |
46 | #include <qmessagebox.h> | 46 | #include <qmessagebox.h> |
47 | #include <qlineedit.h> | 47 | #include <qlineedit.h> |
48 | #include <qregexp.h> | 48 | #include <qregexp.h> |
49 | 49 | ||
50 | #include <unistd.h> | 50 | #include <unistd.h> |
51 | #include <stdlib.h> | 51 | #include <stdlib.h> |
52 | 52 | ||
53 | 53 | ||
54 | QProgressBar *ProgressBar; | 54 | QProgressBar *ProgressBar; |
55 | static netbuf *conn=NULL; | 55 | static netbuf *conn=NULL; |
56 | 56 | ||
57 | static int log_progress(netbuf *ctl, int xfered, void *arg) | 57 | static int log_progress(netbuf *ctl, int xfered, void *arg) |
58 | { | 58 | { |
59 | int fsz = *(int *)arg; | 59 | int fsz = *(int *)arg; |
60 | int pct = (xfered * 100) / fsz; | 60 | int pct = (xfered * 100) / fsz; |
61 | // printf("%3d%%\r", pct); | 61 | // printf("%3d%%\r", pct); |
62 | // fflush(stdout); | 62 | // fflush(stdout); |
63 | ProgressBar->setProgress(xfered); | 63 | ProgressBar->setProgress(xfered); |
64 | qApp->processEvents(); | 64 | qApp->processEvents(); |
65 | return 1; | 65 | return 1; |
66 | } | 66 | } |
67 | 67 | ||
68 | OpieFtp::OpieFtp( ) | 68 | OpieFtp::OpieFtp( ) |
69 | : QMainWindow( ) | 69 | : QMainWindow( ) |
70 | { | 70 | { |
71 | setCaption( tr( "OpieFtp" ) ); | 71 | setCaption( tr( "OpieFtp" ) ); |
72 | 72 | ||
73 | QGridLayout *layout = new QGridLayout( this ); | 73 | QGridLayout *layout = new QGridLayout( this ); |
74 | layout->setSpacing( 2); | 74 | layout->setSpacing( 2); |
75 | layout->setMargin( 2); | 75 | layout->setMargin( 2); |
76 | 76 | ||
77 | connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) ); | 77 | connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) ); |
78 | 78 | ||
79 | QPEMenuBar *menuBar = new QPEMenuBar(this); | 79 | QPEMenuBar *menuBar = new QPEMenuBar(this); |
80 | connectionMenu = new QPopupMenu( this ); | 80 | connectionMenu = new QPopupMenu( this ); |
81 | localMenu = new QPopupMenu( this ); | 81 | localMenu = new QPopupMenu( this ); |
82 | remoteMenu = new QPopupMenu( this ); | 82 | remoteMenu = new QPopupMenu( this ); |
83 | tabMenu = new QPopupMenu( this ); | 83 | tabMenu = new QPopupMenu( this ); |
84 | 84 | ||
85 | layout->addMultiCellWidget( menuBar, 0, 0, 0, 3 ); | 85 | layout->addMultiCellWidget( menuBar, 0, 0, 0, 3 ); |
86 | 86 | ||
87 | menuBar->insertItem( tr( "Connection" ), connectionMenu); | 87 | menuBar->insertItem( tr( "Connection" ), connectionMenu); |
88 | menuBar->insertItem( tr( "Local" ), localMenu); | 88 | menuBar->insertItem( tr( "Local" ), localMenu); |
89 | menuBar->insertItem( tr( "Remote" ), remoteMenu); | 89 | menuBar->insertItem( tr( "Remote" ), remoteMenu); |
90 | menuBar->insertItem( tr( "View" ), tabMenu); | 90 | menuBar->insertItem( tr( "View" ), tabMenu); |
91 | 91 | ||
92 | connectionMenu->insertItem( tr( "New" ), this, SLOT( newConnection() )); | 92 | connectionMenu->insertItem( tr( "New" ), this, SLOT( newConnection() )); |
93 | connectionMenu->insertItem( tr( "Connect" ), this, SLOT( connector() )); | 93 | connectionMenu->insertItem( tr( "Connect" ), this, SLOT( connector() )); |
94 | connectionMenu->insertItem( tr( "Disconnect" ), this, SLOT( disConnector() )); | 94 | connectionMenu->insertItem( tr( "Disconnect" ), this, SLOT( disConnector() )); |
95 | 95 | ||
96 | localMenu->insertItem( tr( "Show Hidden Files" ), this, SLOT( showHidden() )); | 96 | localMenu->insertItem( tr( "Show Hidden Files" ), this, SLOT( showHidden() )); |
97 | localMenu->insertSeparator(); | 97 | localMenu->insertSeparator(); |
98 | localMenu->insertItem( tr( "Upload" ), this, SLOT( localUpload() )); | 98 | localMenu->insertItem( tr( "Upload" ), this, SLOT( localUpload() )); |
99 | localMenu->insertItem( tr( "Make Directory" ), this, SLOT( localMakDir() )); | 99 | localMenu->insertItem( tr( "Make Directory" ), this, SLOT( localMakDir() )); |
100 | localMenu->insertItem( tr( "Rename" ), this, SLOT( localRename() )); | 100 | localMenu->insertItem( tr( "Rename" ), this, SLOT( localRename() )); |
101 | localMenu->insertSeparator(); | 101 | localMenu->insertSeparator(); |
102 | localMenu->insertItem( tr( "Delete" ), this, SLOT( localDelete() )); | 102 | localMenu->insertItem( tr( "Delete" ), this, SLOT( localDelete() )); |
103 | localMenu->setCheckable(TRUE); | 103 | localMenu->setCheckable(TRUE); |
104 | 104 | ||
105 | remoteMenu->insertItem( tr( "Download" ), this, SLOT( remoteDownload() )); | 105 | remoteMenu->insertItem( tr( "Download" ), this, SLOT( remoteDownload() )); |
106 | remoteMenu->insertItem( tr( "Make Directory" ), this, SLOT( remoteMakDir() )); | 106 | remoteMenu->insertItem( tr( "Make Directory" ), this, SLOT( remoteMakDir() )); |
107 | remoteMenu->insertItem( tr( "Rename" ), this, SLOT( remoteRename() )); | 107 | remoteMenu->insertItem( tr( "Rename" ), this, SLOT( remoteRename() )); |
108 | remoteMenu->insertSeparator(); | 108 | remoteMenu->insertSeparator(); |
109 | remoteMenu->insertItem( tr( "Delete" ), this, SLOT( remoteDelete() )); | 109 | remoteMenu->insertItem( tr( "Delete" ), this, SLOT( remoteDelete() )); |
110 | 110 | ||
111 | tabMenu->insertItem( tr( "Switch to Local" ), this, SLOT( switchToLocalTab() )); | 111 | tabMenu->insertItem( tr( "Switch to Local" ), this, SLOT( switchToLocalTab() )); |
112 | tabMenu->insertItem( tr( "Switch to Remote" ), this, SLOT( switchToRemoteTab() )); | 112 | tabMenu->insertItem( tr( "Switch to Remote" ), this, SLOT( switchToRemoteTab() )); |
113 | tabMenu->insertItem( tr( "Switch to Config" ), this, SLOT( switchToConfigTab() )); | 113 | tabMenu->insertItem( tr( "Switch to Config" ), this, SLOT( switchToConfigTab() )); |
114 | tabMenu->setCheckable(TRUE); | 114 | tabMenu->setCheckable(TRUE); |
115 | 115 | ||
116 | TabWidget = new QTabWidget( this, "TabWidget" ); | 116 | TabWidget = new QTabWidget( this, "TabWidget" ); |
117 | layout->addMultiCellWidget( TabWidget, 1, 1, 0, 3 ); | 117 | layout->addMultiCellWidget( TabWidget, 1, 1, 0, 3 ); |
118 | 118 | ||
119 | TabWidget->setTabShape(QTabWidget::Triangular); | 119 | TabWidget->setTabShape(QTabWidget::Triangular); |
120 | 120 | ||
121 | tab = new QWidget( TabWidget, "tab" ); | 121 | tab = new QWidget( TabWidget, "tab" ); |
122 | tabLayout = new QGridLayout( tab ); | 122 | tabLayout = new QGridLayout( tab ); |
123 | tabLayout->setSpacing( 2); | 123 | tabLayout->setSpacing( 2); |
124 | tabLayout->setMargin( 2); | 124 | tabLayout->setMargin( 2); |
125 | 125 | ||
126 | Local_View = new QListView( tab, "Local_View" ); | 126 | Local_View = new QListView( tab, "Local_View" ); |
127 | // Local_View->setResizePolicy( QListView::AutoOneFit ); | 127 | // Local_View->setResizePolicy( QListView::AutoOneFit ); |
128 | Local_View->addColumn( tr("File"),150); | 128 | Local_View->addColumn( tr("File"),150); |
129 | Local_View->addColumn( tr("Size"),-1); | 129 | Local_View->addColumn( tr("Size"),-1); |
130 | Local_View->setColumnAlignment(1,QListView::AlignRight); | 130 | Local_View->setColumnAlignment(1,QListView::AlignRight); |
131 | Local_View->addColumn( tr("Date"),-1); | 131 | Local_View->addColumn( tr("Date"),-1); |
132 | Local_View->setColumnAlignment(2,QListView::AlignRight); | 132 | Local_View->setColumnAlignment(2,QListView::AlignRight); |
133 | Local_View->setAllColumnsShowFocus(TRUE); | 133 | Local_View->setAllColumnsShowFocus(TRUE); |
134 | Local_View->setMultiSelection( TRUE ); | 134 | Local_View->setMultiSelection( TRUE ); |
135 | Local_View->setSelectionMode(Q?istView::Extended); | 135 | Local_View->setSelectionMode(QListView::Extended); |
136 | QPEApplication::setStylusOperation( Local_View->viewport(),QPEApplication::RightOnHold); | 136 | QPEApplication::setStylusOperation( Local_View->viewport(),QPEApplication::RightOnHold); |
137 | 137 | ||
138 | tabLayout->addWidget( Local_View, 0, 0 ); | 138 | tabLayout->addWidget( Local_View, 0, 0 ); |
139 | 139 | ||
140 | connect( Local_View, SIGNAL( clicked( QListViewItem*)), | 140 | connect( Local_View, SIGNAL( clicked( QListViewItem*)), |
141 | this,SLOT( localListClicked(QListViewItem *)) ); | 141 | this,SLOT( localListClicked(QListViewItem *)) ); |
142 | // connect( Local_View, SIGNAL( doubleClicked( QListViewItem*)), | 142 | // connect( Local_View, SIGNAL( doubleClicked( QListViewItem*)), |
143 | // this,SLOT( localListClicked(QListViewItem *)) ); | 143 | // this,SLOT( localListClicked(QListViewItem *)) ); |
144 | connect( Local_View, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), | 144 | connect( Local_View, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), |
145 | this,SLOT( ListPressed(int, QListViewItem *, const QPoint&, int)) ); | 145 | this,SLOT( ListPressed(int, QListViewItem *, const QPoint&, int)) ); |
146 | 146 | ||
147 | TabWidget->insertTab( tab, tr( "Local" ) ); | 147 | TabWidget->insertTab( tab, tr( "Local" ) ); |
148 | 148 | ||
149 | tab_2 = new QWidget( TabWidget, "tab_2" ); | 149 | tab_2 = new QWidget( TabWidget, "tab_2" ); |
150 | tabLayout_2 = new QGridLayout( tab_2 ); | 150 | tabLayout_2 = new QGridLayout( tab_2 ); |
151 | tabLayout_2->setSpacing( 2); | 151 | tabLayout_2->setSpacing( 2); |
152 | tabLayout_2->setMargin( 2); | 152 | tabLayout_2->setMargin( 2); |
153 | 153 | ||
154 | Remote_View = new QListView( tab_2, "Remote_View" ); | 154 | Remote_View = new QListView( tab_2, "Remote_View" ); |
155 | Remote_View->addColumn( tr("File"),150); | 155 | Remote_View->addColumn( tr("File"),150); |
156 | Remote_View->addColumn( tr("Size"),-1); | 156 | Remote_View->addColumn( tr("Size"),-1); |
157 | Remote_View->setColumnAlignment(1,QListView::AlignRight); | 157 | Remote_View->setColumnAlignment(1,QListView::AlignRight); |
158 | Remote_View->addColumn( tr("Date"),-1); | 158 | Remote_View->addColumn( tr("Date"),-1); |
159 | Remote_View->setColumnAlignment(2,QListView::AlignRight); | 159 | Remote_View->setColumnAlignment(2,QListView::AlignRight); |
160 | Remote_View->addColumn( tr("Dir"),-1); | 160 | Remote_View->addColumn( tr("Dir"),-1); |
161 | Remote_View->setColumnAlignment(4,QListView::AlignRight); | 161 | Remote_View->setColumnAlignment(4,QListView::AlignRight); |
162 | Remote_View->setAllColumnsShowFocus(TRUE); | 162 | Remote_View->setAllColumnsShowFocus(TRUE); |
163 | Remote_View->setMultiSelection( TRUE ); | 163 | Remote_View->setMultiSelection( TRUE ); |
164 | Remote_View->setSelectionMode(QListView::Extended); | 164 | Remote_View->setSelectionMode(QListView::Extended); |
165 | 165 | ||
166 | QPEApplication::setStylusOperation( Remote_View->viewport(),QPEApplication::RightOnHold); | 166 | QPEApplication::setStylusOperation( Remote_View->viewport(),QPEApplication::RightOnHold); |
167 | 167 | ||
168 | connect( Remote_View, SIGNAL( clicked( QListViewItem*)), | 168 | connect( Remote_View, SIGNAL( clicked( QListViewItem*)), |
169 | this,SLOT( remoteListClicked(QListViewItem *)) ); | 169 | this,SLOT( remoteListClicked(QListViewItem *)) ); |
170 | connect( Remote_View, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), | 170 | connect( Remote_View, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), |
171 | this,SLOT( RemoteListPressed(int, QListViewItem *, const QPoint&, int)) ); | 171 | this,SLOT( RemoteListPressed(int, QListViewItem *, const QPoint&, int)) ); |
172 | 172 | ||
173 | tabLayout_2->addWidget( Remote_View, 0, 0 ); | 173 | tabLayout_2->addWidget( Remote_View, 0, 0 ); |
174 | 174 | ||
175 | TabWidget->insertTab( tab_2, tr( "Remote" ) ); | 175 | TabWidget->insertTab( tab_2, tr( "Remote" ) ); |
176 | 176 | ||
177 | tab_3 = new QWidget( TabWidget, "tab_3" ); | 177 | tab_3 = new QWidget( TabWidget, "tab_3" ); |
178 | tabLayout_3 = new QGridLayout( tab_3 ); | 178 | tabLayout_3 = new QGridLayout( tab_3 ); |
179 | tabLayout_3->setSpacing( 2); | 179 | tabLayout_3->setSpacing( 2); |
180 | tabLayout_3->setMargin( 2); | 180 | tabLayout_3->setMargin( 2); |
181 | 181 | ||
182 | TextLabel1 = new QLabel( tab_3, "TextLabel1" ); | 182 | TextLabel1 = new QLabel( tab_3, "TextLabel1" ); |
183 | TextLabel1->setText( tr( "Username" ) ); | 183 | TextLabel1->setText( tr( "Username" ) ); |
184 | tabLayout_3->addMultiCellWidget( TextLabel1, 0, 0, 0, 1 ); | 184 | tabLayout_3->addMultiCellWidget( TextLabel1, 0, 0, 0, 1 ); |
185 | 185 | ||
186 | UsernameComboBox = new QComboBox( FALSE, tab_3, "UsernameComboBox" ); | 186 | UsernameComboBox = new QComboBox( FALSE, tab_3, "UsernameComboBox" ); |
187 | UsernameComboBox->setEditable(TRUE); | 187 | UsernameComboBox->setEditable(TRUE); |
188 | tabLayout_3->addMultiCellWidget( UsernameComboBox, 1, 1, 0, 1 ); | 188 | tabLayout_3->addMultiCellWidget( UsernameComboBox, 1, 1, 0, 1 ); |
189 | 189 | ||
190 | TextLabel2 = new QLabel( tab_3, "TextLabel2" ); | 190 | TextLabel2 = new QLabel( tab_3, "TextLabel2" ); |
191 | TextLabel2->setText( tr( "Password" ) ); | 191 | TextLabel2->setText( tr( "Password" ) ); |
192 | tabLayout_3->addMultiCellWidget( TextLabel2, 0, 0, 2, 3 ); | 192 | tabLayout_3->addMultiCellWidget( TextLabel2, 0, 0, 2, 3 ); |
193 | 193 | ||
194 | PasswordEdit = new QLineEdit( "", tab_3, "PasswordComboBox" ); | 194 | PasswordEdit = new QLineEdit( "", tab_3, "PasswordComboBox" ); |
195 | PasswordEdit->setEchoMode(QLineEdit::Password); | 195 | PasswordEdit->setEchoMode(QLineEdit::Password); |
196 | tabLayout_3->addMultiCellWidget( PasswordEdit, 1, 1, 2, 3 ); | 196 | tabLayout_3->addMultiCellWidget( PasswordEdit, 1, 1, 2, 3 ); |
197 | 197 | ||
198 | TextLabel3 = new QLabel( tab_3, "TextLabel3" ); | 198 | TextLabel3 = new QLabel( tab_3, "TextLabel3" ); |
199 | TextLabel3->setText( tr( "Remote server" ) ); | 199 | TextLabel3->setText( tr( "Remote server" ) ); |
200 | tabLayout_3->addMultiCellWidget( TextLabel3, 2, 2, 0, 1 ); | 200 | tabLayout_3->addMultiCellWidget( TextLabel3, 2, 2, 0, 1 ); |
201 | 201 | ||
202 | ServerComboBox = new QComboBox( FALSE, tab_3, "ServerComboBox" ); | 202 | ServerComboBox = new QComboBox( FALSE, tab_3, "ServerComboBox" ); |
203 | ServerComboBox->setEditable(TRUE); | 203 | ServerComboBox->setEditable(TRUE); |
204 | tabLayout_3->addMultiCellWidget( ServerComboBox, 3, 3, 0, 1 ); | 204 | tabLayout_3->addMultiCellWidget( ServerComboBox, 3, 3, 0, 1 ); |
205 | 205 | ||
206 | connect(ServerComboBox,SIGNAL(activated(int)),this,SLOT(serverComboSelected(int ) )); | 206 | connect(ServerComboBox,SIGNAL(activated(int)),this,SLOT(serverComboSelected(int ) )); |
207 | connect(ServerComboBox,SIGNAL(textChanged(const QString &)),this,SLOT(serverComboEdited(const QString & ) )); | 207 | connect(ServerComboBox,SIGNAL(textChanged(const QString &)),this,SLOT(serverComboEdited(const QString & ) )); |
208 | 208 | ||
209 | QLabel *TextLabel5 = new QLabel( tab_3, "TextLabel5" ); | 209 | QLabel *TextLabel5 = new QLabel( tab_3, "TextLabel5" ); |
210 | TextLabel5->setText( tr( "Remote path" ) ); | 210 | TextLabel5->setText( tr( "Remote path" ) ); |
211 | tabLayout_3->addMultiCellWidget( TextLabel5, 2, 2, 2, 3 ); | 211 | tabLayout_3->addMultiCellWidget( TextLabel5, 2, 2, 2, 3 ); |
212 | 212 | ||
213 | 213 | ||
214 | remotePath = new QLineEdit( "/", tab_3, "remotePath" ); | 214 | remotePath = new QLineEdit( "/", tab_3, "remotePath" ); |
215 | tabLayout_3->addMultiCellWidget( remotePath, 3, 3, 2, 3 ); | 215 | tabLayout_3->addMultiCellWidget( remotePath, 3, 3, 2, 3 ); |
216 | 216 | ||
217 | TextLabel4 = new QLabel( tab_3, "TextLabel4" ); | 217 | TextLabel4 = new QLabel( tab_3, "TextLabel4" ); |
218 | TextLabel4->setText( tr( "Port" ) ); | 218 | TextLabel4->setText( tr( "Port" ) ); |
219 | tabLayout_3->addMultiCellWidget( TextLabel4, 4, 4, 0, 1 ); | 219 | tabLayout_3->addMultiCellWidget( TextLabel4, 4, 4, 0, 1 ); |
220 | 220 | ||
221 | PortSpinBox = new QSpinBox( tab_3, "PortSpinBox" ); | 221 | PortSpinBox = new QSpinBox( tab_3, "PortSpinBox" ); |
222 | PortSpinBox->setButtonSymbols( QSpinBox::UpDownArrows ); | 222 | PortSpinBox->setButtonSymbols( QSpinBox::UpDownArrows ); |
223 | PortSpinBox->setMaxValue(32786); | 223 | PortSpinBox->setMaxValue(32786); |
224 | tabLayout_3->addMultiCellWidget( PortSpinBox, 4, 4, 1, 1); | 224 | tabLayout_3->addMultiCellWidget( PortSpinBox, 4, 4, 1, 1); |
225 | 225 | ||
226 | QPushButton *deleteServerBtn; | 226 | QPushButton *deleteServerBtn; |
227 | deleteServerBtn = new QPushButton( "Delete Server", tab_3 , "OpenButton" ); | 227 | deleteServerBtn = new QPushButton( "Delete Server", tab_3 , "OpenButton" ); |
228 | tabLayout_3->addMultiCellWidget( deleteServerBtn, 5, 5, 2, 3); | 228 | tabLayout_3->addMultiCellWidget( deleteServerBtn, 5, 5, 2, 3); |
229 | 229 | ||
230 | connect(deleteServerBtn,SIGNAL(clicked()),SLOT(deleteServer())); | 230 | connect(deleteServerBtn,SIGNAL(clicked()),SLOT(deleteServer())); |
231 | 231 | ||