summaryrefslogtreecommitdiff
path: root/noncore/net/opieftp/opieftp.h
Unidiff
Diffstat (limited to 'noncore/net/opieftp/opieftp.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opieftp/opieftp.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/noncore/net/opieftp/opieftp.h b/noncore/net/opieftp/opieftp.h
index 57599b7..32862c7 100644
--- a/noncore/net/opieftp/opieftp.h
+++ b/noncore/net/opieftp/opieftp.h
@@ -43,25 +43,25 @@ class OpieFtp : public QMainWindow
43{ 43{
44 Q_OBJECT 44 Q_OBJECT
45 45
46public: 46public:
47 OpieFtp( ); 47 OpieFtp( );
48 ~OpieFtp(); 48 ~OpieFtp();
49 49
50 QTabWidget *TabWidget; 50 QTabWidget *TabWidget;
51 QWidget *tab, *tab_2, *tab_3; 51 QWidget *tab, *tab_2, *tab_3;
52 QListView *Local_View, *Remote_View; 52 QListView *Local_View, *Remote_View;
53 53
54 QComboBox *UsernameComboBox, *ServerComboBox, *currentPathCombo; 54 QComboBox *UsernameComboBox, *ServerComboBox, *currentPathCombo;
55 QLineEdit *PasswordEdit, *remotePath, *currentPathEdit; 55 QLineEdit *PasswordEdit, *remotePath;
56 QLabel *TextLabel2, *TextLabel1, *TextLabel3, *TextLabel4;; 56 QLabel *TextLabel2, *TextLabel1, *TextLabel3, *TextLabel4;;
57 QSpinBox* PortSpinBox; 57 QSpinBox* PortSpinBox;
58 QPopupMenu *connectionMenu, *localMenu, *remoteMenu, *tabMenu; 58 QPopupMenu *connectionMenu, *localMenu, *remoteMenu, *tabMenu;
59 QDir currentDir; 59 QDir currentDir;
60 QString currentRemoteDir; 60 QString currentRemoteDir;
61 QString filterStr; 61 QString filterStr;
62 QListViewItem * item; 62 QListViewItem * item;
63 QPushButton *connectServerBtn; 63 QPushButton *connectServerBtn;
64 bool b; 64 bool b;
65 int currentServerConfig; 65 int currentServerConfig;
66protected slots: 66protected slots:
67 void serverComboEdited(const QString & ); 67 void serverComboEdited(const QString & );
@@ -85,32 +85,31 @@ protected slots:
85 void RemoteListPressed( int, QListViewItem *, const QPoint&, int); 85 void RemoteListPressed( int, QListViewItem *, const QPoint&, int);
86 void localMakDir(); 86 void localMakDir();
87 void localDelete(); 87 void localDelete();
88 void remoteMakDir(); 88 void remoteMakDir();
89 void remoteDelete(); 89 void remoteDelete();
90 bool remoteDirList(const QString &); 90 bool remoteDirList(const QString &);
91 bool remoteChDir(const QString &); 91 bool remoteChDir(const QString &);
92 void tabChanged(QWidget*); 92 void tabChanged(QWidget*);
93 void cleanUp(); 93 void cleanUp();
94 void remoteRename(); 94 void remoteRename();
95 void localRename(); 95 void localRename();
96 void currentPathComboChanged(); 96 void currentPathComboChanged();
97 void fillCombos();
98 void fillCombo(const QString &);
99 void currentPathComboActivated(const QString &); 97 void currentPathComboActivated(const QString &);
100 void switchToLocalTab(); 98 void switchToLocalTab();
101 void switchToRemoteTab(); 99 void switchToRemoteTab();
102 void switchToConfigTab(); 100 void switchToConfigTab();
103 void fillCombo(); 101 void fillCombos();
104 void fillRemoteCombo(); 102 void fillRemoteCombo(const QString&);
103 void fillCombo(const QString &);
105 void serverComboSelected(int); 104 void serverComboSelected(int);
106 void deleteServer(); 105 void deleteServer();
107 void connectorBtnToggled(bool); 106 void connectorBtnToggled(bool);
108protected: 107protected:
109 QStringList remoteDirPathStringList, localDirPathStringList; 108 QStringList remoteDirPathStringList, localDirPathStringList;
110 void nullifyCallBack(); 109 void nullifyCallBack();
111 QGridLayout* tabLayout; 110 QGridLayout* tabLayout;
112 QGridLayout* tabLayout_2; 111 QGridLayout* tabLayout_2;
113 QGridLayout* tabLayout_3; 112 QGridLayout* tabLayout_3;
114 113
115}; 114};
116 115