summaryrefslogtreecommitdiffstats
path: root/kdm/kfrontend/themer/kdmlayout.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 /kdm/kfrontend/themer/kdmlayout.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 'kdm/kfrontend/themer/kdmlayout.h')
-rw-r--r--kdm/kfrontend/themer/kdmlayout.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kdm/kfrontend/themer/kdmlayout.h b/kdm/kfrontend/themer/kdmlayout.h
index 2e00675fb..491b20393 100644
--- a/kdm/kfrontend/themer/kdmlayout.h
+++ b/kdm/kfrontend/themer/kdmlayout.h
@@ -27,8 +27,8 @@
* but can be treated like a usual widget
*/
-#include <qvaluelist.h>
-#include <qsize.h>
+#include <tqvaluelist.h>
+#include <tqsize.h>
class KdmItem;
@@ -48,20 +48,20 @@ public:
// Updates the layout of all items knowing that the parent
// has the @p parentGeometry geometry
-// virtual void update( const QRect &parentGeometry ) = 0;
+// virtual void update( const TQRect &parentGeometry ) = 0;
protected:
- QValueList<KdmItem *> m_children;
+ TQValueList<KdmItem *> m_children;
};
class KdmLayoutFixed : public KdmLayout {
public:
- KdmLayoutFixed( const QDomNode &node );
+ KdmLayoutFixed( const TQDomNode &node );
// Updates the layout of all boxed items knowing that the parent
// has the @p parentGeometry geometry
- void update( const QRect &parentGeometry, bool force );
+ void update( const TQRect &parentGeometry, bool force );
};
/**
@@ -72,15 +72,15 @@ public:
class KdmLayoutBox : public KdmLayout {
public:
- KdmLayoutBox( const QDomNode &node );
+ KdmLayoutBox( const TQDomNode &node );
// Updates the layout of all boxed items knowing that they
// should fit into @p parentGeometry container
- void update( const QRect &parentGeometry, bool force );
+ void update( const TQRect &parentGeometry, bool force );
// Computes the size hint of the box, telling which is the
// smallest size inside which boxed items will fit
- QSize sizeHint();
+ TQSize sizeHint();
private:
struct {
@@ -92,7 +92,7 @@ private:
int minheight;
bool homogeneous;
} box;
-// QSize hintedSize;
+// TQSize hintedSize;
};
#endif