summaryrefslogtreecommitdiffstats
path: root/kpager/kpager.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
commitc663b6440964f6ac48027143ac9e63298991f9d0 (patch)
tree6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kpager/kpager.h
parenta061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff)
downloadtdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz
tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpager/kpager.h')
-rw-r--r--kpager/kpager.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/kpager/kpager.h b/kpager/kpager.h
index 9fe67942c..a659c7592 100644
--- a/kpager/kpager.h
+++ b/kpager/kpager.h
@@ -25,8 +25,8 @@
#ifndef __KPAGER_H
#define __KPAGER_H
-#include <qwidget.h>
-#include <qintdict.h>
+#include <tqwidget.h>
+#include <tqintdict.h>
#include <kmainwindow.h>
#include <kwin.h>
#include "kpagerIface.h"
@@ -39,7 +39,7 @@ class KPagerMainWindow : public KMainWindow, public virtual KPagerIface
Q_OBJECT
public:
- KPagerMainWindow(QWidget *parent=0, const char *name=0);
+ KPagerMainWindow(TQWidget *parent=0, const char *name=0);
~KPagerMainWindow();
virtual void showAt(int x, int y);
@@ -50,10 +50,10 @@ public slots:
protected:
bool queryClose();
- void showEvent(QShowEvent *ev);
+ void showEvent(TQShowEvent *ev);
KPager *m_pPager;
- class QTimer *timeout;
+ class TQTimer *timeout;
bool m_reallyClose;
};
@@ -72,11 +72,11 @@ public:
void redrawDesktops();
- void showPopupMenu( WId wid, QPoint pos);
+ void showPopupMenu( WId wid, TQPoint pos);
KWin::WindowInfo* info( WId win );
- QSize sizeHint() const;
+ TQSize sizeHint() const;
enum LayoutTypes { Classical=0, Horizontal, Vertical };
@@ -111,25 +111,25 @@ protected:
protected:
KWinModule *m_winmodule;
- QValueList<class Desktop *> m_desktops;
+ TQValueList<class Desktop *> m_desktops;
- QIntDict<KWin::WindowInfo> m_windows;
+ TQIntDict<KWin::WindowInfo> m_windows;
WId m_activeWin;
- const QString lWidth();
- const QString lHeight();
+ const TQString lWidth();
+ const TQString lHeight();
LayoutTypes m_layoutType;
- class QGridLayout *m_layout;
+ class TQGridLayout *m_layout;
KPopupMenu *m_mnu;
- QPopupMenu *m_smnu, *m_dmnu;
+ TQPopupMenu *m_smnu, *m_dmnu;
KAction *m_quit_action;
KAction *m_prefs_action;
KWin::WindowInfo m_winfo;
bool m_showStickyOption; // To be removed after the message freeze
- QTimer *m_grabWinTimer;
+ TQTimer *m_grabWinTimer;
int m_currentDesktop;
public: