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_EXTENDER_P_H
|
|
|
|
#define LIBS_PLASMA_EXTENDER_P_H
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QList>
|
|
|
|
#include <QPointF>
|
2009-09-03 23:53:56 +02:00
|
|
|
#include "plasma/extenders/extender.h"
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
class QGraphicsGridLayout;
|
|
|
|
class QGraphicsLinearLayout;
|
|
|
|
class QGraphicsWidget;
|
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
class Applet;
|
|
|
|
class Extender;
|
2009-03-23 17:30:32 +01:00
|
|
|
class ExtenderGroup;
|
2008-11-04 00:08:39 +01:00
|
|
|
class ExtenderItem;
|
|
|
|
class Label;
|
2010-10-11 21:17:19 +02:00
|
|
|
class ScrollWidget;
|
2008-11-04 00:08:39 +01:00
|
|
|
class Svg;
|
|
|
|
|
2010-04-10 18:43:56 +02:00
|
|
|
class Spacer : public QGraphicsWidget
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Spacer(QGraphicsItem *parent);
|
|
|
|
~Spacer();
|
|
|
|
|
|
|
|
void setMargins(qreal left, qreal top, qreal right, qreal bottom);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget * widget = 0);
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
qreal m_left;
|
|
|
|
qreal m_top;
|
|
|
|
qreal m_right;
|
|
|
|
qreal m_bottom;
|
|
|
|
};
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
class ExtenderPrivate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ExtenderPrivate(Applet *applet, Extender *q);
|
|
|
|
~ExtenderPrivate();
|
|
|
|
|
|
|
|
void addExtenderItem(ExtenderItem *item, const QPointF &pos = QPointF(-1, -1));
|
2010-10-14 15:04:53 +02:00
|
|
|
void extenderItemDestroyed(Plasma::ExtenderItem *item);
|
2010-10-11 21:17:19 +02:00
|
|
|
void viewportGeometryChanged(const QRectF &rect);
|
2008-11-04 00:08:39 +01:00
|
|
|
void removeExtenderItem(ExtenderItem *item);
|
|
|
|
int insertIndexFromPos(const QPointF &pos) const;
|
|
|
|
void loadExtenderItems();
|
|
|
|
void updateBorders();
|
2010-09-19 23:28:39 +02:00
|
|
|
void delayItemAddedEvent();
|
2008-11-20 17:37:30 +01:00
|
|
|
void updateEmptyExtenderLabel();
|
2010-10-16 13:35:16 +02:00
|
|
|
void adjustMinimumSize();
|
2010-10-16 19:41:59 +02:00
|
|
|
void setPositionFromDragPosition(const QPointF &pos);
|
2009-03-23 17:30:32 +01:00
|
|
|
ExtenderGroup *findGroup(const QString &name) const;
|
2010-12-13 17:15:49 +01:00
|
|
|
void setDisabledBordersHint(const FrameSvg::EnabledBorders borders);
|
2010-12-15 15:35:11 +01:00
|
|
|
void adjustSize();
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
Extender *q;
|
|
|
|
|
2010-05-27 21:59:15 +02:00
|
|
|
QWeakPointer<Applet> applet;
|
2010-10-11 21:17:19 +02:00
|
|
|
ScrollWidget *scrollWidget;
|
|
|
|
QGraphicsWidget *mainWidget;
|
2008-11-04 00:08:39 +01:00
|
|
|
QGraphicsLinearLayout *layout;
|
|
|
|
FrameSvg *background;
|
2010-12-13 17:15:49 +01:00
|
|
|
FrameSvg::EnabledBorders disabledBordersHint;
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
int currentSpacerIndex;
|
2008-12-01 19:30:42 +01:00
|
|
|
Spacer *spacerWidget;
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
QString emptyExtenderMessage;
|
|
|
|
Label *emptyExtenderLabel;
|
|
|
|
|
|
|
|
QList<ExtenderItem*> attachedExtenderItems;
|
|
|
|
|
|
|
|
Extender::Appearance appearance;
|
|
|
|
|
|
|
|
static QGraphicsGridLayout *s_popupLayout;
|
2010-05-28 21:02:15 +02:00
|
|
|
|
|
|
|
bool destroying;
|
2010-10-11 21:17:19 +02:00
|
|
|
bool scrollbarVisible;
|
2010-09-19 23:28:39 +02:00
|
|
|
|
2010-10-12 16:36:46 +02:00
|
|
|
QHash<ExtenderItem *, QPointF> pendingItems;
|
2008-11-04 00:08:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Plasma
|
|
|
|
|
|
|
|
#endif // LIBS_PLASMA_EXTENDER_P_H
|