2007-05-22 18:48:34 +02:00
|
|
|
/*
|
2007-08-06 13:20:02 +02:00
|
|
|
* Copyright 2007 by Matias Valdenegro T. <mvaldenegro@informatica.utem.cl>
|
2007-05-22 18:48:34 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
2007-09-14 22:17:11 +02:00
|
|
|
* it under the terms of the GNU Library General Public License as
|
2007-09-14 21:06:18 +02:00
|
|
|
* published by the Free Software Foundation; either version 2, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
2007-05-22 18:48:34 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "layout.h"
|
|
|
|
|
2007-08-22 22:13:24 +02:00
|
|
|
#include <math.h>
|
2007-12-10 20:49:25 +01:00
|
|
|
#include <limits>
|
2007-08-22 22:13:24 +02:00
|
|
|
|
2007-05-22 18:48:34 +02:00
|
|
|
#include <QtCore/QList>
|
2007-09-03 02:52:29 +02:00
|
|
|
#include <QtCore/QTimeLine>
|
2007-08-31 17:27:32 +02:00
|
|
|
#include <QtDebug>
|
|
|
|
|
2007-11-19 23:42:56 +01:00
|
|
|
#include "widgets/widget.h"
|
|
|
|
#include "layouts/layoutanimator.h"
|
2007-05-22 18:48:34 +02:00
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
class Layout::Private
|
|
|
|
{
|
2007-07-27 22:00:07 +02:00
|
|
|
public:
|
2007-11-11 00:16:32 +01:00
|
|
|
Private(LayoutItem* p)
|
2007-11-19 04:30:24 +01:00
|
|
|
: leftMargin(12.0),
|
|
|
|
rightMargin(12.0),
|
|
|
|
topMargin(12.0),
|
|
|
|
bottomMargin(12.0),
|
2007-07-27 22:00:07 +02:00
|
|
|
spacing(6.0),
|
2007-11-11 00:16:32 +01:00
|
|
|
parent(p),
|
2007-11-19 23:24:18 +01:00
|
|
|
animator(0),
|
|
|
|
relayouting(false)
|
2007-07-27 22:00:07 +02:00
|
|
|
{
|
|
|
|
}
|
2007-05-22 18:48:34 +02:00
|
|
|
|
2007-07-27 22:00:07 +02:00
|
|
|
~Private() {}
|
2007-05-22 18:48:34 +02:00
|
|
|
|
2007-11-19 04:30:24 +01:00
|
|
|
qreal leftMargin;
|
|
|
|
qreal rightMargin;
|
|
|
|
qreal topMargin;
|
|
|
|
qreal bottomMargin;
|
2007-07-27 22:00:07 +02:00
|
|
|
qreal spacing;
|
|
|
|
|
|
|
|
LayoutItem *parent;
|
2007-08-17 09:02:24 +02:00
|
|
|
LayoutAnimator *animator;
|
2007-11-19 23:24:18 +01:00
|
|
|
|
|
|
|
bool relayouting;
|
2007-11-20 00:45:56 +01:00
|
|
|
QRectF geometry;
|
2007-05-22 18:48:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Layout::Layout(LayoutItem *parent)
|
2007-07-27 22:00:07 +02:00
|
|
|
: LayoutItem(),
|
|
|
|
d(new Private(parent))
|
2007-05-22 18:48:34 +02:00
|
|
|
{
|
2007-11-11 00:16:32 +01:00
|
|
|
if (parent) {
|
|
|
|
parent->setLayout(this);
|
|
|
|
}
|
2007-05-22 18:48:34 +02:00
|
|
|
}
|
|
|
|
|
2007-08-31 17:27:32 +02:00
|
|
|
void Layout::setParent(LayoutItem *parent) {
|
|
|
|
d->parent = parent;
|
|
|
|
}
|
|
|
|
|
2007-05-22 18:48:34 +02:00
|
|
|
Layout::~Layout()
|
|
|
|
{
|
2007-07-27 22:00:07 +02:00
|
|
|
if (parent()) {
|
|
|
|
parent()->setLayout(0);
|
|
|
|
}
|
|
|
|
delete d;
|
2007-05-22 18:48:34 +02:00
|
|
|
}
|
|
|
|
|
2007-08-31 17:27:32 +02:00
|
|
|
bool Layout::isEmpty() const
|
|
|
|
{
|
|
|
|
return count() == 0;
|
|
|
|
}
|
|
|
|
|
2007-11-20 00:45:56 +01:00
|
|
|
void Layout::updateGeometry()
|
2007-08-17 09:02:24 +02:00
|
|
|
{
|
2007-11-20 01:05:21 +01:00
|
|
|
if (d->relayouting) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
d->relayouting = true;
|
2007-11-20 00:45:56 +01:00
|
|
|
relayout();
|
2007-11-20 01:05:21 +01:00
|
|
|
d->relayouting = false;
|
2007-11-20 00:45:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QRectF Layout::geometry() const
|
|
|
|
{
|
|
|
|
return d->geometry;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Layout::setGeometry(const QRectF &geometry)
|
|
|
|
{
|
|
|
|
if (!geometry.isValid() || geometry == d->geometry) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
d->geometry = geometry;
|
|
|
|
invalidate();
|
2007-08-31 17:27:32 +02:00
|
|
|
}
|
2007-11-17 20:01:02 +01:00
|
|
|
|
2007-08-31 17:27:32 +02:00
|
|
|
void Layout::invalidate()
|
|
|
|
{
|
2007-11-19 23:42:56 +01:00
|
|
|
if (d->relayouting) {
|
2007-11-19 23:24:18 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
d->relayouting = true;
|
2007-09-07 18:15:46 +02:00
|
|
|
// find and update the top level layout
|
|
|
|
Layout *layout = this;
|
|
|
|
Layout *parentLayout = 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
parentLayout = dynamic_cast<Layout*>(layout->parent());
|
2007-09-13 19:04:04 +02:00
|
|
|
if (parentLayout) {
|
2007-11-20 02:19:59 +01:00
|
|
|
if (parentLayout->d->relayouting) {
|
|
|
|
break;
|
|
|
|
}
|
2007-09-07 18:15:46 +02:00
|
|
|
layout = parentLayout;
|
2007-09-13 19:04:04 +02:00
|
|
|
}
|
|
|
|
} while (parentLayout);
|
2007-09-07 18:15:46 +02:00
|
|
|
|
2007-11-20 00:45:56 +01:00
|
|
|
layout->relayout();
|
2007-11-19 23:24:18 +01:00
|
|
|
d->relayouting = false;
|
2007-08-17 09:02:24 +02:00
|
|
|
}
|
|
|
|
|
2007-08-31 17:27:32 +02:00
|
|
|
|
2007-08-17 09:02:24 +02:00
|
|
|
LayoutAnimator* Layout::animator() const
|
|
|
|
{
|
|
|
|
return d->animator;
|
|
|
|
}
|
|
|
|
|
2007-09-13 19:04:04 +02:00
|
|
|
void Layout::setAnimator(LayoutAnimator *animator)
|
2007-08-17 09:02:24 +02:00
|
|
|
{
|
|
|
|
d->animator = animator;
|
|
|
|
}
|
|
|
|
|
2007-11-19 04:30:24 +01:00
|
|
|
qreal Layout::margin(MarginEdge edge) const
|
|
|
|
{
|
|
|
|
switch (edge) {
|
|
|
|
case LeftMargin:
|
|
|
|
return d->leftMargin;
|
|
|
|
break;
|
|
|
|
case RightMargin:
|
|
|
|
return d->rightMargin;
|
|
|
|
break;
|
|
|
|
case TopMargin:
|
|
|
|
return d->topMargin;
|
|
|
|
break;
|
|
|
|
case BottomMargin:
|
|
|
|
return d->bottomMargin;
|
|
|
|
break;
|
|
|
|
}
|
2007-11-19 08:40:25 +01:00
|
|
|
|
|
|
|
return 0;
|
2007-11-19 04:30:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Layout::setMargin(MarginEdge edge, qreal m)
|
|
|
|
{
|
|
|
|
switch (edge) {
|
|
|
|
case LeftMargin:
|
|
|
|
d->leftMargin = m;
|
|
|
|
break;
|
|
|
|
case RightMargin:
|
|
|
|
d->rightMargin = m;
|
|
|
|
break;
|
|
|
|
case TopMargin:
|
|
|
|
d->topMargin = m;
|
|
|
|
break;
|
|
|
|
case BottomMargin:
|
|
|
|
d->bottomMargin = m;
|
|
|
|
break;
|
|
|
|
}
|
2007-05-22 18:48:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Layout::setMargin(qreal m)
|
|
|
|
{
|
2007-11-19 04:30:24 +01:00
|
|
|
d->leftMargin = m;
|
|
|
|
d->rightMargin = m;
|
|
|
|
d->topMargin = m;
|
|
|
|
d->bottomMargin = m;
|
2007-05-22 18:48:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
qreal Layout::spacing() const
|
|
|
|
{
|
2007-09-13 19:04:04 +02:00
|
|
|
return d->spacing;
|
2007-05-22 18:48:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Layout::setSpacing(qreal s)
|
|
|
|
{
|
2007-09-13 19:04:04 +02:00
|
|
|
d->spacing = s;
|
2007-05-22 18:48:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LayoutItem *Layout::parent() const
|
|
|
|
{
|
2007-09-13 19:04:04 +02:00
|
|
|
return d->parent;
|
2007-05-22 18:48:34 +02:00
|
|
|
}
|
|
|
|
|
2007-08-22 22:13:24 +02:00
|
|
|
QSizeF Layout::minimumSize() const
|
|
|
|
{
|
|
|
|
return QSizeF(0,0);
|
|
|
|
}
|
|
|
|
QSizeF Layout::maximumSize() const
|
|
|
|
{
|
2007-12-12 00:03:52 +01:00
|
|
|
return QSizeF(std::numeric_limits<qreal>::infinity(),std::numeric_limits<qreal>::infinity());
|
2007-08-22 22:13:24 +02:00
|
|
|
}
|
2007-09-13 19:04:04 +02:00
|
|
|
|
2007-09-03 02:52:29 +02:00
|
|
|
void Layout::startAnimation()
|
|
|
|
{
|
2007-09-13 19:04:04 +02:00
|
|
|
if (animator() && animator()->timeLine()) {
|
|
|
|
if (animator()->timeLine()->state() == QTimeLine::NotRunning) {
|
2007-12-29 08:14:21 +01:00
|
|
|
animator()->timeLine()->setCurrentTime(0);
|
2007-09-03 02:52:29 +02:00
|
|
|
animator()->timeLine()->start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-08-22 22:13:24 +02:00
|
|
|
|
2007-05-22 23:05:42 +02:00
|
|
|
}
|