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 "layoutitem.h"
|
2007-07-27 22:00:07 +02:00
|
|
|
|
|
|
|
#include <KDebug>
|
|
|
|
|
2007-05-28 07:46:24 +02:00
|
|
|
#include "layout.h"
|
2007-05-22 18:48:34 +02:00
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
class LayoutItem::Private
|
|
|
|
{
|
2007-05-28 07:46:24 +02:00
|
|
|
public:
|
|
|
|
Private()
|
2007-07-27 22:00:07 +02:00
|
|
|
: layout(0),
|
|
|
|
managingLayout(0)
|
2007-05-28 07:46:24 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
~Private() {}
|
|
|
|
|
|
|
|
Layout* layout;
|
2007-07-27 22:00:07 +02:00
|
|
|
Layout* managingLayout;
|
2007-05-22 18:48:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
LayoutItem::LayoutItem()
|
2007-07-27 22:00:07 +02:00
|
|
|
: d(new Private())
|
2007-05-22 18:48:34 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
LayoutItem::~LayoutItem()
|
|
|
|
{
|
2007-07-27 22:00:07 +02:00
|
|
|
if (d->managingLayout) {
|
|
|
|
d->managingLayout->removeItem(this);
|
2007-05-28 07:46:24 +02:00
|
|
|
}
|
|
|
|
|
2007-07-27 22:00:07 +02:00
|
|
|
delete d->layout;
|
2007-05-28 07:46:24 +02:00
|
|
|
delete d;
|
2007-05-22 18:48:34 +02:00
|
|
|
}
|
|
|
|
|
2007-08-13 11:01:00 +02:00
|
|
|
QGraphicsItem* LayoutItem::graphicsItem()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-05-22 18:48:34 +02:00
|
|
|
bool LayoutItem::hasHeightForWidth() const
|
|
|
|
{
|
2007-09-13 21:47:14 +02:00
|
|
|
return false;
|
2007-05-22 18:48:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
qreal LayoutItem::heightForWidth(qreal w) const
|
|
|
|
{
|
2007-09-13 21:47:14 +02:00
|
|
|
return 0.0;
|
2007-05-22 18:48:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool LayoutItem::hasWidthForHeight() const
|
|
|
|
{
|
2007-09-13 21:47:14 +02:00
|
|
|
return false;
|
2007-05-22 18:48:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
qreal LayoutItem::widthForHeight(qreal h) const
|
|
|
|
{
|
2007-09-13 21:47:14 +02:00
|
|
|
return 0.0;
|
2007-05-22 18:48:34 +02:00
|
|
|
}
|
|
|
|
|
2007-05-28 07:46:24 +02:00
|
|
|
void LayoutItem::setLayout(Layout* layout)
|
|
|
|
{
|
2007-07-27 22:00:07 +02:00
|
|
|
if (d->layout && layout) {
|
2007-09-23 20:03:37 +02:00
|
|
|
kDebug() << "already have a layout.";
|
2007-07-27 22:00:07 +02:00
|
|
|
return;
|
2007-05-28 07:46:24 +02:00
|
|
|
}
|
|
|
|
|
2007-09-13 21:47:14 +02:00
|
|
|
if (layout) {
|
2007-08-31 19:24:03 +02:00
|
|
|
layout->setParent(this);
|
2007-09-23 20:03:37 +02:00
|
|
|
} else if (d->layout) {
|
2007-09-13 21:47:14 +02:00
|
|
|
// FIXME: we had a layout, but now it has been removed
|
|
|
|
// and we are without layout; we should tell our
|
|
|
|
// children about this, but LayoutItem doesn't know
|
|
|
|
// about children =/
|
|
|
|
kDebug() << "layout removed from under us. expect crashes";
|
|
|
|
}
|
2007-09-23 20:03:37 +02:00
|
|
|
|
|
|
|
d->layout = layout;
|
2007-05-28 07:46:24 +02:00
|
|
|
}
|
|
|
|
|
2007-07-29 01:40:21 +02:00
|
|
|
Layout* LayoutItem::layout() const
|
2007-05-28 07:46:24 +02:00
|
|
|
{
|
|
|
|
return d->layout;
|
|
|
|
}
|
|
|
|
|
2007-07-27 22:00:07 +02:00
|
|
|
void LayoutItem::setManagingLayout(Layout* layout)
|
|
|
|
{
|
|
|
|
if (d->managingLayout) {
|
|
|
|
d->managingLayout->removeItem(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
d->managingLayout = layout;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LayoutItem::unsetManagingLayout(Layout* layout)
|
|
|
|
{
|
|
|
|
if (d->managingLayout == layout) {
|
|
|
|
d->managingLayout = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-29 01:40:21 +02:00
|
|
|
Layout* LayoutItem::managingLayout() const
|
2007-07-27 22:00:07 +02:00
|
|
|
{
|
|
|
|
return d->managingLayout;
|
|
|
|
}
|
|
|
|
|
2007-05-22 23:05:42 +02:00
|
|
|
}
|