73 lines
1.8 KiB
C
73 lines
1.8 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 "containment.h"
|
||
|
|
||
|
#include "plasma_export.h"
|
||
|
|
||
|
class QAction;
|
||
|
|
||
|
namespace Plasma
|
||
|
{
|
||
|
|
||
|
//class Widget;
|
||
|
//class EmptyGraphicsItem;
|
||
|
class AbstractToolBoxPrivate;
|
||
|
|
||
|
class PLASMA_EXPORT AbstractToolBox : public QGraphicsWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
Q_INTERFACES(QGraphicsItem)
|
||
|
|
||
|
public:
|
||
|
explicit AbstractToolBox(Containment *parent);
|
||
|
~AbstractToolBox();
|
||
|
|
||
|
/**
|
||
|
* create a toolbox tool from the given action
|
||
|
* @p action the action to associate hte 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();
|
||
|
|
||
|
protected:
|
||
|
Containment *containment() const;
|
||
|
|
||
|
private:
|
||
|
AbstractToolBoxPrivate * const d;
|
||
|
|
||
|
};
|
||
|
|
||
|
} // Plasma namespace
|
||
|
#endif // multiple inclusion guard
|
||
|
|