plasma-framework/layouts/flowlayout.h
Dan Meltzer a081559257 Commit initial progress of work to port to qt4.4
svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=780654
2008-02-29 17:43:31 +00:00

70 lines
2.1 KiB
C++

/*
* Copyright 2007 by Robert Knight <robertknight@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library 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 Library 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__
#define __FLOWLAYOUT__
#include <QtGui/QGraphicsLayout>
#include <plasma/plasma_export.h>
namespace Plasma
{
/**
* A layout which lays items out left-to-right , top-to-bottom.
*
* This is similar to the layout of items in a QListView.
*/
class PLASMA_EXPORT FlowLayout : public QGraphicsLayout
{
public:
/** Construct a new flow layout with the specified parent. */
explicit FlowLayout(QGraphicsLayoutItem* parent);
virtual ~FlowLayout();
// reimplemented
virtual int count() const;
virtual void addItem(QGraphicsLayoutItem* item);
virtual void removeItem(QGraphicsLayoutItem* item);
virtual int indexOf(QGraphicsLayoutItem* item) const;
virtual QGraphicsLayoutItem* itemAt(int i) const;
virtual QGraphicsLayoutItem* takeAt(int i);
virtual void removeAt(int i);
virtual void setColumnWidth( const qreal width );
virtual qreal columnWidth() const;
virtual QRectF geometry() const;
virtual void setGeometry(const QRectF &geom);
qreal spacing() const;
void setSpacing(qreal s);
protected:
void relayout();
virtual QSizeF sizeHint(Qt::SizeHint which, const QSizeF &constraint = QSizeF()) const;
private:
class Private;
Private *const d;
};
}
#endif // __FLOWLAYOUT__