b31f9ca8c0
svn path=/trunk/KDE/kdelibs/; revision=1069847
84 lines
2.1 KiB
C++
84 lines
2.1 KiB
C++
/*
|
|
* Copyright 2008 by Marco Martin <notmart@gmail.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Library General Public License as
|
|
* published by the Free Software Foundation; either version 2, or
|
|
* (at your option) any later version.
|
|
|
|
* 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_ABSTRACTTOOLBOX_H
|
|
#define PLASMA_ABSTRACTTOOLBOX_H
|
|
|
|
#include <QGraphicsWidget>
|
|
#include <QGraphicsItem>
|
|
|
|
#include "plasma/plasma_export.h"
|
|
|
|
class QAction;
|
|
|
|
namespace Plasma
|
|
{
|
|
|
|
class AbstractToolBoxPrivate;
|
|
class Containment;
|
|
|
|
class PLASMA_EXPORT AbstractToolBox : public QGraphicsWidget
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES(QGraphicsItem)
|
|
Q_PROPERTY(bool showing READ isShowing WRITE setShowing)
|
|
|
|
public:
|
|
enum ToolType {
|
|
AddTool = 0,
|
|
ConfigureTool = 100,
|
|
ControlTool = 200,
|
|
MiscTool = 300,
|
|
DestructiveTool = 400,
|
|
UserToolType = DestructiveTool + 1000
|
|
};
|
|
Q_ENUMS(ToolType)
|
|
|
|
explicit AbstractToolBox(Containment *parent);
|
|
~AbstractToolBox();
|
|
|
|
/**
|
|
* create a toolbox tool from the given action
|
|
* @p action the action to associate the tool with
|
|
*/
|
|
virtual void addTool(QAction *action) = 0;
|
|
|
|
/**
|
|
* remove the tool associated with this action
|
|
*/
|
|
virtual void removeTool(QAction *action) = 0;
|
|
virtual bool isShowing() const = 0;
|
|
virtual void setShowing(const bool show) = 0;
|
|
|
|
Q_SIGNALS:
|
|
void toggled();
|
|
void visibilityChanged(bool);
|
|
|
|
protected:
|
|
Containment *containment() const;
|
|
|
|
private:
|
|
AbstractToolBoxPrivate * const d;
|
|
|
|
};
|
|
|
|
} // Plasma namespace
|
|
#endif // multiple inclusion guard
|
|
|