plasma-framework/widgets/vboxlayout.h
Aaron J. Seigo f82a4cfb55 separate out the stuff the hbox will need from vbox and put it into box.
sprinkle "layout" and some capital letters throughout the above if the above sounds random to you ;)

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=692578
2007-07-25 22:20:15 +00:00

69 lines
1.6 KiB
C++

/*
* 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 PLASMA_VBOXLAYOUT
#define PLASMA_VBOXLAYOUT
#include <plasma/plasma_export.h>
#include <plasma/widgets/boxlayout.h>
namespace Plasma
{
/**
* Vertical Box Layout
*
* @author Matias Valdenegro T. <mvaldenegro@informatica.utem.cl>
*
* This class implements a Vertical Box Layout, it just lays items in vertical, from up to down.
*/
class PLASMA_EXPORT VBoxLayout : public BoxLayout
{
public:
/**
* Constructor.
*/
explicit VBoxLayout(LayoutItem *parent = 0);
/**
* Virtual Destructor.
*/
~VBoxLayout();
Qt::Orientations expandingDirections() const;
bool hasHeightForWidth() const;
qreal heightForWidth(qreal w) const;
void setGeometry(const QRectF& geometry);
QSizeF sizeHint() const;
QSizeF size() const;
private:
class Private;
Private *const d;
};
}
#endif /* PLASMA_VBOXLAYOUT */