2013-12-03 06:43:55 +00:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2015-04-14 10:35:51 +00:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd
|
2013-12-03 06:43:55 +00:00
|
|
|
** All rights reserved.
|
2015-04-14 10:35:51 +00:00
|
|
|
** For any questions to The Qt Company, please use contact form at http://qt.io
|
2013-12-03 06:43:55 +00:00
|
|
|
**
|
2014-11-07 08:07:00 +00:00
|
|
|
** This file is part of the Qt Data Visualization module.
|
2013-12-03 06:43:55 +00:00
|
|
|
**
|
2014-11-07 08:07:00 +00:00
|
|
|
** Licensees holding valid commercial license for Qt may use this file in
|
|
|
|
|
** accordance with the Qt License Agreement provided with the Software
|
|
|
|
|
** or, alternatively, in accordance with the terms contained in a written
|
2015-04-14 10:35:51 +00:00
|
|
|
** agreement between you and The Qt Company.
|
2013-12-03 06:43:55 +00:00
|
|
|
**
|
|
|
|
|
** If you have questions regarding the use of this file, please use
|
2014-11-07 08:07:00 +00:00
|
|
|
** contact form at http://qt.io
|
2013-12-03 06:43:55 +00:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// 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"
|
|
|
|
|
|
2014-02-17 14:18:27 +00:00
|
|
|
#include <QtQml/QQmlParserStatus>
|
2013-12-03 06:43:55 +00:00
|
|
|
|
2014-01-16 11:33:57 +00:00
|
|
|
QT_BEGIN_NAMESPACE_DATAVISUALIZATION
|
2013-12-03 06:43:55 +00:00
|
|
|
|
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)
|
2014-05-12 07:06:27 +00:00
|
|
|
Q_PROPERTY(QQmlListProperty<QObject> themeChildren READ themeChildren)
|
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)
|
2014-05-12 07:06:27 +00:00
|
|
|
Q_CLASSINFO("DefaultProperty", "themeChildren")
|
2013-12-03 06:43:55 +00:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
DeclarativeTheme3D(QObject *parent = 0);
|
|
|
|
|
virtual ~DeclarativeTheme3D();
|
|
|
|
|
|
2014-05-12 07:06:27 +00:00
|
|
|
QQmlListProperty<QObject> themeChildren();
|
|
|
|
|
static void appendThemeChildren(QQmlListProperty<QObject> *list, QObject *element);
|
2013-12-09 08:49:49 +00:00
|
|
|
|
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();
|
|
|
|
|
|
2015-06-17 11:01:44 +00:00
|
|
|
Q_SIGNALS:
|
2013-12-03 06:43:55 +00:00
|
|
|
void singleHighlightGradientChanged(ColorGradient *gradient);
|
|
|
|
|
void multiHighlightGradientChanged(ColorGradient *gradient);
|
|
|
|
|
|
|
|
|
|
protected:
|
2014-01-13 08:07:04 +00:00
|
|
|
void handleTypeChange(Theme themeType);
|
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
|
|
|
};
|
|
|
|
|
|
2014-01-16 11:33:57 +00:00
|
|
|
QT_END_NAMESPACE_DATAVISUALIZATION
|
2013-12-03 06:43:55 +00:00
|
|
|
|
|
|
|
|
#endif
|