1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
|
/*
* This program source code file is part of KiCad, a free EDA CAD application.
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
*
* 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 <kiplatform/ui.h>
#include <widgets/indicator_icon.h>
#include <wx/event.h>
#include <wx/settings.h>
#include <wx/sizer.h>
#include <wx/statbmp.h>
INDICATOR_ICON::INDICATOR_ICON( wxWindow* aParent, ICON_PROVIDER& aIconProvider,
ICON_ID aInitialIcon, int aID ):
wxPanel( aParent, aID ),
m_iconProvider( aIconProvider ),
m_currentId( aInitialIcon )
{
wxBoxSizer* sizer = new wxBoxSizer( wxHORIZONTAL );
SetSizer( sizer );
const wxBitmap& icon = m_iconProvider.GetIndicatorIcon( m_currentId );
m_bitmap = new wxStaticBitmap( this, aID, icon, wxDefaultPosition, icon.GetLogicalSize() );
sizer->Add( m_bitmap, 0, 0 );
auto evtSkipper = [this] ( wxEvent& aEvent )
{
wxPostEvent( this, aEvent );
};
m_bitmap->Bind( wxEVT_LEFT_DOWN, evtSkipper );
}
void INDICATOR_ICON::SetIndicatorState( ICON_ID aIconId )
{
if( aIconId == m_currentId )
return;
m_currentId = aIconId;
const wxBitmap& icon = m_iconProvider.GetIndicatorIcon( m_currentId );
m_bitmap->SetBitmap( icon );
m_bitmap->SetSize( icon.GetLogicalSize() );
}
INDICATOR_ICON::ICON_ID INDICATOR_ICON::GetIndicatorState() const
{
return m_currentId;
}
wxImage createBlankImage( int size )
{
wxImage image( size, size );
image.InitAlpha();
for( int y = 0; y < size; ++y )
{
for( int x = 0; x < size; ++x )
image.SetAlpha( x, y, wxIMAGE_ALPHA_TRANSPARENT );
}
#ifdef __WXMSW__
// wxWidgets on Windows chokes on an empty fully transparent bitmap and draws it
// as a black box
image.SetRGB( size / 2, size / 2, 128, 128, 128 );
image.SetAlpha( size / 2, size / 2, 10 );
#endif
return image;
}
// Create an arrow icon of a particular size, colour and direction. 0 points up, 1 points
// right, and so forth.
wxBitmap createArrow( int size, double aScaleFactor, int aDirection, wxColour aColour )
{
wxImage image = createBlankImage( size );
int startX = size / 2 - 1;
int len = 1;
int startY = aDirection % 2;
for( int y = startY; y < startY + ( size / 2 ); ++y )
{
for( int x = startX; x < startX + len; ++x )
{
image.SetRGB( x, y, aColour.Red(), aColour.Green(), aColour.Blue() );
image.SetAlpha( x, y, wxIMAGE_ALPHA_OPAQUE );
}
// Next row will start one pixel back and be two pixels longer
startX -= 1;
len += 2;
}
for( int i = 0; i < aDirection; ++i )
image = image.Rotate90();
wxBitmap bmp( image );
bmp.SetScaleFactor( aScaleFactor );
return bmp;
}
// Create a diamond icon of a particular size and colour.
wxBitmap createDiamond( int size, double aScaleFactor, wxColour aColour )
{
wxImage image = createBlankImage( size );
int startX = size / 2 - 1;
int len = 1;
int startY = 2;
for( int y = startY; y < size && len > 0; ++y )
{
for( int x = startX; x < startX + len; ++x )
{
image.SetRGB( x, y, aColour.Red(), aColour.Green(), aColour.Blue() );
image.SetAlpha( x, y, wxIMAGE_ALPHA_OPAQUE );
}
// Next row will start one pixel back and be two pixels longer
if( y < ( size / 2) - 1 )
{
startX -= 1;
len += 2;
}
else
{
startX += 1;
len -= 2;
}
}
wxBitmap bmp( image );
bmp.SetScaleFactor( aScaleFactor );
return bmp;
}
ROW_ICON_PROVIDER::ROW_ICON_PROVIDER( int aSizeDIP, wxWindow* aWindow )
{
auto toPhys =
[&]( int dip )
{
return aWindow->ToPhys( aWindow->FromDIP( dip ) );
};
double scale = aWindow->GetDPIScaleFactor();
wxColour shadowColor = wxSystemSettings().GetColour( wxSYS_COLOUR_3DDKSHADOW );
m_blankBitmap = wxBitmap( createBlankImage( toPhys( aSizeDIP ) ) );
m_blankBitmap.SetScaleFactor( scale );
m_rightArrowBitmap = createArrow( toPhys( aSizeDIP ), scale, 1, wxColour( 64, 72, 255 ) );
m_upArrowBitmap = createArrow( toPhys( aSizeDIP - 2 ), scale, 0, shadowColor );
m_downArrowBitmap = createArrow( toPhys( aSizeDIP - 2 ), scale, 2, shadowColor );
m_dotBitmap = createDiamond( toPhys( aSizeDIP ), scale, wxColour( 128, 144, 255 ) );
}
const wxBitmap& ROW_ICON_PROVIDER::GetIndicatorIcon( INDICATOR_ICON::ICON_ID aId ) const
{
switch( aId )
{
case STATE::UP: return m_upArrowBitmap;
case STATE::DOWN: return m_downArrowBitmap;
case STATE::ON: return m_rightArrowBitmap;
case STATE::DIMMED: return m_dotBitmap;
case STATE::OFF: return m_blankBitmap;
default: return m_blankBitmap;
}
}
|