2007-05-22 18:48:34 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 by Matias Valdenegro T. <mvaldenegro@informatica.utem.cl>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Library General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation
|
|
|
|
*
|
|
|
|
* 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 __V_BOX_LAYOUT__
|
|
|
|
#define __V_BOX_LAYOUT__
|
|
|
|
|
|
|
|
#include <QtCore/QRectF>
|
|
|
|
#include <QtCore/QSizeF>
|
|
|
|
|
2007-06-02 19:29:39 +02:00
|
|
|
#include <plasma/plasma_export.h>
|
|
|
|
#include <plasma/widgets/layout.h>
|
2007-05-22 18:48:34 +02:00
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
|
2007-05-25 03:27:27 +02:00
|
|
|
/**
|
|
|
|
* Vertical Box Layout
|
|
|
|
*/
|
2007-05-29 10:02:01 +02:00
|
|
|
class PLASMA_EXPORT VBoxLayout : public Layout
|
2007-05-22 18:48:34 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
VBoxLayout(LayoutItem *parent = 0);
|
|
|
|
virtual ~VBoxLayout();
|
|
|
|
|
|
|
|
Qt::Orientations expandingDirections() const;
|
|
|
|
|
|
|
|
QSizeF minimumSize() const;
|
|
|
|
QSizeF maximumSize() const;
|
|
|
|
|
|
|
|
bool hasHeightForWidth() const;
|
|
|
|
qreal heightForWidth(qreal w) const;
|
|
|
|
|
|
|
|
QRectF geometry() const;
|
|
|
|
void setGeometry(const QRectF& geometry);
|
|
|
|
|
|
|
|
QSizeF sizeHint() const;
|
|
|
|
|
|
|
|
int count() const;
|
|
|
|
|
|
|
|
bool isEmpty() const;
|
|
|
|
|
2007-05-28 07:46:24 +02:00
|
|
|
void insertItem(int index, LayoutItem *l);
|
2007-05-22 18:48:34 +02:00
|
|
|
void addItem(LayoutItem *l);
|
|
|
|
|
|
|
|
void removeItem(LayoutItem *l);
|
|
|
|
|
|
|
|
int indexOf(LayoutItem *l) const;
|
|
|
|
LayoutItem *itemAt(int i) const;
|
|
|
|
LayoutItem *takeAt(int i);
|
|
|
|
|
|
|
|
QSizeF size() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
class Private;
|
|
|
|
Private *const d;
|
|
|
|
};
|
|
|
|
|
2007-05-22 23:05:42 +02:00
|
|
|
}
|
2007-05-22 18:48:34 +02:00
|
|
|
|
|
|
|
#endif /* __V_BOX_LAYOUT__ */
|