2007-03-12 14:50:30 +01:00
|
|
|
/*
|
2007-08-06 13:20:02 +02:00
|
|
|
* Copyright 2007 by Siraj Razick <siraj@kde.org>
|
|
|
|
* Copyright 2007 by Matt Broadstone <mbroadst@gmail.com>
|
2007-03-12 14:50:30 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
2007-09-14 22:17:11 +02:00
|
|
|
* it under the terms of the GNU Library General Public License as
|
2007-09-14 21:06:18 +02:00
|
|
|
* published by the Free Software Foundation; either version 2, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
2007-03-12 14:50:30 +01:00
|
|
|
*
|
|
|
|
* 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 CHECKBOX_H
|
|
|
|
#define CHECKBOX_H
|
|
|
|
|
2007-04-22 11:35:04 +02:00
|
|
|
#include <QtCore/QObject>
|
|
|
|
#include <QtGui/QGraphicsItem>
|
2007-03-12 14:50:30 +01:00
|
|
|
|
2007-06-02 19:29:39 +02:00
|
|
|
#include <plasma/plasma_export.h>
|
|
|
|
#include <plasma/dataengine.h>
|
2007-08-03 18:00:10 +02:00
|
|
|
#include <plasma/widgets/widget.h>
|
|
|
|
|
2007-03-12 14:50:30 +01:00
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
2007-05-20 18:25:07 +02:00
|
|
|
/**
|
2007-08-03 21:17:30 +02:00
|
|
|
* This class provides a QCheckBox available as a Plasma::Widget, so it can be used
|
|
|
|
* within Plasma::Applet's.
|
|
|
|
*
|
|
|
|
* @author Siraj Razick <siraj@kde.org>
|
2007-05-20 18:25:07 +02:00
|
|
|
*/
|
2007-08-03 18:00:10 +02:00
|
|
|
class PLASMA_EXPORT CheckBox : public Plasma::Widget
|
2007-03-12 14:50:30 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2007-08-03 18:00:10 +02:00
|
|
|
public:
|
2007-08-03 21:17:30 +02:00
|
|
|
/**
|
|
|
|
* Creates a new Plasma::CheckBox.
|
|
|
|
* @param parent the QGraphicsItem this icon is parented to.
|
|
|
|
*/
|
2007-08-03 18:00:10 +02:00
|
|
|
explicit CheckBox(QGraphicsItem *parent = 0);
|
2007-08-03 21:17:30 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new Plasma::Icon with default text.
|
|
|
|
* @param text the text to display next to the checkbox.
|
|
|
|
* @param parent the QGraphicsItem this icon is parented to.
|
|
|
|
*/
|
2007-08-03 18:00:10 +02:00
|
|
|
explicit CheckBox(const QString &text, QGraphicsItem *parent = 0);
|
2007-08-03 21:17:30 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroys a Plasma::Icon.
|
|
|
|
*/
|
2007-08-03 18:00:10 +02:00
|
|
|
virtual ~CheckBox();
|
|
|
|
|
2007-08-03 21:17:30 +02:00
|
|
|
/**
|
|
|
|
* @return whether this checkbox is currently checked.
|
|
|
|
*/
|
|
|
|
bool isChecked() const;
|
2007-08-03 18:00:10 +02:00
|
|
|
|
2007-08-03 21:17:30 +02:00
|
|
|
/**
|
|
|
|
* Sets the checked state of this Plasma::CheckBox.
|
|
|
|
* @param checked whether the Plasma::CheckBox is checked or not.
|
|
|
|
*/
|
2007-08-03 18:00:10 +02:00
|
|
|
void setChecked(bool checked);
|
2007-08-03 21:17:30 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the checkstate of this Plasma::CheckBox.
|
|
|
|
*/
|
|
|
|
Qt::CheckState checkState() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the checkstate of this Plasma::CheckBox
|
|
|
|
* @see <qt.h> for definition of Qt::CheckState
|
|
|
|
* @param state the checkstate of this Plasma::CheckBox
|
|
|
|
*/
|
2007-08-03 18:00:10 +02:00
|
|
|
void setCheckState(Qt::CheckState state);
|
|
|
|
|
2007-08-03 21:17:30 +02:00
|
|
|
/**
|
|
|
|
* @return the text associated with this Plasma::CheckBox
|
|
|
|
*/
|
2007-08-03 18:00:10 +02:00
|
|
|
QString text() const;
|
|
|
|
|
2007-08-03 21:17:30 +02:00
|
|
|
/**
|
|
|
|
* Sets the text associated with this Plasma::CheckBox
|
|
|
|
* @param text the text to associate with this Plasma::CheckBox.
|
|
|
|
*/
|
|
|
|
void setText(const QString &text);
|
2007-08-03 18:00:10 +02:00
|
|
|
|
2007-08-03 21:17:30 +02:00
|
|
|
/*
|
|
|
|
bool isTristate() const;
|
|
|
|
void setTristate(bool triState = true);
|
|
|
|
*/
|
2007-08-03 18:00:10 +02:00
|
|
|
|
|
|
|
public Q_SLOTS:
|
2007-11-06 08:20:08 +01:00
|
|
|
void dataUpdated(const QString&, const DataEngine::Data&);
|
2007-08-03 18:00:10 +02:00
|
|
|
|
|
|
|
Q_SIGNALS:
|
2007-08-03 21:17:30 +02:00
|
|
|
/**
|
|
|
|
* Indicates that this Plasma::CheckBox has been clicked, changing its state.
|
|
|
|
*/
|
2007-08-03 18:00:10 +02:00
|
|
|
void clicked();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
//bool isDown();
|
|
|
|
void mousePressEvent ( QGraphicsSceneMouseEvent * event );
|
|
|
|
void mouseReleaseEvent ( QGraphicsSceneMouseEvent * event );
|
|
|
|
void mouseMoveEvent (QGraphicsSceneMouseEvent * event);
|
|
|
|
void hoverMoveEvent ( QGraphicsSceneHoverEvent * event );
|
|
|
|
void hoverLeaveEvent ( QGraphicsSceneHoverEvent * event );
|
|
|
|
void hoverEnterEvent ( QGraphicsSceneHoverEvent * event );
|
|
|
|
|
2007-08-03 21:17:30 +02:00
|
|
|
void paintWidget(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
|
|
|
|
|
2007-08-03 18:00:10 +02:00
|
|
|
private:
|
|
|
|
void init();
|
|
|
|
|
|
|
|
class Private ;
|
|
|
|
Private * const d;
|
2007-03-12 14:50:30 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Plasma
|
|
|
|
|
|
|
|
#endif
|