2017-02-21 12:31:19 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
2021-07-26 23:47:26 +00:00
|
|
|
*
|
2023-11-29 00:34:08 +00:00
|
|
|
* Copyright (C) 2017-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2017-02-21 12:31:19 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <widgets/color_swatch.h>
|
2020-10-26 02:33:14 +00:00
|
|
|
#include <wx/dcmemory.h>
|
2017-02-21 12:31:19 +00:00
|
|
|
|
2023-09-23 03:17:53 +00:00
|
|
|
#include <dpi_scaling_common.h>
|
2020-12-17 16:43:46 +00:00
|
|
|
#include <dialogs/dialog_color_picker.h>
|
2017-03-01 15:40:27 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2020-12-17 16:43:46 +00:00
|
|
|
wxDEFINE_EVENT( COLOR_SWATCH_CHANGED, wxCommandEvent );
|
2017-02-21 12:31:19 +00:00
|
|
|
|
|
|
|
using KIGFX::COLOR4D;
|
|
|
|
|
|
|
|
|
2021-07-26 23:47:26 +00:00
|
|
|
wxBitmap COLOR_SWATCH::MakeBitmap( const COLOR4D& aColor, const COLOR4D& aBackground,
|
|
|
|
const wxSize& aSize, const wxSize& aCheckerboardSize,
|
|
|
|
const COLOR4D& aCheckerboardBackground )
|
2017-02-21 12:31:19 +00:00
|
|
|
{
|
2023-06-29 03:54:27 +00:00
|
|
|
wxBitmap bitmap( aSize );
|
|
|
|
wxMemoryDC iconDC;
|
|
|
|
|
|
|
|
iconDC.SelectObject( bitmap );
|
|
|
|
|
|
|
|
RenderToDC( &iconDC, aColor, aBackground, aSize, aCheckerboardSize, aCheckerboardBackground );
|
|
|
|
|
|
|
|
return bitmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void COLOR_SWATCH::RenderToDC( wxDC* aDC, const KIGFX::COLOR4D& aColor,
|
|
|
|
const KIGFX::COLOR4D& aBackground, const wxRect& aRect,
|
|
|
|
const wxSize& aCheckerboardSize,
|
|
|
|
const KIGFX::COLOR4D& aCheckerboardBackground )
|
|
|
|
{
|
2023-11-30 15:23:37 +00:00
|
|
|
wxColor fg = aColor.ToColour();
|
2017-02-21 12:31:19 +00:00
|
|
|
|
2023-11-30 15:23:37 +00:00
|
|
|
wxBrush brush;
|
2017-02-21 12:31:19 +00:00
|
|
|
brush.SetStyle( wxBRUSHSTYLE_SOLID );
|
|
|
|
|
2023-11-30 15:23:37 +00:00
|
|
|
aDC->SetPen( *wxTRANSPARENT_PEN );
|
|
|
|
|
2023-11-29 00:34:08 +00:00
|
|
|
// Draw a checkerboard
|
|
|
|
COLOR4D white;
|
|
|
|
COLOR4D black;
|
|
|
|
bool rowCycle;
|
|
|
|
|
2024-02-13 18:21:20 +00:00
|
|
|
if( aColor == COLOR4D::UNSPECIFIED )
|
2023-11-29 00:34:08 +00:00
|
|
|
{
|
2024-02-13 18:21:20 +00:00
|
|
|
if( aCheckerboardBackground.GetBrightness() > 0.4 )
|
|
|
|
{
|
|
|
|
white = COLOR4D::WHITE;
|
|
|
|
black = white.Darkened( 0.15 );
|
|
|
|
rowCycle = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
black = COLOR4D::BLACK;
|
|
|
|
white = black.Brightened( 0.15 );
|
|
|
|
rowCycle = false;
|
|
|
|
}
|
2023-11-29 00:34:08 +00:00
|
|
|
}
|
|
|
|
else
|
2020-08-04 23:50:12 +00:00
|
|
|
{
|
2024-02-13 18:21:20 +00:00
|
|
|
if( aBackground.GetBrightness() > 0.4 )
|
|
|
|
{
|
|
|
|
white = aBackground;
|
|
|
|
black = white.Darkened( 0.15 );
|
|
|
|
rowCycle = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
black = COLOR4D::BLACK;
|
|
|
|
white = black.Brightened( 0.15 );
|
|
|
|
rowCycle = false;
|
|
|
|
}
|
2023-11-29 00:34:08 +00:00
|
|
|
}
|
2020-08-18 12:03:03 +00:00
|
|
|
|
2023-11-29 00:34:08 +00:00
|
|
|
for( int x = aRect.GetLeft(); x <= aRect.GetRight(); x += aCheckerboardSize.x )
|
|
|
|
{
|
|
|
|
bool colCycle = rowCycle;
|
2020-08-17 12:55:56 +00:00
|
|
|
|
2023-11-29 00:34:08 +00:00
|
|
|
for( int y = aRect.GetTop(); y <= aRect.GetBottom(); y += aCheckerboardSize.y )
|
2020-08-17 12:55:56 +00:00
|
|
|
{
|
2023-11-30 15:23:37 +00:00
|
|
|
wxColor bg = colCycle ? black.ToColour() : white.ToColour();
|
|
|
|
|
|
|
|
// Blend fg bg with the checkerboard
|
|
|
|
unsigned char r = wxColor::AlphaBlend( fg.Red(), bg.Red(), aColor.a );
|
|
|
|
unsigned char g = wxColor::AlphaBlend( fg.Green(), bg.Green(), aColor.a );
|
|
|
|
unsigned char b = wxColor::AlphaBlend( fg.Blue(), bg.Blue(), aColor.a );
|
|
|
|
|
|
|
|
brush.SetColour( r, g, b );
|
2020-08-17 12:55:56 +00:00
|
|
|
|
2023-11-29 00:34:08 +00:00
|
|
|
aDC->SetBrush( brush );
|
|
|
|
aDC->DrawRectangle( x, y, aCheckerboardSize.x, aCheckerboardSize.y );
|
2020-08-17 12:55:56 +00:00
|
|
|
|
2023-11-29 00:34:08 +00:00
|
|
|
colCycle = !colCycle;
|
2020-08-17 12:55:56 +00:00
|
|
|
}
|
2023-11-29 00:34:08 +00:00
|
|
|
|
|
|
|
rowCycle = !rowCycle;
|
2020-08-04 23:50:12 +00:00
|
|
|
}
|
2017-02-21 12:31:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-07-26 23:47:26 +00:00
|
|
|
COLOR_SWATCH::COLOR_SWATCH( wxWindow* aParent, const COLOR4D& aColor, int aID,
|
|
|
|
const COLOR4D& aBackground, const COLOR4D& aDefault,
|
2023-07-16 21:37:26 +00:00
|
|
|
SWATCH_SIZE aSwatchSize, bool aTriggerWithSingleClick ) :
|
2020-03-08 02:18:45 +00:00
|
|
|
wxPanel( aParent, aID ),
|
|
|
|
m_color( aColor ),
|
|
|
|
m_background( aBackground ),
|
2020-10-15 01:57:36 +00:00
|
|
|
m_default( aDefault ),
|
2021-06-11 18:37:43 +00:00
|
|
|
m_userColors( nullptr ),
|
2021-06-12 10:31:36 +00:00
|
|
|
m_readOnly( false ),
|
|
|
|
m_supportsOpacity( true )
|
2017-02-21 12:31:19 +00:00
|
|
|
{
|
2023-01-17 04:14:38 +00:00
|
|
|
wxASSERT_MSG( aSwatchSize != SWATCH_EXPAND, wxS( "SWATCH_EXPAND not supported in COLOR_SWATCH" ) );
|
2020-08-20 01:11:22 +00:00
|
|
|
|
2020-08-17 12:55:56 +00:00
|
|
|
switch( aSwatchSize )
|
|
|
|
{
|
2022-07-01 18:37:55 +00:00
|
|
|
case SWATCH_MEDIUM: m_size = ConvertDialogToPixels( SWATCH_SIZE_MEDIUM_DU ); break;
|
|
|
|
case SWATCH_SMALL: m_size = ConvertDialogToPixels( SWATCH_SIZE_SMALL_DU ); break;
|
|
|
|
case SWATCH_LARGE: m_size = ConvertDialogToPixels( SWATCH_SIZE_LARGE_DU ); break;
|
|
|
|
case SWATCH_EXPAND: m_size = ConvertDialogToPixels( SWATCH_SIZE_LARGE_DU ); break;
|
2020-08-17 12:55:56 +00:00
|
|
|
}
|
|
|
|
|
2022-07-01 18:37:55 +00:00
|
|
|
m_checkerboardSize = ConvertDialogToPixels( CHECKERBOARD_SIZE_DU );
|
2020-08-18 12:03:03 +00:00
|
|
|
m_checkerboardBg = aParent->GetBackgroundColour();
|
2018-08-05 11:56:02 +00:00
|
|
|
|
2023-02-22 05:15:14 +00:00
|
|
|
#ifdef __WXMSW__
|
|
|
|
// These need additional scaling on Windows because of some discrepancy between pixel and
|
|
|
|
// content scaling that only affects certain widgets on Windows HiDPI. On other platforms, the
|
|
|
|
// value returned by ConvertDialogToPixels appears to be correct.
|
2023-09-23 03:17:53 +00:00
|
|
|
DPI_SCALING_COMMON dpi( nullptr, aParent );
|
2023-02-22 05:15:14 +00:00
|
|
|
|
|
|
|
m_size /= dpi.GetContentScaleFactor();
|
|
|
|
m_checkerboardSize /= dpi.GetContentScaleFactor();
|
|
|
|
#endif
|
|
|
|
|
2020-03-08 02:18:45 +00:00
|
|
|
auto sizer = new wxBoxSizer( wxHORIZONTAL );
|
|
|
|
SetSizer( sizer );
|
|
|
|
|
2020-08-17 12:55:56 +00:00
|
|
|
wxBitmap bitmap = COLOR_SWATCH::MakeBitmap( aColor, aBackground, m_size,
|
2020-08-18 12:03:03 +00:00
|
|
|
m_checkerboardSize, m_checkerboardBg );
|
2020-03-08 02:18:45 +00:00
|
|
|
m_swatch = new wxStaticBitmap( this, aID, bitmap );
|
2017-02-21 12:31:19 +00:00
|
|
|
|
2020-03-08 02:18:45 +00:00
|
|
|
sizer->Add( m_swatch, 0, 0 );
|
|
|
|
|
2023-07-16 21:37:26 +00:00
|
|
|
setupEvents( aTriggerWithSingleClick );
|
2017-02-21 12:31:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-07-26 23:47:26 +00:00
|
|
|
COLOR_SWATCH::COLOR_SWATCH( wxWindow* aParent, wxWindowID aID, const wxPoint& aPos,
|
|
|
|
const wxSize& aSize, long aStyle ) :
|
2020-10-15 01:57:36 +00:00
|
|
|
wxPanel( aParent, aID, aPos, aSize, aStyle ),
|
2021-06-11 18:37:43 +00:00
|
|
|
m_userColors( nullptr ),
|
2021-06-12 10:31:36 +00:00
|
|
|
m_readOnly( false ),
|
|
|
|
m_supportsOpacity( true )
|
2017-02-21 12:31:19 +00:00
|
|
|
{
|
2020-03-08 02:18:45 +00:00
|
|
|
if( aSize == wxDefaultSize )
|
2020-08-17 12:55:56 +00:00
|
|
|
m_size = ConvertDialogToPixels( SWATCH_SIZE_MEDIUM_DU );
|
2020-03-08 02:18:45 +00:00
|
|
|
else
|
|
|
|
m_size = aSize;
|
|
|
|
|
2020-08-17 12:55:56 +00:00
|
|
|
m_checkerboardSize = ConvertDialogToPixels( CHECKERBOARD_SIZE_DU );
|
2020-08-18 12:03:03 +00:00
|
|
|
m_checkerboardBg = aParent->GetBackgroundColour();
|
2020-08-17 12:55:56 +00:00
|
|
|
|
2020-03-08 02:18:45 +00:00
|
|
|
SetSize( m_size );
|
|
|
|
|
2017-02-21 12:31:19 +00:00
|
|
|
auto sizer = new wxBoxSizer( wxHORIZONTAL );
|
|
|
|
SetSizer( sizer );
|
|
|
|
|
2020-08-17 12:55:56 +00:00
|
|
|
wxBitmap bitmap = COLOR_SWATCH::MakeBitmap( COLOR4D::UNSPECIFIED, COLOR4D::UNSPECIFIED,
|
2020-08-18 12:03:03 +00:00
|
|
|
m_size, m_checkerboardSize, m_checkerboardBg );
|
2020-03-08 02:18:45 +00:00
|
|
|
m_swatch = new wxStaticBitmap( this, aID, bitmap );
|
2017-02-21 12:31:19 +00:00
|
|
|
|
2017-03-11 21:18:45 +00:00
|
|
|
sizer->Add( m_swatch, 0, 0 );
|
2017-02-21 12:31:19 +00:00
|
|
|
|
2023-07-16 21:37:26 +00:00
|
|
|
setupEvents( false );
|
2020-03-08 02:18:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-07-16 21:37:26 +00:00
|
|
|
void COLOR_SWATCH::setupEvents( bool aTriggerWithSingleClick )
|
2020-03-08 02:18:45 +00:00
|
|
|
{
|
2023-09-04 10:00:45 +00:00
|
|
|
wxWindow* topLevelParent = wxGetTopLevelParent( GetParent() );
|
2020-04-02 12:50:16 +00:00
|
|
|
|
|
|
|
if( topLevelParent && dynamic_cast<DIALOG_SHIM*>( topLevelParent ) )
|
|
|
|
{
|
|
|
|
m_swatch->Bind( wxEVT_LEFT_DOWN,
|
|
|
|
[this] ( wxMouseEvent& aEvt )
|
|
|
|
{
|
|
|
|
GetNewSwatchColor();
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// forward click to any other listeners, since we don't want them
|
|
|
|
m_swatch->Bind( wxEVT_LEFT_DOWN, &COLOR_SWATCH::rePostEvent, this );
|
|
|
|
|
|
|
|
// bind the events that trigger the dialog
|
|
|
|
m_swatch->Bind( wxEVT_LEFT_DCLICK,
|
|
|
|
[this] ( wxMouseEvent& aEvt )
|
|
|
|
{
|
|
|
|
GetNewSwatchColor();
|
|
|
|
} );
|
2023-07-16 21:37:26 +00:00
|
|
|
|
|
|
|
if( aTriggerWithSingleClick )
|
|
|
|
{
|
|
|
|
m_swatch->Bind( wxEVT_LEFT_UP,
|
|
|
|
[this] ( wxMouseEvent& aEvt )
|
|
|
|
{
|
|
|
|
GetNewSwatchColor();
|
|
|
|
} );
|
|
|
|
}
|
2020-04-02 12:50:16 +00:00
|
|
|
}
|
2020-03-08 02:18:45 +00:00
|
|
|
|
|
|
|
m_swatch->Bind( wxEVT_MIDDLE_DOWN,
|
|
|
|
[this] ( wxMouseEvent& aEvt )
|
|
|
|
{
|
|
|
|
GetNewSwatchColor();
|
|
|
|
} );
|
2020-05-06 17:55:07 +00:00
|
|
|
|
|
|
|
m_swatch->Bind( wxEVT_RIGHT_DOWN, &COLOR_SWATCH::rePostEvent, this );
|
2017-02-21 12:31:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-07 21:40:56 +00:00
|
|
|
void COLOR_SWATCH::rePostEvent( wxEvent& aEvent )
|
2017-02-21 12:31:19 +00:00
|
|
|
{
|
2020-11-07 21:40:56 +00:00
|
|
|
wxPostEvent( this, aEvent );
|
2017-02-21 12:31:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void sendSwatchChangeEvent( COLOR_SWATCH& aSender )
|
|
|
|
{
|
2021-12-16 18:04:59 +00:00
|
|
|
wxCommandEvent changeEvt( COLOR_SWATCH_CHANGED, aSender.GetId() );
|
2017-02-21 12:31:19 +00:00
|
|
|
|
|
|
|
// use this class as the object (alternative might be to
|
|
|
|
// set a custom event class but that's more work)
|
|
|
|
changeEvt.SetEventObject( &aSender );
|
|
|
|
|
|
|
|
wxPostEvent( &aSender, changeEvt );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-07-26 23:47:26 +00:00
|
|
|
void COLOR_SWATCH::SetSwatchColor( const COLOR4D& aColor, bool aSendEvent )
|
2017-02-21 12:31:19 +00:00
|
|
|
{
|
|
|
|
m_color = aColor;
|
|
|
|
|
2020-08-18 12:03:03 +00:00
|
|
|
wxBitmap bm = MakeBitmap( m_color, m_background, m_size, m_checkerboardSize, m_checkerboardBg );
|
2017-02-21 12:31:19 +00:00
|
|
|
m_swatch->SetBitmap( bm );
|
|
|
|
|
2020-11-07 21:40:56 +00:00
|
|
|
if( aSendEvent )
|
2017-02-21 12:31:19 +00:00
|
|
|
sendSwatchChangeEvent( *this );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-07-26 23:47:26 +00:00
|
|
|
void COLOR_SWATCH::SetDefaultColor( const COLOR4D& aColor )
|
2020-07-30 01:16:07 +00:00
|
|
|
{
|
|
|
|
m_default = aColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-07-26 23:47:26 +00:00
|
|
|
void COLOR_SWATCH::SetSwatchBackground( const COLOR4D& aBackground )
|
2018-01-03 22:38:25 +00:00
|
|
|
{
|
|
|
|
m_background = aBackground;
|
2020-08-18 12:03:03 +00:00
|
|
|
wxBitmap bm = MakeBitmap( m_color, m_background, m_size, m_checkerboardSize, m_checkerboardBg );
|
2018-01-03 22:38:25 +00:00
|
|
|
m_swatch->SetBitmap( bm );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-21 12:31:19 +00:00
|
|
|
COLOR4D COLOR_SWATCH::GetSwatchColor() const
|
|
|
|
{
|
|
|
|
return m_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void COLOR_SWATCH::GetNewSwatchColor()
|
|
|
|
{
|
2020-10-15 01:57:36 +00:00
|
|
|
if( m_readOnly )
|
|
|
|
{
|
|
|
|
if( m_readOnlyCallback )
|
|
|
|
m_readOnlyCallback();
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-11 09:17:52 +00:00
|
|
|
DIALOG_COLOR_PICKER dialog( ::wxGetTopLevelParent( this ), m_color, m_supportsOpacity,
|
|
|
|
m_userColors, m_default );
|
2017-02-21 12:31:19 +00:00
|
|
|
|
2019-05-27 16:16:54 +00:00
|
|
|
if( dialog.ShowModal() == wxID_OK )
|
2020-07-11 17:42:00 +00:00
|
|
|
{
|
2020-08-18 12:03:03 +00:00
|
|
|
COLOR4D newColor = dialog.GetColor();
|
2017-02-21 12:31:19 +00:00
|
|
|
|
2020-07-11 17:42:00 +00:00
|
|
|
if( newColor != COLOR4D::UNSPECIFIED || m_default == COLOR4D::UNSPECIFIED )
|
|
|
|
{
|
|
|
|
m_color = newColor;
|
2017-02-21 12:31:19 +00:00
|
|
|
|
2020-08-18 12:03:03 +00:00
|
|
|
wxBitmap bm = MakeBitmap( newColor, m_background, m_size, m_checkerboardSize,
|
|
|
|
m_checkerboardBg );
|
2020-07-11 17:42:00 +00:00
|
|
|
m_swatch->SetBitmap( bm );
|
2017-02-21 12:31:19 +00:00
|
|
|
|
2020-07-11 17:42:00 +00:00
|
|
|
sendSwatchChangeEvent( *this );
|
|
|
|
}
|
2017-02-21 12:31:19 +00:00
|
|
|
}
|
|
|
|
}
|
2022-11-06 00:34:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
void COLOR_SWATCH::OnDarkModeToggle()
|
|
|
|
{
|
|
|
|
m_checkerboardBg = m_parent->GetBackgroundColour();
|
|
|
|
wxBitmap bm = MakeBitmap( m_color, m_background, m_size, m_checkerboardSize, m_checkerboardBg );
|
|
|
|
m_swatch->SetBitmap( bm );
|
2023-02-22 05:15:14 +00:00
|
|
|
}
|