1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
3
4// W A R N I N G
5// -------------
6//
7// This file is not part of the Qt Chart API. It exists purely as an
8// implementation detail. This header file may change from version to
9// version without notice, or even be removed.
10//
11// We mean it.
12
13#ifndef HORIZONTALPERCENTBARCHARTITEM_P_H
14#define HORIZONTALPERCENTBARCHARTITEM_P_H
15
16#include <private/abstractbarchartitem_p.h>
17#include <QtWidgets/QGraphicsItem>
18#include <QtCharts/private/qchartglobal_p.h>
19
20QT_BEGIN_NAMESPACE
21
22class Q_CHARTS_PRIVATE_EXPORT HorizontalPercentBarChartItem : public AbstractBarChartItem
23{
24 Q_OBJECT
25public:
26 HorizontalPercentBarChartItem(QAbstractBarSeries *series, QGraphicsItem* item = 0);
27 QString generateLabelText(int set, int category, qreal value) override;
28
29private:
30 QList<QRectF> calculateLayout() override;
31 void initializeLayout(int set, int category, int layoutIndex, bool resetAnimation) override;
32 void markLabelsDirty(QBarSet *barset, int index, int count) override;
33 QPointF topLeftPoint(int category, qreal barWidth, qreal value);
34 QPointF bottomRightPoint(int category, qreal barWidth, qreal value);
35};
36
37QT_END_NAMESPACE
38
39#endif // HORIZONTALPERCENTBARCHARTITEM_P_H
40

source code of qtcharts/src/charts/barchart/horizontal/percent/horizontalpercentbarchartitem_p.h