kde-extraapps/kdeplasma-addons/libs/lancelot/widgets/BasicWidget.h
2015-01-15 17:07:43 +00:00

206 lines
5.7 KiB
C++

/*
* Copyright (C) 2007, 2008, 2009, 2010 Ivan Cukic <ivan.cukic(at)kde.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser/Library General Public License version 2,
* or (at your option) any later version, as published by the Free
* Software Foundation
*
* 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 Lesser/Library General Public License for more details
*
* You should have received a copy of the GNU Lesser/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 LANCELOT_BASIC_WIDGET_H
#define LANCELOT_BASIC_WIDGET_H
#include <QtGui/QGraphicsScene>
#include <QtGui/QIcon>
#include <Plasma/Svg>
#include <lancelot/lancelot.h>
#include <lancelot/lancelot_export.h>
#include <lancelot/widgets/Widget.h>
namespace Lancelot
{
/**
* Provides a common appearance with an icon, title
* and a description. %Layout can be vertical or
* horizontal.
*
* @author Ivan Cukic
*
* The icon can be a QIcon or contained in a Plasma::Svg
*/
class LANCELOT_EXPORT BasicWidget: public Lancelot::Widget {
Q_OBJECT
Q_PROPERTY ( QIcon icon READ icon WRITE setIcon )
Q_PROPERTY ( QSize iconSize READ iconSize WRITE setIconSize )
Q_PROPERTY ( QString title READ title WRITE setTitle ) L_EXTRA ( i18n )
Q_PROPERTY ( QString description READ description WRITE setDescription ) L_EXTRA ( i18n )
Q_PROPERTY ( Qt::Orientation innerOrientation READ innerOrientation WRITE setInnerOrientation )
// @puck L_WIDGET
// @puck L_INCLUDE(lancelot/widgets/TabBar.h QIcon QSize QString)
public:
/**
* Creates a new Lancelot::BasicWidget
* @param parent parent item
*/
BasicWidget(QGraphicsItem * parent = 0);
/**
* Creates a new Lancelot::BasicWidget
* @param title the title of the widget
* @param description the description of the widget
* @param parent parent item
*/
explicit BasicWidget(QString title, QString description = QString(),
QGraphicsItem * parent = 0);
/**
* Creates a new Lancelot::BasicWidget
* @param icon the icon for the widget
* @param title the title of the widget
* @param description the description of the widget
* @param parent parent item
*/
explicit BasicWidget(QIcon icon, QString title = QString(),
QString description = QString(), QGraphicsItem * parent = 0);
/**
* Creates a new Lancelot::BasicWidget
* @param icon Svg with active, inactive and disabled states
* @param title the title of the widget
* @param description the description of the widget
* @param parent parent item
*/
explicit BasicWidget(const Plasma::Svg & icon, QString title = QString(),
QString description = QString(), QGraphicsItem * parent = 0);
/**
* Destroys Lancelot::BasicWidget
*/
virtual ~BasicWidget();
/**
* @returns icon of this Lancelot::BasicWidget
*/
QIcon icon() const;
/**
* Sets icon of this Lancelot::BasicWidget
* @param icon new icon
*/
void setIcon(QIcon icon);
/**
* @returns icon of this Lancelot::BasicWidget
*/
Plasma::Svg & iconInSvg() const;
/**
* Sets icon of this Lancelot::BasicWidget
* @param svg new icon
*/
void setIconInSvg(const Plasma::Svg & svg);
/**
* @returns icon size of this Lancelot::BasicWidget
*/
QSize iconSize() const;
/**
* Sets icon size of this Lancelot::BasicWidget
* @param size new icon size
*/
void setIconSize(QSize size);
/**
* @returns inner orientation of this Lancelot::BasicWidget
*/
Qt::Orientation innerOrientation() const;
/**
* Sets the inner orientation of this Lancelot::BasicWidget
* @param orientation new inner orientation
*/
void setInnerOrientation(Qt::Orientation orientation);
/**
* @returns alignment of this Lancelot::BasicWidget
*/
Qt::Alignment alignment() const;
/**
* Sets alignment of this Lancelot::BasicWidget
* @param alignment new alignment
*/
void setAlignment(Qt::Alignment alignment);
/**
* @returns title of this Lancelot::BasicWidget
*/
QString title() const;
/**
* Sets title of this Lancelot::BasicWidget
* @param title new title
*/
void setTitle(const QString & title);
/**
* @returns description of this Lancelot::BasicWidget
*/
QString description() const;
/**
* Sets description of this Lancelot::BasicWidget
* @return description new description
*/
void setDescription(const QString & description);
/**
* Sets a shortcut key
*/
virtual void setShortcutKey(const QString & key);
protected:
/**
* Common implementation of icon/text/description
* rendering
*/
void paintForeground(QPainter * painter);
/**
* Common implementation of text painting
* @see QPainter::drawText
*/
void drawText(QPainter * painter, const QRectF & rectangle, int flags,
const QString & text, bool shortcutEnabled);
L_Override void paint(QPainter * painter,
const QStyleOptionGraphicsItem * option, QWidget * widget = 0);
L_Override QSizeF sizeHint(Qt::SizeHint which,
const QSizeF & constraint = QSizeF()) const;
private:
class Private;
Private * const d;
};
} // namespace Lancelot
#endif /* LANCELOT_BASIC_WIDGET_H */