##// END OF EJS Templates
barchart: removed tooltip. hoverEntered and hoverLeaved signals combined to hovered(bool) signal
barchart: removed tooltip. hoverEntered and hoverLeaved signals combined to hovered(bool) signal

File last commit:

r970:96879c866544
r975:b81e04837829
Show More
barlabel_p.h
70 lines | 1.8 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
renamed barchart floating values with labels to be consistent with piechart
r820 #ifndef BARLABEL_P_H
#define BARLABEL_P_H
sauimone
Floating values to bar charts
r263
#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
sauimone
Barchart value layout fix
r817 // Visual class for bar values
sauimone
Floating values to bar charts
r263 // By default these are not visible.
sauimone
renamed barchart floating values with labels to be consistent with piechart
r820 class BarLabel : 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:
Michal Klocek
Fixes explicit issues in cstr
r970 explicit BarLabel(QBarSet &barSet, 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
renamed barchart floating values with labels to be consistent with piechart
r820 void setBrush(const QBrush &brush);
QBrush brush() const;
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:
sauimone
renamed barchart floating values with labels to be consistent with piechart
r820 void labelsVisibleChanged(bool visible);
sauimone
floating values working now. bounding rect bug fixed
r273
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
sauimone
renamed barchart floating values with labels to be consistent with piechart
r820 #endif // BARLABEL_P_H