summaryrefslogtreecommitdiffstats
path: root/examples/customlayout/card.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/customlayout/card.h')
-rw-r--r--examples/customlayout/card.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/examples/customlayout/card.h b/examples/customlayout/card.h
new file mode 100644
index 000000000..846bde9f4
--- /dev/null
+++ b/examples/customlayout/card.h
@@ -0,0 +1,42 @@
+/****************************************************************************
+**
+** Definition of simple flow layout for custom layout example
+**
+** Created : 979899
+**
+** Copyright (C) 1997-2008 Trolltech ASA. All rights reserved.
+**
+** This file is part of an example program for TQt. This example
+** program may be used, distributed and modified without limitation.
+**
+*****************************************************************************/
+
+#ifndef CARD_H
+#define CARD_H
+
+#include <qlayout.h>
+#include <qptrlist.h>
+
+class CardLayout : public TQLayout
+{
+public:
+ CardLayout( TQWidget *parent, int dist )
+ : TQLayout( parent, 0, dist ) {}
+ CardLayout( TQLayout* parent, int dist)
+ : TQLayout( parent, dist ) {}
+ CardLayout( int dist )
+ : TQLayout( dist ) {}
+ ~CardLayout();
+
+ void addItem( TQLayoutItem *item );
+ TQSize sizeHint() const;
+ TQSize minimumSize() const;
+ TQLayoutIterator iterator();
+ void setGeometry( const TQRect &rect );
+
+private:
+ TQPtrList<TQLayoutItem> list;
+
+};
+
+#endif