1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
|
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include "qcategory3daxis.h"
#include "qquickgraphssurface_p.h"
#include "qsurface3dseries_p.h"
#include "qvalue3daxis.h"
QT_BEGIN_NAMESPACE
/*!
* \class QSurface3DSeries
* \inmodule QtGraphs
* \ingroup graphs_3D
* \brief The QSurface3DSeries class represents a data series in a 3D surface
* graph.
*
* This class manages the series-specific visual elements, as well as the series
* data (via a data proxy).
*
* Regarding the proxy-series relationship, it is crucial to highlight
* a couple of key points. In this context, data is stored in series and
* users can access the dataset through the series. This series is controlled
* or represented by a proxy object. Thus, the proxy can be used to manage various
* operations on the data and update the actual dataset. However, it is necessary
* to create a series associated with this proxy to edit the dataset.
*
* If no data proxy is set explicitly for the series, the series creates a
* default proxy. Setting another proxy will destroy the existing proxy and all
* data added to the series.
*
* The object mesh set via the QAbstract3DSeries::mesh property defines the
* selection pointer shape in a surface series.
*
* QSurface3DSeries supports the following format tags for QAbstract3DSeries::setItemLabelFormat():
* \table
* \row
* \li @xTitle \li Title from x-axis
* \row
* \li @yTitle \li Title from y-axis
* \row
* \li @zTitle \li Title from z-axis
* \row
* \li @xLabel \li Item value formatted using the format of the x-axis.
* For more information, see
* \l{QValue3DAxis::labelFormat}.
* \row
* \li @yLabel \li Item value formatted using the format of the y-axis.
* For more information, see
* \l{QValue3DAxis::labelFormat}.
* \row
* \li @zLabel \li Item value formatted using the format of the z-axis.
* For more information, see
* \l{QValue3DAxis::labelFormat}.
* \row
* \li @seriesName \li Name of the series
* \endtable
*
* For example:
* \snippet doc_src_qtgraphs.cpp labelformat
*
* \sa {Qt Graphs Data Handling with 3D}
*/
/*!
* \qmltype Surface3DSeries
* \inqmlmodule QtGraphs
* \ingroup graphs_qml_3D
* \nativetype QSurface3DSeries
* \inherits Abstract3DSeries
* \brief Represents a data series in a 3D surface graph.
*
* This type manages the series specific visual elements, as well as the series
* data (via a data proxy).
*
* Surface3DSeries supports the following format tags for itemLabelFormat:
* \table
* \row
* \li @xTitle \li Title from x-axis
* \row
* \li @yTitle \li Title from y-axis
* \row
* \li @zTitle \li Title from z-axis
* \row
* \li @xLabel \li Item value formatted using the format of the x-axis.
* For more information, see
* \l{QValue3DAxis::labelFormat}{labelFormat}.
* \row
* \li @yLabel \li Item value formatted using the format of the y-axis.
* For more information, see
* \l{QValue3DAxis::labelFormat}{labelFormat}.
* \row
* \li @zLabel \li Item value formatted using the format of the z-axis.
* For more information, see
* \l{QValue3DAxis::labelFormat}{labelFormat}.
* \row
* \li @seriesName \li Name of the series
* \endtable
*
* For a more complete description, see QSurface3DSeries.
*
* \sa {Qt Graphs Data Handling with 3D}
*/
/*!
* \qmlproperty SurfaceDataProxy Surface3DSeries::dataProxy
*
* The active data proxy. The series assumes ownership of any proxy set to
* it and deletes any previously set proxy when a new one is added. The proxy
* cannot be null or set to another series.
*/
/*!
* \qmlproperty point Surface3DSeries::selectedPoint
*
* Sets the surface grid point in the position specified by a row and a column
* in the data array of the series as selected.
* Only one point can be selected at a time.
*
* To clear the selection from this series, assign invalidSelectionPosition as the
* position. If this series is added to a graph, the graph can adjust the
* selection according to user interaction or if it becomes invalid.
*
* Removing rows from or inserting rows into the series before the row of the
* selected point will adjust the selection so that the same point will stay
* selected.
*
* \sa GraphsItem3D::clearSelection()
*/
/*!
* \qmlproperty point Surface3DSeries::invalidSelectionPosition
* \readonly
*
* A constant property providing an invalid selection position.
* This position is assigned to the selectedPoint property to clear the selection
* from this series.
*
* \sa GraphsItem3D::clearSelection()
*/
/*!
* \qmlproperty Shading Surface3DSeries::shading
*
* Sets surface flat shading to visible. It is preset to \c Surface3DSeries.Shading.Flat by default.
* When disabled, the normals on the surface are interpolated making the edges
* look round. When visible, the normals are kept the same on a triangle making
* the color of the triangle solid. This makes the data more readable from the
* model. \note Flat shaded surfaces require at least GLSL version 1.2 with
* GL_EXT_gpu_shader4 extension. The value of the flatShadingSupported property
* indicates whether flat shading is supported at runtime.
*/
/*!
* \qmlproperty bool Surface3DSeries::flatShadingSupported
*
* Indicates whether flat shading for surfaces is supported by the current
* system. It requires at least GLSL version 1.2 with GL_EXT_gpu_shader4
* extension.
*
* \note This read-only property is set to its correct value after the first
* render pass. Until then it is always \c true.
*/
/*!
* \qmlproperty DrawFlag Surface3DSeries::drawMode
*
* Sets the drawing mode to one of
* \l{QSurface3DSeries::DrawFlag}{Surface3DSeries.DrawFlag}{QSurface3DSeries.DrawFilledSurface}.
* Either DrawWireframe or DrawSurface must be set
*/
/*!
* \qmlproperty string Surface3DSeries::textureFile
*
* The texture file name for the surface texture. To clear the texture, an empty
* file name is set.
*/
/*!
* \qmlproperty color Surface3DSeries::wireframeColor
*
* The color used to draw the gridlines of the surface wireframe.
*/
/*!
* \qmlproperty SurfaceDataArray Surface3DSeries::dataArray
*
* Holds the reference of the data array.
*
* dataArrayChanged signal is emitted when data array is set, unless \a newDataArray
* is identical to the previous one.
*
* \note Before doing anything regarding the dataArray, a series must be created for
* the relevant proxy.
*/
/*!
\qmlsignal Surface3DSeries::dataProxyChanged(SurfaceDataProxy proxy)
This signal is emitted when dataProxy changes to \a proxy.
*/
/*!
\qmlsignal Surface3DSeries::selectedPointChanged(point position)
This signal is emitted when selectedPoint changes to \a position.
*/
/*!
\qmlsignal Surface3DSeries::shadingChanged(const Shading shading)
This signal is emitted when \l shading changes to \a shading.
*/
/*!
\qmlsignal Surface3DSeries::flatShadingSupportedChanged(bool enable)
This signal is emitted when flatShadingSupported changes to \a enable.
*/
/*!
\qmlsignal Surface3DSeries::drawModeChanged(DrawFlag mode)
This signal is emitted when drawMode changes to \a mode.
*/
/*!
\qmlsignal Surface3DSeries::textureFileChanged(string filename)
This signal is emitted when textureFile changes to \a filename.
*/
/*!
\qmlsignal Surface3DSeries::wireframeColorChanged(color color)
This signal is emitted when wireframeColor changes to \a color.
*/
/*!
\qmlsignal Surface3DSeries::dataArrayChanged(SurfaceDataArray array)
This signal is emitted when dataArray changes to \a array.
*/
/*!
* \enum QSurface3DSeries::DrawFlag
*
* The drawing mode of the surface. Values of this enumeration can be combined
* with the OR operator.
*
* \value DrawWireframe
* Only the grid is drawn.
* \value DrawSurface
* Only the surface is drawn.
* \value DrawSurfaceAndWireframe
* Both the surface and grid are drawn.
*
* \value [since 6.10] DrawFilledSurface
* Draws a fill for a surface.
* Setting this mode also sets DrawSurface if it is not already set.
*/
/*!
* Constructs a surface 3D series with the parent \a parent.
*/
QSurface3DSeries::QSurface3DSeries(QObject *parent)
: QAbstract3DSeries(*(new QSurface3DSeriesPrivate()), parent)
{
Q_D(QSurface3DSeries);
// Default proxy
d->setDataProxy(new QSurfaceDataProxy);
}
/*!
* Constructs a surface 3D series with the data proxy \a dataProxy and the
* parent \a parent.
*/
QSurface3DSeries::QSurface3DSeries(QSurfaceDataProxy *dataProxy, QObject *parent)
: QAbstract3DSeries(*(new QSurface3DSeriesPrivate()), parent)
{
Q_D(QSurface3DSeries);
d->setDataProxy(dataProxy);
}
/*!
* \internal
*/
QSurface3DSeries::QSurface3DSeries(QSurface3DSeriesPrivate &d, QObject *parent)
: QAbstract3DSeries(d, parent)
{}
/*!
* Deletes the surface 3D series.
*/
QSurface3DSeries::~QSurface3DSeries() {}
/*!
* \property QSurface3DSeries::dataProxy
*
* \brief The active data proxy.
*
* The series assumes ownership of any proxy set to it and deletes any
* previously set proxy when a new one is added. The proxy cannot be null or
* set to another series.
*/
void QSurface3DSeries::setDataProxy(QSurfaceDataProxy *proxy)
{
Q_D(QSurface3DSeries);
d->setDataProxy(proxy);
}
QSurfaceDataProxy *QSurface3DSeries::dataProxy() const
{
Q_D(const QSurface3DSeries);
return static_cast<QSurfaceDataProxy *>(d->dataProxy());
}
/*!
* \property QSurface3DSeries::selectedPoint
*
* \brief The surface grid point that is selected in the series.
*
* Selects a surface grid point at the position \a position in the data array of
* the series specified by a row and a column.
*
* Only one point can be selected at a time.
*
* To clear the selection from this series, invalidSelectionPosition() is set as \a
* position. If this series is added to a graph, the graph can adjust the
* selection according to user interaction or if it becomes invalid.
*
* Removing rows from or inserting rows into the series before the row of the
* selected point will adjust the selection so that the same point will stay
* selected.
*
* \sa Q3DGraphsWidgetItem::clearSelection()
*/
void QSurface3DSeries::setSelectedPoint(QPoint position)
{
Q_D(QSurface3DSeries);
// Don't do this in private to avoid loops, as that is used for callback from
// graph.
if (d->m_graph)
static_cast<QQuickGraphsSurface *>(d->m_graph)->setSelectedPoint(position, this, true);
else
d->setSelectedPoint(position);
}
QPoint QSurface3DSeries::selectedPoint() const
{
Q_D(const QSurface3DSeries);
return d->m_selectedPoint;
}
/*!
* Returns the QPoint signifying an invalid selection position. This is set to
* the selectedPoint property to clear the selection from this series.
*
* \sa Q3DGraphsWidgetItem::clearSelection()
*/
QPoint QSurface3DSeries::invalidSelectionPosition()
{
return QQuickGraphsSurface::invalidSelectionPosition();
}
/*!
* \property QSurface3DSeries::shading
*
* \brief Whether surface flat shading is enabled.
*
* Preset to \c QSurface3DSeries::Shading::Flat by default.
*
* When disabled, the normals on the surface are interpolated making the edges
* look round. When visible, the normals are kept the same on a triangle making
* the color of the triangle solid. This makes the data more readable from the
* model. \note Flat shaded surfaces require at least GLSL version 1.2 with
* GL_EXT_gpu_shader4 extension. The value of the flatShadingSupported property
* indicates whether flat shading is supported at runtime.
*/
void QSurface3DSeries::setShading(const QSurface3DSeries::Shading shading)
{
Q_D(QSurface3DSeries);
if (d->m_shading != shading) {
d->setShading(shading);
emit shadingChanged(shading);
}
}
QSurface3DSeries::Shading QSurface3DSeries::shading() const
{
Q_D(const QSurface3DSeries);
return d->m_shading;
}
/*!
* \property QSurface3DSeries::flatShadingSupported
*
* \brief Whether surface flat shading is supported by the current system.
*
* Flat shading for surfaces requires at least GLSL version 1.2 with
* GL_EXT_gpu_shader4 extension. If \c true, flat shading for surfaces is
* supported. \note This read-only property is set to its correct value after
* the first render pass. Until then it is always \c true.
*/
bool QSurface3DSeries::isFlatShadingSupported() const
{
Q_D(const QSurface3DSeries);
if (d->m_graph)
return static_cast<QQuickGraphsSurface *>(d->m_graph)->isFlatShadingSupported();
else
return true;
}
/*!
* \property QSurface3DSeries::drawMode
*
* The drawing mode.
*
* Possible values are the values of DrawFlag. Clearing all flags is not
* allowed.
*/
void QSurface3DSeries::setDrawMode(QSurface3DSeries::DrawFlags mode)
{
Q_D(QSurface3DSeries);
if (d->m_drawMode != mode) {
d->setDrawMode(mode);
emit drawModeChanged(mode);
}
}
QSurface3DSeries::DrawFlags QSurface3DSeries::drawMode() const
{
Q_D(const QSurface3DSeries);
return d->m_drawMode;
}
/*!
* \property QSurface3DSeries::texture
*
* \brief The texture for the surface as a QImage.
*
* Setting an empty QImage clears the texture.
*/
void QSurface3DSeries::setTexture(const QImage &texture)
{
Q_D(QSurface3DSeries);
if (d->m_texture != texture) {
d->setTexture(texture);
emit textureChanged(texture);
d->m_textureFile.clear();
}
}
QImage QSurface3DSeries::texture() const
{
Q_D(const QSurface3DSeries);
return d->m_texture;
}
/*!
* \property QSurface3DSeries::textureFile
*
* \brief The texture for the surface as a file.
*
* Setting an empty file name clears the texture.
*/
void QSurface3DSeries::setTextureFile(const QString &filename)
{
Q_D(QSurface3DSeries);
if (d->m_textureFile != filename) {
if (filename.isEmpty()) {
setTexture(QImage());
} else {
QImage image(filename);
if (image.isNull()) {
qWarning("Warning: Tried to set invalid image file as surface texture.");
return;
}
setTexture(image);
}
d->m_textureFile = filename;
emit textureFileChanged(filename);
}
}
QString QSurface3DSeries::textureFile() const
{
Q_D(const QSurface3DSeries);
return d->m_textureFile;
}
/*!
* \property QSurface3DSeries::wireframeColor
*
* \brief The color for the surface wireframe.
*/
void QSurface3DSeries::setWireframeColor(QColor color)
{
Q_D(QSurface3DSeries);
if (d->m_wireframeColor != color) {
d->setWireframeColor(color);
emit wireframeColorChanged(color);
}
}
QColor QSurface3DSeries::wireframeColor() const
{
Q_D(const QSurface3DSeries);
return d->m_wireframeColor;
}
/*!
* \property QSurface3DSeries::dataArray
*
* \brief Data array for the series.
*
* Holds the reference of the data array.
*
* dataArrayChanged signal is emitted when data array is set, unless \a newDataArray
* is identical to the previous one.
*
* \note Before doing anything regarding the dataArray, a series must be created for
* the relevant proxy.
*
*\sa clearRow(qsizetype rowIndex)
*
*\sa clearArray()
*/
void QSurface3DSeries::setDataArray(const QSurfaceDataArray &newDataArray)
{
Q_D(QSurface3DSeries);
if (d->m_dataArray.data() != newDataArray.data()) {
d->setDataArray(newDataArray);
emit dataArrayChanged(newDataArray);
}
}
/*!
* Clears the existing row in the array according to given \a rowIndex.
*/
void QSurface3DSeries::clearRow(qsizetype rowIndex)
{
Q_D(QSurface3DSeries);
d->clearRow(rowIndex);
}
/*!
* Clears the existing array.
*/
void QSurface3DSeries::clearArray()
{
Q_D(QSurface3DSeries);
d->clearArray();
}
const QSurfaceDataArray &QSurface3DSeries::dataArray() const &
{
Q_D(const QSurface3DSeries);
return d->m_dataArray;
}
QSurfaceDataArray QSurface3DSeries::dataArray() &&
{
Q_D(QSurface3DSeries);
return std::move(d->m_dataArray);
}
// QSurface3DSeriesPrivate
QSurface3DSeriesPrivate::QSurface3DSeriesPrivate()
: QAbstract3DSeriesPrivate(QAbstract3DSeries::SeriesType::Surface)
, m_selectedPoint(QQuickGraphsSurface::invalidSelectionPosition())
, m_shading(QSurface3DSeries::Shading::Flat)
, m_drawMode(QSurface3DSeries::DrawSurfaceAndWireframe)
, m_wireframeColor(Qt::black)
{
m_itemLabelFormat = QStringLiteral("@xLabel, @yLabel, @zLabel");
m_mesh = QAbstract3DSeries::Mesh::Sphere;
}
QSurface3DSeriesPrivate::~QSurface3DSeriesPrivate()
{
clearArray();
}
void QSurface3DSeriesPrivate::setDataProxy(QAbstractDataProxy *proxy)
{
Q_ASSERT(proxy->type() == QAbstractDataProxy::DataType::Surface);
Q_Q(QSurface3DSeries);
QAbstract3DSeriesPrivate::setDataProxy(proxy);
emit q->dataProxyChanged(static_cast<QSurfaceDataProxy *>(proxy));
}
void QSurface3DSeriesPrivate::connectGraphAndProxy(QQuickGraphsItem *newGraph)
{
Q_Q(QSurface3DSeries);
QSurfaceDataProxy *surfaceDataProxy = static_cast<QSurfaceDataProxy *>(m_dataProxy);
if (m_graph && surfaceDataProxy) {
// Disconnect old graph/old proxy
QObject::disconnect(surfaceDataProxy, 0, m_graph, 0);
QObject::disconnect(q, 0, m_graph, 0);
}
if (newGraph && surfaceDataProxy) {
QQuickGraphsSurface *graph = static_cast<QQuickGraphsSurface *>(newGraph);
QObject::connect(surfaceDataProxy,
&QSurfaceDataProxy::arrayReset,
graph,
&QQuickGraphsSurface::handleArrayReset);
QObject::connect(surfaceDataProxy,
&QSurfaceDataProxy::rowsAdded,
graph,
&QQuickGraphsSurface::handleRowsAdded);
QObject::connect(surfaceDataProxy,
&QSurfaceDataProxy::rowsChanged,
graph,
&QQuickGraphsSurface::handleRowsChanged);
QObject::connect(surfaceDataProxy,
&QSurfaceDataProxy::rowsRemoved,
graph,
&QQuickGraphsSurface::handleRowsRemoved);
QObject::connect(surfaceDataProxy,
&QSurfaceDataProxy::rowsInserted,
graph,
&QQuickGraphsSurface::handleRowsInserted);
QObject::connect(surfaceDataProxy,
&QSurfaceDataProxy::itemChanged,
graph,
&QQuickGraphsSurface::handleItemChanged);
QObject::connect(q,
&QSurface3DSeries::dataProxyChanged,
graph,
&QQuickGraphsSurface::handleArrayReset);
}
}
void QSurface3DSeriesPrivate::createItemLabel()
{
Q_Q(QSurface3DSeries);
static const QString xTitleTag(QStringLiteral("@xTitle"));
static const QString yTitleTag(QStringLiteral("@yTitle"));
static const QString zTitleTag(QStringLiteral("@zTitle"));
static const QString xLabelTag(QStringLiteral("@xLabel"));
static const QString yLabelTag(QStringLiteral("@yLabel"));
static const QString zLabelTag(QStringLiteral("@zLabel"));
static const QString seriesNameTag(QStringLiteral("@seriesName"));
if (m_selectedPoint == QSurface3DSeries::invalidSelectionPosition()) {
m_itemLabel = hiddenLabelTag;
return;
}
QValue3DAxis *axisX = static_cast<QValue3DAxis *>(m_graph->axisX());
QValue3DAxis *axisY = static_cast<QValue3DAxis *>(m_graph->axisY());
QValue3DAxis *axisZ = static_cast<QValue3DAxis *>(m_graph->axisZ());
QVector3D selectedPosition
= q->dataProxy()->itemAt(QPoint(m_selectedPoint.y(), m_selectedPoint.x())).position();
m_itemLabel = m_itemLabelFormat;
m_itemLabel.replace(xTitleTag, axisX->title());
m_itemLabel.replace(yTitleTag, axisY->title());
m_itemLabel.replace(zTitleTag, axisZ->title());
if (m_itemLabel.contains(xLabelTag)) {
QString valueLabelText = axisX->formatter()->stringForValue(qreal(selectedPosition.x()),
axisX->labelFormat());
m_itemLabel.replace(xLabelTag, valueLabelText);
}
if (m_itemLabel.contains(yLabelTag)) {
QString valueLabelText = axisY->formatter()->stringForValue(qreal(selectedPosition.y()),
axisY->labelFormat());
m_itemLabel.replace(yLabelTag, valueLabelText);
}
if (m_itemLabel.contains(zLabelTag)) {
QString valueLabelText = axisZ->formatter()->stringForValue(qreal(selectedPosition.z()),
axisZ->labelFormat());
m_itemLabel.replace(zLabelTag, valueLabelText);
}
m_itemLabel.replace(seriesNameTag, m_name);
}
void QSurface3DSeriesPrivate::setSelectedPoint(QPoint position)
{
Q_Q(QSurface3DSeries);
if (position != m_selectedPoint) {
markItemLabelDirty();
m_selectedPoint = position;
emit q->selectedPointChanged(m_selectedPoint);
}
}
void QSurface3DSeriesPrivate::setShading(const QSurface3DSeries::Shading shading)
{
m_shading = shading;
if (m_graph)
m_graph->markSeriesVisualsDirty();
}
void QSurface3DSeriesPrivate::setDrawMode(QSurface3DSeries::DrawFlags mode)
{
if (mode.testFlag(QSurface3DSeries::DrawFilledSurface)
&& !mode.testFlag(QSurface3DSeries::DrawSurface)) {
qWarning("DrawSurface was not set and is needed for DrawFilledSurface. Setting it "
"automatically");
mode |= QSurface3DSeries::DrawSurface;
}
if (mode.testFlag(QSurface3DSeries::DrawWireframe)
|| mode.testFlag(QSurface3DSeries::DrawSurface)) {
m_drawMode = mode;
if (m_graph)
m_graph->markSeriesVisualsDirty();
} else {
qWarning("DrawWireframe or DrawSurface must be set. Mode not changed.");
}
}
void QSurface3DSeriesPrivate::setTexture(const QImage &texture)
{
Q_Q(QSurface3DSeries);
m_texture = texture;
if (static_cast<QQuickGraphsSurface *>(m_graph))
static_cast<QQuickGraphsSurface *>(m_graph)->updateSurfaceTexture(q);
}
void QSurface3DSeriesPrivate::setWireframeColor(QColor color)
{
m_wireframeColor = color;
if (m_graph)
m_graph->markSeriesVisualsDirty();
}
void QSurface3DSeriesPrivate::setDataArray(const QSurfaceDataArray &newDataArray)
{
m_dataArray = newDataArray;
}
void QSurface3DSeriesPrivate::clearRow(qsizetype rowIndex)
{
m_dataArray[rowIndex].clear();
}
void QSurface3DSeriesPrivate::clearArray()
{
m_dataArray.clear();
}
QT_END_NAMESPACE
|