2009-03-23 17:30:32 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2009 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 PLASMA_EXTENDERGROUP_H
|
|
|
|
#define PLASMA_EXTENDERGROUP_H
|
|
|
|
|
|
|
|
#include <QtGui/QGraphicsWidget>
|
2009-03-23 22:41:13 +01:00
|
|
|
#include <QtCore/QList>
|
2009-03-23 17:30:32 +01:00
|
|
|
|
|
|
|
#include "extenderitem.h"
|
|
|
|
|
|
|
|
#include "plasma/plasma_export.h"
|
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
class ExtenderGroupPrivate;
|
|
|
|
class ExtenderItem;
|
|
|
|
class Applet;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @class ExtenderGroup plasma/extendergroup.h <Plasma/ExtenderGroup>
|
|
|
|
*
|
|
|
|
* @short Allows for grouping of extender items.
|
|
|
|
*
|
|
|
|
* To be able to group multiple items together, you'll need to instantiate an ExtenderGroup, and
|
|
|
|
* call setGroup() on all extender items you wish to add to this group.
|
|
|
|
* This ExtenderGroup is just the same as any other ExtenderItem, except for the expand group and
|
2009-04-17 19:58:49 +02:00
|
|
|
* collapse group buttons it provides, and the fact that it will automatically hide itself if less
|
|
|
|
* then one item belong to this group and autoHide is set to true.
|
2009-03-23 17:30:32 +01:00
|
|
|
*
|
|
|
|
* @since 4.3
|
|
|
|
*/
|
|
|
|
class PLASMA_EXPORT ExtenderGroup : public ExtenderItem
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2009-04-17 19:58:49 +02:00
|
|
|
Q_PROPERTY(bool autoHide READ autoHide WRITE setAutoHide)
|
2009-03-23 17:30:32 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Creates a group.
|
|
|
|
* @param applet The applet this group is part of. Null is not allowed here.
|
|
|
|
*/
|
|
|
|
explicit ExtenderGroup(Extender *parent, uint groupId = 0);
|
|
|
|
|
|
|
|
~ExtenderGroup();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return a list of items that belong to this group.
|
|
|
|
*/
|
|
|
|
QList<ExtenderItem*> items() const;
|
|
|
|
|
|
|
|
/**
|
2009-04-17 19:58:49 +02:00
|
|
|
* @return whether or not this item hides itself if there are less then 2 items in.
|
2009-03-23 17:30:32 +01:00
|
|
|
*/
|
2009-04-17 19:58:49 +02:00
|
|
|
bool autoHide() const;
|
2009-03-23 17:30:32 +01:00
|
|
|
|
|
|
|
/**
|
2009-04-17 19:58:49 +02:00
|
|
|
* @param autoHide whether or not this item hides itself if less then 2 items belong to this group.
|
2009-03-23 17:30:32 +01:00
|
|
|
*/
|
2009-04-17 19:58:49 +02:00
|
|
|
void setAutoHide(bool autoHide);
|
2009-03-23 17:30:32 +01:00
|
|
|
|
|
|
|
public Q_SLOTS:
|
|
|
|
/**
|
|
|
|
* Expands this group to show all ExtenderItems that are contained in this group.
|
|
|
|
*/
|
|
|
|
void expandGroup();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Collapses this group to hide all ExtenderItems that are contained in this group, and
|
|
|
|
* shows the summary item.
|
|
|
|
*/
|
|
|
|
void collapseGroup();
|
|
|
|
|
|
|
|
private:
|
|
|
|
ExtenderGroupPrivate * const d;
|
|
|
|
|
|
|
|
Q_PRIVATE_SLOT(d, void addItemToGroup(Plasma::ExtenderItem *item))
|
|
|
|
Q_PRIVATE_SLOT(d, void removeItemFromGroup(Plasma::ExtenderItem *item))
|
2009-04-02 18:40:28 +02:00
|
|
|
Q_PRIVATE_SLOT(d, void themeChanged())
|
2009-03-25 14:03:04 +01:00
|
|
|
|
|
|
|
friend class ExtenderItem;
|
2009-03-23 17:30:32 +01:00
|
|
|
};
|
|
|
|
} // Plasma namespace
|
|
|
|
|
|
|
|
#endif //PLASMA_EXTENDER_H
|
|
|
|
|