2008-11-04 00:08:39 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2008 by Rob Scheepmaker <r.scheepmaker@student.utwente.nl>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LIBS_PLASMA_EXTENDERITEM_P_H
|
|
|
|
#define LIBS_PLASMA_EXTENDERITEM_P_H
|
|
|
|
|
|
|
|
#include <QPointF>
|
|
|
|
#include <QPoint>
|
|
|
|
#include <QRect>
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
class QGraphicsItem;
|
|
|
|
class QGraphicsWidget;
|
|
|
|
class QGraphicsLinearLayout;
|
|
|
|
class QGraphicsView;
|
|
|
|
class QTimer;
|
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
class Applet;
|
2009-03-23 17:30:32 +01:00
|
|
|
class ExtenderGroup;
|
2008-11-04 00:08:39 +01:00
|
|
|
class ExtenderItem;
|
|
|
|
class Extender;
|
|
|
|
class IconWidget;
|
|
|
|
class FrameSvg;
|
|
|
|
|
|
|
|
class ExtenderItemPrivate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ExtenderItemPrivate(ExtenderItem *extenderItem, Extender *hostExtender);
|
|
|
|
~ExtenderItemPrivate();
|
|
|
|
|
|
|
|
QRectF dragHandleRect();
|
|
|
|
QRectF titleRect();
|
|
|
|
void toggleCollapse();
|
|
|
|
void updateToolBox();
|
|
|
|
void repositionToolbox();
|
|
|
|
Applet *hostApplet() const;
|
|
|
|
void themeChanged();
|
|
|
|
void sourceAppletRemoved();
|
2008-12-10 01:57:42 +01:00
|
|
|
void resizeContent(const QSizeF &newSize);
|
2009-01-09 03:15:23 +01:00
|
|
|
void actionDestroyed(QObject *o);
|
2009-02-09 19:10:45 +01:00
|
|
|
void updateSizeHints();
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
ExtenderItem *q;
|
|
|
|
|
|
|
|
QGraphicsItem *widget;
|
|
|
|
QGraphicsWidget *toolbox;
|
|
|
|
QGraphicsLinearLayout *toolboxLayout;
|
|
|
|
|
|
|
|
Extender *extender;
|
|
|
|
Applet *sourceApplet;
|
2009-03-23 17:30:32 +01:00
|
|
|
ExtenderGroup *group;
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
KConfigGroup config;
|
|
|
|
|
|
|
|
FrameSvg *dragger;
|
|
|
|
FrameSvg *background;
|
|
|
|
|
|
|
|
IconWidget *collapseIcon;
|
|
|
|
|
2009-01-09 03:15:23 +01:00
|
|
|
QHash<QString, QAction*> actions;
|
|
|
|
QList<QAction*> actionsInOrder;
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
QString title;
|
|
|
|
QString name;
|
2008-12-09 15:04:33 +01:00
|
|
|
QString iconName;
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
uint extenderItemId;
|
|
|
|
|
|
|
|
qreal dragLeft, dragTop, dragRight, dragBottom;
|
|
|
|
qreal bgLeft, bgTop, bgRight, bgBottom;
|
|
|
|
|
|
|
|
QPoint mousePos;
|
|
|
|
|
|
|
|
bool mouseOver;
|
2008-11-30 12:45:23 +01:00
|
|
|
bool dragStarted;
|
2008-11-04 00:08:39 +01:00
|
|
|
bool destroyActionVisibility;
|
2009-01-16 19:49:54 +01:00
|
|
|
bool collapsed;
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
QTimer *expirationTimer;
|
|
|
|
|
2009-02-07 16:08:17 +01:00
|
|
|
qreal iconSize; //preferred size for the icon in the title bar.
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
static uint s_maxExtenderItemId;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // LIB_PLASMA_EXTENDERITEM_P_H
|