Skip to content
Snippets Groups Projects
QGCPalette.h 4.5 KiB
Newer Older
  • Learn to ignore specific revisions
  • /****************************************************************************
     *
     *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
     *
     * QGroundControl is licensed according to the terms in the file
     * COPYING.md in the root of the source code directory.
     *
     ****************************************************************************/
    
    
    #ifndef QGCPalette_h
    #define QGCPalette_h
    
    #include <QObject>
    #include <QColor>
    
    
    #define QGCColorThemes  2
    #define QGCColorGroups  2
    
    
    #define DECLARE_QGC_COLOR(name, lightEnabled, lightDisabled, darkEnabled, darkDisabled) \
        QColor QGCPalette::_##name[QGCColorThemes][QGCColorGroups] = { \
            { QColor(lightEnabled), QColor(lightDisabled) }, \
            { QColor(darkEnabled),  QColor(darkDisabled) }, \
        };
    
    #define DEFINE_QGC_COLOR(name, setName) \
        Q_PROPERTY(QColor name READ name WRITE setName NOTIFY paletteChanged) \
        QColor name() const { return _##name[_theme][_colorGroupEnabled  ? 1 : 0]; } \
        void setName(QColor& color) { _##name[_theme][_colorGroupEnabled ? 1 : 0] = color; _signalPaletteChangeToAll(); } \
        static QColor _##name[QGCColorThemes][QGCColorGroups];
    
    
    Don Gagne's avatar
    Don Gagne committed
    /*!
     QGCPalette is used in QML ui to expose color properties for the QGC palette. There are two
     separate palettes in QGC, light and dark. The light palette is for outdoor use and the dark
     palette is for indoor use. Each palette also has a set of different colors for enabled and
     disabled states.
    
     Usage:
    
            import QGroundControl.Palette 1.0
    
            Rectangle {
                anchors.fill:   parent
                color:          qgcPal.window
    
                QGCPalette { id: qgcPal: colorGroupEnabled: enabled }
            }
    */
    
    class QGCPalette : public QObject
    {
        Q_OBJECT
    
        Q_ENUMS(Theme)
    
        enum ColorGroup {
    
    Don Gagne's avatar
    Don Gagne committed
            Disabled = 0,
    
        enum Theme {
            Light = 0,
            Dark
        };
    
    
        Q_PROPERTY(Theme    globalTheme         READ globalTheme        WRITE setGlobalTheme        NOTIFY paletteChanged)
        Q_PROPERTY(bool     colorGroupEnabled   READ colorGroupEnabled  WRITE setColorGroupEnabled  NOTIFY paletteChanged)
    
        DEFINE_QGC_COLOR(window,                setWindow)
        DEFINE_QGC_COLOR(windowShade,           setWindowShade)
        DEFINE_QGC_COLOR(windowShadeDark,       setWindowShadeDark)
        DEFINE_QGC_COLOR(text,                  setText)
        DEFINE_QGC_COLOR(warningText,           setWarningText)
        DEFINE_QGC_COLOR(button,                setButton)
        DEFINE_QGC_COLOR(buttonText,            setButtonText)
        DEFINE_QGC_COLOR(buttonHighlight,       setButtonHighlight)
        DEFINE_QGC_COLOR(buttonHighlightText,   setButtonHighlightText)
        DEFINE_QGC_COLOR(primaryButton,         setPrimaryButton)
        DEFINE_QGC_COLOR(primaryButtonText,     setPrimaryButtonText)
        DEFINE_QGC_COLOR(textField,             setTextField)
        DEFINE_QGC_COLOR(textFieldText,         setTextFieldText)
        DEFINE_QGC_COLOR(mapButton,             setMapButton)
        DEFINE_QGC_COLOR(mapButtonHighlight,    setMapButtonHighlight)
        DEFINE_QGC_COLOR(mapWidgetBorderLight,  setMapWidgetBorderLight)
        DEFINE_QGC_COLOR(mapWidgetBorderDark,   setMapWidgetBorderDark)
        DEFINE_QGC_COLOR(brandingPurple,        setBrandingPurple)
        DEFINE_QGC_COLOR(brandingBlue,          setBrandingBlue)
        DEFINE_QGC_COLOR(colorGreen,            setColorGreen)
        DEFINE_QGC_COLOR(colorOrange,           setColorOrange)
        DEFINE_QGC_COLOR(colorRed,              setColorRed)
        DEFINE_QGC_COLOR(colorGrey,             setColorGrey)
        DEFINE_QGC_COLOR(colorBlue,             setColorBlue)
        DEFINE_QGC_COLOR(alertBackground,       setAlertBackground)
        DEFINE_QGC_COLOR(alertBorder,           setAlertBorder)
        DEFINE_QGC_COLOR(alertText,             setAlertText)
    
         QGCPalette(QObject* parent = NULL);
    
        ~QGCPalette();
        
    
        bool colorGroupEnabled      () const { return _colorGroupEnabled; }
        void setColorGroupEnabled   (bool enabled);
    
        static Theme    globalTheme     () { return _theme; }
        static void     setGlobalTheme  (Theme newTheme);
    
        void paletteChanged ();
    
        static void _signalPaletteChangeToAll   ();
        void        _signalPaletteChanged       ();
        void        _themeChanged               ();
    
        static Theme                _theme;             ///< There is a single theme for all palettes
        bool                        _colorGroupEnabled; ///< Currently selected ColorGroup. true: enabled, false: disabled
    
        static QList<QGCPalette*>   _paletteObjects;    ///< List of all active QGCPalette objects