2007-07-26 08:58:33 +02:00
|
|
|
/*
|
2007-08-06 13:20:02 +02:00
|
|
|
* Copyright 2007 by Matias Valdenegro T. <mvaldenegro@informatica.utem.cl>
|
2007-07-26 08:58:33 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "hboxlayout.h"
|
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
HBoxLayout::HBoxLayout(LayoutItem *parent)
|
2007-08-31 01:44:08 +02:00
|
|
|
: BoxLayout(Qt::Horizontal, parent),
|
2007-07-26 09:25:30 +02:00
|
|
|
d(0)
|
2007-07-26 08:58:33 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
HBoxLayout::~HBoxLayout()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-07-26 09:12:05 +02:00
|
|
|
bool HBoxLayout::hasWidthForHeight() const
|
2007-07-26 08:58:33 +02:00
|
|
|
{
|
2007-07-26 09:25:30 +02:00
|
|
|
return true;
|
2007-07-26 08:58:33 +02:00
|
|
|
}
|
|
|
|
|
2007-07-26 09:12:05 +02:00
|
|
|
qreal HBoxLayout::widthForHeight(qreal w) const
|
2007-07-26 08:58:33 +02:00
|
|
|
{
|
2007-07-26 09:23:30 +02:00
|
|
|
Q_UNUSED(w);
|
2007-07-26 09:25:30 +02:00
|
|
|
return qreal();
|
2007-07-26 08:58:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|