summaryrefslogtreecommitdiffstats
path: root/src/flowlayout.h
blob: 624d38be4c7c1134b50199b968f437d574d927d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/***************************************************************************
 *   Copyright (C) 2005 by Ken Werner                                      *
 *   ken.werner@web.de                                                     *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.             *
 ***************************************************************************/
#ifndef FLOWLAYOUT_H
#define FLOWLAYOUT_H

#include <tqlayout.h>
#include <tqptrlist.h>

class Source;
class KConfig;

class FlowLayout : public TQLayout{
	Q_OBJECT
	TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:
	/**
	 * the direction for moveItem
	 */
	enum DIRECTION {
		ABOVE = 0,
		BELOW = 1
	};
	FlowLayout( TQWidget* parent, Qt::Orientation orientation=Qt::Horizontal, int border=0, int space=-1, const char* name=0 );
	FlowLayout( TQLayout* parent, Qt::Orientation orientation=Qt::Horizontal, int space=-1, const char* name=0 );
	FlowLayout( Qt::Orientation=Qt::Horizontal, int space=-1, const char* name=0 );
	virtual ~FlowLayout();
	/**
	 * tells all sources their positions
	 */
	void updatePositions(KConfig * inKConfig);
	void addItem(TQLayoutItem* item);
	void addSource(Source* src);
	void remove(TQWidget* widget);
	/**
	 * Returns the number of items in the tqlayout
	 */
	uint count();
	/**
	 * moves the item \c which above/beneath item \c relate
	 * \param dir ABOVE if above, BENEATH if beneath
	 * \return the new Position or -1 if no real move was made
	 */
	bool moveItem(const TQLayoutItem* which, const TQLayoutItem* relate, DIRECTION direction);
	bool hasHeightForWidth() const;
	int heightForWidth(int w) const;
	bool hasWidthForHeight() const;
	int widthForHeight(int h) const;
	TQSize tqsizeHint() const;
	TQSize tqminimumSize() const;
	TQLayoutIterator iterator();
	TQSizePolicy::ExpandData expanding() const;
	Qt::Orientation getOrientation() const;

#ifdef USE_QT4
	QLAYOUT_REQUIRED_METHOD_DECLARATIONS
#endif // USE_QT4

public slots:
	void setOrientation(Qt::Orientation orientation);

protected:
	void setGeometry(const TQRect&);

private:
	int doLayout( const TQRect&, bool testOnly = FALSE );
	int doLayoutHorizontal( const TQRect&, bool testOnly );
	int doLayoutVertical( const TQRect&, bool testOnly );
	Qt::Orientation mOrientation;
	TQPtrList<TQLayoutItem> mLayoutItems;
	// this is the connection between a tqlayout item and its source.
	TQMap<TQLayoutItem*, Source*> mSources;
	TQLayoutItem* mLastItem; // the item that was last added
};
#endif