##// END OF EJS Templates
combined clicked and rightclicked signals in barchart
combined clicked and rightclicked signals in barchart

File last commit:

r811:04debc5ee52b
r812:2e82e33f659e
Show More
barvalue_p.h
67 lines | 1.7 KiB | text/x-c | CLexer
Jani Honkonen
Add license headers
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
Floating values to bar charts
r263 #ifndef BARVALUE_P_H
#define BARVALUE_P_H
#include "qchartglobal.h"
sauimone
floating values working now. bounding rect bug fixed
r273 #include <QGraphicsObject>
sauimone
Floating values to bar charts
r263 #include <QPen>
sauimone
simple text item for barvalue
r811 class QGraphicsSimpleTextItem;
sauimone
Floating values to bar charts
r263
QTCOMMERCIALCHART_BEGIN_NAMESPACE
sauimone
toggling of floating values. still bit buggy
r267 class QBarSet;
sauimone
Floating values to bar charts
r263
// Visual class for floating bar values
// By default these are not visible.
sauimone
floating values working now. bounding rect bug fixed
r273 class BarValue : public QGraphicsObject
sauimone
Floating values to bar charts
r263 {
sauimone
floating values working now. bounding rect bug fixed
r273 Q_OBJECT
sauimone
Floating values to bar charts
r263 public:
sauimone
toggling of floating values. still bit buggy
r267 BarValue(QBarSet &set, QGraphicsItem *parent = 0);
sauimone
Floating values to bar charts
r263
sauimone
const to getters, renamed addBarset to appendBarset
r776 void setText(QString str);
QString text() const;
sauimone
Floating values to bar charts
r263
sauimone
const to getters, renamed addBarset to appendBarset
r776 void setPen(const QPen &pen);
sauimone
Fixed layout for barcharts
r473 QPen pen() const;
sauimone
Floating values to bar charts
r263
sauimone
simple text item for barvalue
r811 void setFont(const QFont &font);
QFont font() const;
sauimone
Floating values to bar charts
r263 void setPos(qreal x, qreal y);
// From QGraphicsItem
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
QRectF boundingRect() const;
sauimone
floating values working now. bounding rect bug fixed
r273 public Q_SLOTS:
void toggleVisible();
sauimone
Floating values to bar charts
r263 private:
sauimone
minor code review fixes, part n
r763 QBarSet &m_barSet;
sauimone
simple text item for barvalue
r811 QGraphicsSimpleTextItem *m_textItem;
sauimone
Floating values to bar charts
r263 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif // BARVALUE_P_H