2007-07-26 21:56:16 +02:00
|
|
|
/*
|
2007-08-06 13:20:02 +02:00
|
|
|
* Copyright 2007 by Matias Valdenegro T. <mvaldenegro@informatica.utem.cl>
|
2007-07-26 21:56:16 +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-07-26 21:56:16 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PLASMA_RECTANGLE
|
|
|
|
#define PLASMA_RECTANGLE
|
|
|
|
|
2007-07-23 00:16:40 +02:00
|
|
|
#include <plasma/widgets/widget.h>
|
|
|
|
|
|
|
|
namespace Plasma {
|
|
|
|
|
|
|
|
class PLASMA_EXPORT Rectangle : public Plasma::Widget
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Rectangle(Widget *parent);
|
|
|
|
virtual ~Rectangle();
|
|
|
|
|
2008-02-29 18:50:57 +01:00
|
|
|
Qt::Orientations expandingDirections() const;
|
|
|
|
|
2007-08-01 22:51:27 +02:00
|
|
|
void paintWidget(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
|
2007-07-23 00:16:40 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
class Private;
|
2007-08-15 21:53:46 +02:00
|
|
|
Private const *d;
|
2007-07-23 00:16:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2007-07-26 21:56:16 +02:00
|
|
|
|
|
|
|
#endif // multiple inclusion guard
|