2013-12-03 06:43:55 +00:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2013 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 QtDataVisualization module.
|
|
|
|
|
**
|
|
|
|
|
** Licensees holding valid Qt Enterprise licenses may use this file in
|
|
|
|
|
** accordance with the Qt Enterprise 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
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// W A R N I N G
|
|
|
|
|
// -------------
|
|
|
|
|
//
|
|
|
|
|
// This file is not part of the QtDataVisualization API. It exists purely as an
|
|
|
|
|
// implementation detail. This header file may change from version to
|
|
|
|
|
// version without notice, or even be removed.
|
|
|
|
|
//
|
|
|
|
|
// We mean it.
|
|
|
|
|
|
|
|
|
|
#ifndef DECLARATIVETHEME_P_H
|
|
|
|
|
#define DECLARATIVETHEME_P_H
|
|
|
|
|
|
|
|
|
|
#include "datavisualizationglobal_p.h"
|
2013-12-11 11:12:18 +00:00
|
|
|
#include "declarativecolor_p.h"
|
2013-12-03 06:43:55 +00:00
|
|
|
#include "colorgradient_p.h"
|
2014-01-07 08:46:26 +00:00
|
|
|
#include "q3dtheme_p.h"
|
|
|
|
|
|
|
|
|
|
#include <QtQml/qqmlparserstatus.h>
|
2013-12-03 06:43:55 +00:00
|
|
|
|
|
|
|
|
QT_DATAVISUALIZATION_BEGIN_NAMESPACE
|
|
|
|
|
|
2014-01-07 08:46:26 +00:00
|
|
|
class DeclarativeTheme3D : public Q3DTheme, public QQmlParserStatus
|
2013-12-03 06:43:55 +00:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2014-01-07 08:46:26 +00:00
|
|
|
Q_INTERFACES(QQmlParserStatus)
|
2013-12-09 08:49:49 +00:00
|
|
|
Q_PROPERTY(QQmlListProperty<QObject> seriesChildren READ seriesChildren)
|
2013-12-11 11:12:18 +00:00
|
|
|
Q_PROPERTY(QQmlListProperty<DeclarativeColor> baseColors READ baseColors)
|
2013-12-10 10:55:22 +00:00
|
|
|
Q_PROPERTY(QQmlListProperty<ColorGradient> baseGradients READ baseGradients)
|
2013-12-03 06:43:55 +00:00
|
|
|
Q_PROPERTY(ColorGradient *singleHighlightGradient READ singleHighlightGradient WRITE setSingleHighlightGradient NOTIFY singleHighlightGradientChanged)
|
|
|
|
|
Q_PROPERTY(ColorGradient *multiHighlightGradient READ multiHighlightGradient WRITE setMultiHighlightGradient NOTIFY multiHighlightGradientChanged)
|
2013-12-09 08:49:49 +00:00
|
|
|
Q_CLASSINFO("DefaultProperty", "seriesChildren")
|
2013-12-03 06:43:55 +00:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
DeclarativeTheme3D(QObject *parent = 0);
|
|
|
|
|
virtual ~DeclarativeTheme3D();
|
|
|
|
|
|
2013-12-09 08:49:49 +00:00
|
|
|
QQmlListProperty<QObject> seriesChildren();
|
|
|
|
|
static void appendSeriesChildren(QQmlListProperty<QObject> *list, QObject *element);
|
|
|
|
|
|
2013-12-11 11:12:18 +00:00
|
|
|
QQmlListProperty<DeclarativeColor> baseColors();
|
|
|
|
|
static void appendBaseColorsFunc(QQmlListProperty<DeclarativeColor> *list,
|
|
|
|
|
DeclarativeColor *color);
|
|
|
|
|
static int countBaseColorsFunc(QQmlListProperty<DeclarativeColor> *list);
|
|
|
|
|
static DeclarativeColor *atBaseColorsFunc(QQmlListProperty<DeclarativeColor> *list, int index);
|
|
|
|
|
static void clearBaseColorsFunc(QQmlListProperty<DeclarativeColor> *list);
|
2013-12-10 10:55:22 +00:00
|
|
|
|
|
|
|
|
QQmlListProperty<ColorGradient> baseGradients();
|
|
|
|
|
static void appendBaseGradientsFunc(QQmlListProperty<ColorGradient> *list,
|
|
|
|
|
ColorGradient *gradient);
|
|
|
|
|
static int countBaseGradientsFunc(QQmlListProperty<ColorGradient> *list);
|
|
|
|
|
static ColorGradient *atBaseGradientsFunc(QQmlListProperty<ColorGradient> *list, int index);
|
|
|
|
|
static void clearBaseGradientsFunc(QQmlListProperty<ColorGradient> *list);
|
2013-12-03 06:43:55 +00:00
|
|
|
|
|
|
|
|
void setSingleHighlightGradient(ColorGradient *gradient);
|
|
|
|
|
ColorGradient *singleHighlightGradient() const;
|
|
|
|
|
|
|
|
|
|
void setMultiHighlightGradient(ColorGradient *gradient);
|
|
|
|
|
ColorGradient *multiHighlightGradient() const;
|
|
|
|
|
|
2014-01-07 08:46:26 +00:00
|
|
|
// From QQmlParserStatus
|
|
|
|
|
virtual void classBegin();
|
|
|
|
|
virtual void componentComplete();
|
|
|
|
|
|
2013-12-03 06:43:55 +00:00
|
|
|
signals:
|
|
|
|
|
void singleHighlightGradientChanged(ColorGradient *gradient);
|
|
|
|
|
void multiHighlightGradientChanged(ColorGradient *gradient);
|
|
|
|
|
|
|
|
|
|
protected:
|
2013-12-11 11:12:18 +00:00
|
|
|
void handleBaseColorUpdate();
|
|
|
|
|
void handleBaseGradientUpdate();
|
2013-12-03 06:43:55 +00:00
|
|
|
void handleSingleHLGradientUpdate();
|
|
|
|
|
void handleMultiHLGradientUpdate();
|
|
|
|
|
|
|
|
|
|
enum GradientType {
|
|
|
|
|
GradientTypeBase = 0,
|
|
|
|
|
GradientTypeSingleHL,
|
|
|
|
|
GradientTypeMultiHL
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
private:
|
2013-12-11 11:12:18 +00:00
|
|
|
void addColor(DeclarativeColor *color);
|
|
|
|
|
QList<DeclarativeColor *> colorList();
|
|
|
|
|
void clearColors();
|
|
|
|
|
void clearDummyColors();
|
|
|
|
|
|
2013-12-10 10:55:22 +00:00
|
|
|
void addGradient(ColorGradient *gradient);
|
2013-12-11 11:12:18 +00:00
|
|
|
QList<ColorGradient *> gradientList();
|
2013-12-10 10:55:22 +00:00
|
|
|
void clearGradients();
|
2013-12-11 11:12:18 +00:00
|
|
|
void clearDummyGradients();
|
|
|
|
|
|
2013-12-10 10:55:22 +00:00
|
|
|
void setThemeGradient(ColorGradient *gradient, GradientType type);
|
|
|
|
|
QLinearGradient convertGradient(ColorGradient *gradient);
|
2013-12-11 11:12:18 +00:00
|
|
|
ColorGradient *convertGradient(const QLinearGradient &gradient);
|
2013-12-10 10:55:22 +00:00
|
|
|
|
2013-12-11 11:12:18 +00:00
|
|
|
QList<DeclarativeColor *> m_colors; // Not owned
|
2013-12-10 10:55:22 +00:00
|
|
|
QList<ColorGradient *> m_gradients; // Not owned
|
2013-12-03 06:43:55 +00:00
|
|
|
ColorGradient *m_singleHLGradient; // Not owned
|
|
|
|
|
ColorGradient *m_multiHLGradient; // Not owned
|
2013-12-11 11:12:18 +00:00
|
|
|
|
|
|
|
|
bool m_dummyGradients;
|
|
|
|
|
bool m_dummyColors;
|
2013-12-03 06:43:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
QT_DATAVISUALIZATION_END_NAMESPACE
|
|
|
|
|
|
|
|
|
|
#endif
|