QVCandlestickModelMapper Class
The QVCandlestickModelMapper class is a vertical model mapper for a candlestick series. More...
Header: | #include <QVCandlestickModelMapper> |
Since: | Qt 5.8 |
Instantiated By: | VCandlestickModelMapper |
Inherits: | QCandlestickModelMapper |
Properties
|
|
- 2 properties inherited from QCandlestickModelMapper
- 1 property inherited from QObject
Public Functions
QVCandlestickModelMapper(QObject *parent = nullptr) | |
int | closeRow() const |
int | firstSetColumn() const |
int | highRow() const |
int | lastSetColumn() const |
int | lowRow() const |
int | openRow() const |
void | setCloseRow(int closeRow) |
void | setFirstSetColumn(int firstSetColumn) |
void | setHighRow(int highRow) |
void | setLastSetColumn(int lastSetColumn) |
void | setLowRow(int lowRow) |
void | setOpenRow(int openRow) |
void | setTimestampRow(int timestampRow) |
int | timestampRow() const |
Reimplemented Public Functions
virtual Qt::Orientation | orientation() const |
- 5 public functions inherited from QCandlestickModelMapper
- 31 public functions inherited from QObject
Signals
void | closeRowChanged() |
void | firstSetColumnChanged() |
void | highRowChanged() |
void | lastSetColumnChanged() |
void | lowRowChanged() |
void | openRowChanged() |
void | timestampRowChanged() |
- 2 signals inherited from QCandlestickModelMapper
- 2 signals inherited from QObject
Additional Inherited Members
- 1 public slot inherited from QObject
- 11 static public members inherited from QObject
- 14 protected functions inherited from QCandlestickModelMapper
- 9 protected functions inherited from QObject
Detailed Description
The QVCandlestickModelMapper class is a vertical model mapper for a candlestick series.
Model mappers enable using a data model derived from the QAbstractItemModel class as a data source for a chart. A vertical model mapper is used to create a connection between a data model and QCandlestickSeries, so that each column in the data model defines a candlestick item and each row maps to the open, high, low, close, and timestamp values of the candlestick item.
Both model and candlestick series properties can be used to manipulate the data. The model mapper keeps the candlestick series and the data model in sync.
The model mapper ensures that all the candlestick items in the candlestick series have equal sizes. Therefore, adding or removing a value from a candlestick item causes the same change to be made in all the candlestick items in the candlestick series.
See also QCandlestickSeries, QCandlestickSet, and QHCandlestickModelMapper.
Property Documentation
closeRow : int
This property holds the row of the model that contains the close values of the candlestick items in the series.
The default value is -1 (invalid mapping).
Access functions:
int | closeRow() const |
void | setCloseRow(int closeRow) |
Notifier signal:
void | closeRowChanged() |
firstSetColumn : int
This property holds the column of the model that is used as the data source for the first item.
The default value is -1 (invalid mapping).
Access functions:
int | firstSetColumn() const |
void | setFirstSetColumn(int firstSetColumn) |
Notifier signal:
void | firstSetColumnChanged() |
highRow : int
This property holds the row of the model that contains the high values of the candlestick items in the series.
The default value is -1 (invalid mapping).
Access functions:
int | highRow() const |
void | setHighRow(int highRow) |
Notifier signal:
void | highRowChanged() |
lastSetColumn : int
This property holds the column of the model that is used as the data source for the last item.
The default value is -1 (invalid mapping).
Access functions:
int | lastSetColumn() const |
void | setLastSetColumn(int lastSetColumn) |
Notifier signal:
void | lastSetColumnChanged() |
lowRow : int
This property holds the row of the model that contains the low values of the candlestick items in the series.
The default value is -1 (invalid mapping).
Access functions:
int | lowRow() const |
void | setLowRow(int lowRow) |
Notifier signal:
void | lowRowChanged() |
openRow : int
This property holds the row of the model that contains the open values of the candlestick items in the series.
The default value is -1 (invalid mapping).
Access functions:
int | openRow() const |
void | setOpenRow(int openRow) |
Notifier signal:
void | openRowChanged() |
timestampRow : int
This property holds the row of the model that contains the timestamp values of the candlestick items in the series.
The default value is -1 (invalid mapping).
Access functions:
int | timestampRow() const |
void | setTimestampRow(int timestampRow) |
Notifier signal:
void | timestampRowChanged() |
Member Function Documentation
QVCandlestickModelMapper::QVCandlestickModelMapper(QObject *parent = nullptr)
Constructs a vertical model mapper object which is a child of parent.
[signal]
void QVCandlestickModelMapper::closeRowChanged()
Emitted when the row of the model that contains close values is changed.
Note: Notifier signal for property closeRow.
See also closeRow.
[signal]
void QVCandlestickModelMapper::firstSetColumnChanged()
Emitted when the column of the model that contains the data of the first item is changed.
Note: Notifier signal for property firstSetColumn.
See also firstSetColumn.
[signal]
void QVCandlestickModelMapper::highRowChanged()
Emitted when the row of the model that contains high values is changed.
Note: Notifier signal for property highRow.
See also highRow.
[signal]
void QVCandlestickModelMapper::lastSetColumnChanged()
Emitted when the column of the model that contains the data of the last item is changed.
Note: Notifier signal for property lastSetColumn.
See also lastSetColumn.
[signal]
void QVCandlestickModelMapper::lowRowChanged()
Emitted when the row of the model that contains low values is changed.
Note: Notifier signal for property lowRow.
See also lowRow.
[signal]
void QVCandlestickModelMapper::openRowChanged()
Emitted when the row of the model that contains open values is changed.
Note: Notifier signal for property openRow.
See also openRow.
[virtual]
Qt::Orientation QVCandlestickModelMapper::orientation() const
Reimplemented from QCandlestickModelMapper::orientation().
Returns Qt::Vertical. This means that values of the item are read from columns.
[signal]
void QVCandlestickModelMapper::timestampRowChanged()
Emitted when the row of the model that contains timestamp values is changed.
Note: Notifier signal for property timestampRow.
See also timestampRow.
© 2017 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.