summaryrefslogtreecommitdiffstats
path: root/kftpgrabber/src/widgets/browser/view.h
diff options
context:
space:
mode:
Diffstat (limited to 'kftpgrabber/src/widgets/browser/view.h')
-rw-r--r--kftpgrabber/src/widgets/browser/view.h48
1 files changed, 24 insertions, 24 deletions
diff --git a/kftpgrabber/src/widgets/browser/view.h b/kftpgrabber/src/widgets/browser/view.h
index 67dffa6..198a383 100644
--- a/kftpgrabber/src/widgets/browser/view.h
+++ b/kftpgrabber/src/widgets/browser/view.h
@@ -38,24 +38,24 @@
#include "browser/locationnavigator.h"
-#include <qwidget.h>
-#include <qlabel.h>
-#include <qpushbutton.h>
-#include <qtimer.h>
-#include <qdatetime.h>
-#include <qsplitter.h>
+#include <ntqwidget.h>
+#include <ntqlabel.h>
+#include <ntqpushbutton.h>
+#include <ntqtimer.h>
+#include <ntqdatetime.h>
+#include <ntqsplitter.h>
#include <kurl.h>
-#include <kfileitem.h>
+#include <tdefileitem.h>
namespace KFTPSession {
class Session;
class Manager;
}
-class KToolBar;
+class TDEToolBar;
class KHistoryCombo;
-class KAction;
+class TDEAction;
class KLineEdit;
namespace KFTPEngine {
@@ -76,7 +76,7 @@ class FilterWidget;
/**
* @author Jernej Kos
*/
-class View : public QWidget
+class View : public TQWidget
{
Q_OBJECT
friend class Actions;
@@ -89,7 +89,7 @@ public:
/**
* Class constructor.
*/
- View(QWidget *parent, const char *name, KFTPEngine::Thread *client, KFTPSession::Session *session);
+ View(TQWidget *parent, const char *name, KFTPEngine::Thread *client, KFTPSession::Session *session);
/**
* Class destructor.
@@ -107,7 +107,7 @@ public:
* @param index Variable to save the current history position to
* @return Current history element list
*/
- const QValueList<LocationNavigator::Element> history(int &index) const;
+ const TQValueList<LocationNavigator::Element> history(int &index) const;
/**
* Returns all currenty selected items.
@@ -181,7 +181,7 @@ public:
/**
* Renames the provided source file to a new name.
*/
- void rename(const KURL &source, const QString &name);
+ void rename(const KURL &source, const TQString &name);
/**
* Returns the details view widget.
@@ -196,7 +196,7 @@ public:
/**
* Returns the status label widget.
*/
- QLabel *getStatusLabel() const { return m_statusMsg; }
+ TQLabel *getStatusLabel() const { return m_statusMsg; }
/**
* Returns the associated session.
@@ -221,17 +221,17 @@ private:
Actions *m_actions;
- KToolBar *m_toolBarFirst; /* Upper toolbar */
- KToolBar *m_toolBarSecond; /* Lower toolbar */
- KToolBar *m_searchToolBar;
+ TDEToolBar *m_toolBarFirst; /* Upper toolbar */
+ TDEToolBar *m_toolBarSecond; /* Lower toolbar */
+ TDEToolBar *m_searchToolBar;
- QLabel *m_statusMsg;
- QLabel *m_connDurationMsg;
- QPushButton *m_sslIcon;
- QSplitter *m_splitter;
+ TQLabel *m_statusMsg;
+ TQLabel *m_connDurationMsg;
+ TQPushButton *m_sslIcon;
+ TQSplitter *m_splitter;
- QTimer *m_connTimer;
- QTime m_connDuration;
+ TQTimer *m_connTimer;
+ TQTime m_connDuration;
KHistoryCombo *m_historyCombo;
FilterWidget *m_searchFilter;
@@ -240,7 +240,7 @@ public slots:
void updateBookmarks();
private slots:
void slotHistoryEraseClicked();
- void slotHistoryActivated(const QString &text);
+ void slotHistoryActivated(const TQString &text);
void slotHistoryChanged();
void slotDisplayCertInfo();