bar_p.h
56 lines
| 1.6 KiB
| text/x-c
|
CLexer
Jani Honkonen
|
r794 | /**************************************************************************** | ||
** | ||||
** Copyright (C) 2012 Digia Plc | ||||
** All rights reserved. | ||||
** For any questions to Digia, please use contact form at http://qt.digia.com | ||||
** | ||||
** This file is part of the Qt Commercial Charts Add-on. | ||||
** | ||||
** $QT_BEGIN_LICENSE$ | ||||
** Licensees holding valid Qt Commercial licenses may use this file in | ||||
** accordance with the Qt Commercial License Agreement provided with the | ||||
** Software or, alternatively, in accordance with the terms contained in | ||||
** a written agreement between you and Digia. | ||||
** | ||||
** If you have questions regarding the use of this file, please use | ||||
** contact form at http://qt.digia.com | ||||
** $QT_END_LICENSE$ | ||||
** | ||||
****************************************************************************/ | ||||
sauimone
|
r56 | #ifndef BAR_H | ||
#define BAR_H | ||||
#include "qchartglobal.h" | ||||
Michal Klocek
|
r679 | #include <QGraphicsRectItem> | ||
sauimone
|
r56 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
sauimone
|
r968 | class QBarSet; | ||
sauimone
|
r280 | // Single visual bar item of chart | ||
Michal Klocek
|
r679 | class Bar : public QObject, public QGraphicsRectItem | ||
sauimone
|
r56 | { | ||
sauimone
|
r256 | Q_OBJECT | ||
sauimone
|
r56 | public: | ||
sauimone
|
r968 | Bar(QBarSet *barset, QString category, QGraphicsItem *parent = 0); | ||
sauimone
|
r74 | |||
sauimone
|
r56 | public: | ||
sauimone
|
r256 | void mousePressEvent(QGraphicsSceneMouseEvent *event); | ||
sauimone
|
r276 | void hoverEnterEvent(QGraphicsSceneHoverEvent *event); | ||
void hoverLeaveEvent(QGraphicsSceneHoverEvent *event); | ||||
sauimone
|
r256 | |||
Q_SIGNALS: | ||||
sauimone
|
r812 | void clicked(QString category, Qt::MouseButtons button); | ||
sauimone
|
r968 | void clicked(QBarSet *barset, QString category, Qt::MouseButtons button); | ||
sauimone
|
r975 | void hovered(bool status); | ||
void hovered(QBarSet *barset, bool status); | ||||
sauimone
|
r56 | |||
private: | ||||
sauimone
|
r763 | QString m_category; | ||
sauimone
|
r968 | QBarSet *m_barset; | ||
sauimone
|
r56 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif // BAR_H | ||||