KiCad PCB EDA Suite
Loading...
Searching...
No Matches
color_swatch.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20#pragma once
21
22#include <wx/bitmap.h>
23#include <wx/gdicmn.h>
24#include <wx/panel.h>
25#include <wx/statbmp.h>
26#include <wx/window.h>
27
28#include <functional>
29
30#include <gal/color4d.h>
32
40
41
42const static wxSize SWATCH_SIZE_SMALL_DU( 8, 6 );
43const static wxSize SWATCH_SIZE_MEDIUM_DU( 24, 10 );
44const static wxSize SWATCH_SIZE_LARGE_DU( 24, 16 );
45const static wxSize CHECKERBOARD_SIZE_DU( 3, 3 );
46
47
51class COLOR_SWATCH: public wxPanel
52{
53public:
54
62 COLOR_SWATCH( wxWindow* aParent, const KIGFX::COLOR4D& aColor, int aID,
63 const KIGFX::COLOR4D& aBackground, const KIGFX::COLOR4D& aDefault,
64 SWATCH_SIZE aSwatchType, bool aTriggerWithSingleClick = false );
65
69 COLOR_SWATCH( wxWindow *aParent, wxWindowID aId, const wxPoint &aPos = wxDefaultPosition,
70 const wxSize &aSize = wxDefaultSize, long aStyle = 0 );
71
75 void SetSwatchColor( const KIGFX::COLOR4D& aColor, bool aSendEvent );
76
80 void SetDefaultColor( const KIGFX::COLOR4D& aColor );
81
85 void SetSwatchBackground( const KIGFX::COLOR4D& aBackground );
86
91
97 void SetWindowID( wxWindowID aId )
98 {
99 SetId( aId );
100 m_swatch->SetId( aId );
101 }
102
108 void GetNewSwatchColor();
109
110 void SetReadOnly( bool aReadOnly = true ) { m_readOnly = aReadOnly; }
111 bool IsReadOnly() const { return m_readOnly; }
112
113 void SetSupportsOpacity( bool aSupportsOpacity ) { m_supportsOpacity = aSupportsOpacity; }
114
116 void SetReadOnlyCallback( std::function<void()> aCallback ) { m_readOnlyCallback = aCallback; }
117
119 void OnDarkModeToggle();
120
121 static wxBitmap MakeBitmap( const KIGFX::COLOR4D& aColor, const KIGFX::COLOR4D& aBackground,
122 const wxSize& aSize, const wxSize& aCheckerboardSize,
123 const KIGFX::COLOR4D& aCheckerboardBackground,
124 const std::vector<int>& aMargins = { 0, 0, 0, 0 } );
125
126 static void RenderToDC( wxDC* aDC, const KIGFX::COLOR4D& aColor, const KIGFX::COLOR4D& aBackground,
127 const wxRect& aRect, const wxSize& aCheckerboardSize,
128 const KIGFX::COLOR4D& aCheckerboardBackground,
129 const std::vector<int>& aMargins = { 0, 0, 0, 0 } );
130
131private:
132 void setupEvents( bool aTriggerWithSingleClick );
133
134 wxBitmap makeBitmap();
135
139 void rePostEvent( wxEvent& aEvent );
140
145 void onMouseEvent( wxEvent& aEvent );
146
151
152 wxStaticBitmap* m_swatch;
153
154 wxSize m_size;
157
160 std::function<void()> m_readOnlyCallback;
161
164};
165
166
170wxDECLARE_EVENT( COLOR_SWATCH_CHANGED, wxCommandEvent );
void SetSwatchColor(const KIGFX::COLOR4D &aColor, bool aSendEvent)
Set the current swatch color directly.
wxSize m_checkerboardSize
KIGFX::COLOR4D m_checkerboardBg
KIGFX::COLOR4D m_default
bool m_supportsOpacity
If opacity is not supported the color chooser dialog will be displayed without it.
wxStaticBitmap * m_swatch
static void RenderToDC(wxDC *aDC, const KIGFX::COLOR4D &aColor, const KIGFX::COLOR4D &aBackground, const wxRect &aRect, const wxSize &aCheckerboardSize, const KIGFX::COLOR4D &aCheckerboardBackground, const std::vector< int > &aMargins={ 0, 0, 0, 0 })
void OnDarkModeToggle()
Respond to a change in the OS's DarkMode setting.
void GetNewSwatchColor()
Prompt for a new colour, using the colour picker dialog.
static wxBitmap MakeBitmap(const KIGFX::COLOR4D &aColor, const KIGFX::COLOR4D &aBackground, const wxSize &aSize, const wxSize &aCheckerboardSize, const KIGFX::COLOR4D &aCheckerboardBackground, const std::vector< int > &aMargins={ 0, 0, 0, 0 })
void SetSupportsOpacity(bool aSupportsOpacity)
bool m_readOnly
A read-only swatch won't show the color chooser dialog but otherwise works normally.
KIGFX::COLOR4D GetSwatchColor() const
wxBitmap makeBitmap()
void onMouseEvent(wxEvent &aEvent)
Handle mouse events on the swatch, and trigger the color picker dialog if appropriate.
void SetReadOnlyCallback(std::function< void()> aCallback)
Register a handler for when the user tries to interact with a read-only swatch.
bool IsReadOnly() const
COLOR_SWATCH(wxWindow *aParent, const KIGFX::COLOR4D &aColor, int aID, const KIGFX::COLOR4D &aBackground, const KIGFX::COLOR4D &aDefault, SWATCH_SIZE aSwatchType, bool aTriggerWithSingleClick=false)
Construct a COLOR_SWATCH.
KIGFX::COLOR4D m_color
KIGFX::COLOR4D m_background
void setupEvents(bool aTriggerWithSingleClick)
void SetReadOnly(bool aReadOnly=true)
std::function< void()> m_readOnlyCallback
void SetDefaultColor(const KIGFX::COLOR4D &aColor)
Sets the color that will be chosen with the "Reset to Default" button in the chooser.
void SetSwatchBackground(const KIGFX::COLOR4D &aBackground)
Set the swatch background color.
CUSTOM_COLORS_LIST * m_userColors
void rePostEvent(wxEvent &aEvent)
Pass unwanted events on to listeners of this object.
void SetWindowID(wxWindowID aId)
Update the window ID of this control and its children.
A color representation with 4 components: red, green, blue, alpha.
Definition color4d.h:101
static const wxSize SWATCH_SIZE_LARGE_DU(24, 16)
static const wxSize SWATCH_SIZE_MEDIUM_DU(24, 10)
static const wxSize CHECKERBOARD_SIZE_DU(3, 3)
static const wxSize SWATCH_SIZE_SMALL_DU(8, 6)
SWATCH_SIZE
@ SWATCH_MEDIUM
@ SWATCH_LARGE
@ SWATCH_EXPAND
@ SWATCH_SMALL
wxDECLARE_EVENT(COLOR_SWATCH_CHANGED, wxCommandEvent)
Event signaling a swatch has changed color.
std::vector< CUSTOM_COLOR_ITEM > CUSTOM_COLORS_LIST