2011-08-24 15:30:41 +00:00
|
|
|
/*
|
2011-09-30 18:15:37 +00:00
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
2011-08-24 15:30:41 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2011 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
2021-03-08 02:59:07 +00:00
|
|
|
* Copyright (C) 2017-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-08-24 15:30:41 +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 <wx/image.h>
|
|
|
|
#include <wx/bitmap.h>
|
2021-06-03 05:46:04 +00:00
|
|
|
#include <wx/gdicmn.h>
|
2011-08-24 15:30:41 +00:00
|
|
|
#include <wx/mstream.h>
|
2017-03-02 13:46:18 +00:00
|
|
|
#include <wx/menu.h>
|
|
|
|
#include <wx/menuitem.h>
|
2018-01-08 04:05:03 +00:00
|
|
|
#include <wx/aui/auibar.h>
|
2020-10-18 11:31:07 +00:00
|
|
|
#include <wx/dcclient.h>
|
|
|
|
#include <wx/dcmemory.h>
|
2018-01-08 04:05:03 +00:00
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
#include <mutex>
|
|
|
|
#include <unordered_map>
|
2011-08-24 15:30:41 +00:00
|
|
|
|
2021-03-08 02:59:07 +00:00
|
|
|
#include <asset_archive.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <bitmaps.h>
|
2021-03-08 02:59:07 +00:00
|
|
|
#include <bitmap_store.h>
|
|
|
|
#include <bitmaps/bitmap_opaque.h> // for pcb_calculator compatibility shim
|
2017-03-02 13:46:18 +00:00
|
|
|
#include <pgm_base.h>
|
2018-01-29 15:39:40 +00:00
|
|
|
#include <eda_base_frame.h>
|
2019-06-08 22:14:57 +00:00
|
|
|
#include <eda_draw_frame.h>
|
2021-03-08 02:59:07 +00:00
|
|
|
#include <paths.h>
|
2023-02-22 05:15:14 +00:00
|
|
|
#include <kiplatform/ui.h>
|
2018-01-08 04:05:03 +00:00
|
|
|
|
|
|
|
|
2021-03-08 02:59:07 +00:00
|
|
|
static std::unique_ptr<BITMAP_STORE> s_BitmapStore;
|
|
|
|
|
|
|
|
|
2018-01-08 04:05:03 +00:00
|
|
|
struct SCALED_BITMAP_ID {
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS bitmap;
|
2018-01-08 04:05:03 +00:00
|
|
|
int scale;
|
|
|
|
|
|
|
|
bool operator==( SCALED_BITMAP_ID const& other ) const noexcept
|
|
|
|
{
|
|
|
|
return bitmap == other.bitmap && scale == other.scale;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
namespace std {
|
|
|
|
template<> struct hash<SCALED_BITMAP_ID>
|
|
|
|
{
|
|
|
|
typedef SCALED_BITMAP_ID argument_type;
|
|
|
|
typedef std::size_t result_type;
|
|
|
|
|
|
|
|
result_type operator()( argument_type const& id ) const noexcept
|
|
|
|
{
|
|
|
|
static const bool sz64 = sizeof( uintptr_t ) == 8;
|
|
|
|
static const size_t mask = sz64 ? 0xF000000000000000uLL : 0xF0000000uL;
|
2018-05-28 03:15:03 +00:00
|
|
|
static const size_t offset = sz64 ? 60 : 28;
|
2018-01-08 04:05:03 +00:00
|
|
|
|
|
|
|
// The hash only needs to be fast and simple, not necessarily accurate - a collision
|
2021-03-08 02:59:07 +00:00
|
|
|
// only makes things slower, not broken. BITMAPS is a pointer, so the most
|
2018-01-08 04:05:03 +00:00
|
|
|
// significant several bits are generally going to be the same for all. Just convert
|
|
|
|
// it to an integer and stuff the scale factor into those bits.
|
|
|
|
return
|
|
|
|
( (uintptr_t)( id.bitmap ) & ~mask ) |
|
|
|
|
( ( (uintptr_t)( id.scale ) & 0xF ) << offset );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2011-08-24 15:30:41 +00:00
|
|
|
|
2021-03-09 22:47:24 +00:00
|
|
|
static std::unordered_map<SCALED_BITMAP_ID, wxBitmap> s_ScaledBitmapCache;
|
|
|
|
|
|
|
|
static std::mutex s_BitmapCacheMutex;
|
|
|
|
|
|
|
|
|
|
|
|
BITMAP_STORE* GetBitmapStore()
|
2021-03-08 02:59:07 +00:00
|
|
|
{
|
|
|
|
if( !s_BitmapStore )
|
|
|
|
{
|
|
|
|
wxFileName path( PATHS::GetStockDataPath() + wxT( "/resources" ), wxT( "images.zip" ) );
|
|
|
|
s_BitmapStore = std::make_unique<BITMAP_STORE>();
|
|
|
|
}
|
|
|
|
|
|
|
|
return s_BitmapStore.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-04-19 21:18:17 +00:00
|
|
|
wxBitmap KiBitmap( BITMAPS aBitmap, int aHeightTag )
|
2021-03-08 02:59:07 +00:00
|
|
|
{
|
2021-04-19 21:18:17 +00:00
|
|
|
return GetBitmapStore()->GetBitmap( aBitmap, aHeightTag );
|
2021-03-08 02:59:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// TODO: Remove this once pcb_calculator images are moved into the main bitmap system
|
|
|
|
wxBitmap KiBitmap( const BITMAP_OPAQUE* aBitmap )
|
2011-08-24 15:30:41 +00:00
|
|
|
{
|
2011-08-29 03:04:59 +00:00
|
|
|
wxMemoryInputStream is( aBitmap->png, aBitmap->byteCount );
|
2017-03-02 13:46:18 +00:00
|
|
|
wxImage image( is, wxBITMAP_TYPE_PNG );
|
|
|
|
wxBitmap bitmap( image );
|
2011-08-24 15:30:41 +00:00
|
|
|
|
2017-03-02 13:46:18 +00:00
|
|
|
return bitmap;
|
2011-08-24 15:30:41 +00:00
|
|
|
}
|
|
|
|
|
2017-03-02 13:46:18 +00:00
|
|
|
|
2018-01-08 04:05:03 +00:00
|
|
|
int KiIconScale( wxWindow* aWindow )
|
|
|
|
{
|
2022-10-30 22:33:53 +00:00
|
|
|
#if defined( __WXMSW__) && wxCHECK_VERSION( 3, 1, 6 )
|
|
|
|
// Basically don't try and scale within kicad and let wx do its thing
|
|
|
|
// with wx introducing bitmap bundles, it will auto scale automatically with dpi
|
|
|
|
// the issue is, none of the scaling factors have any tie to system scaling
|
|
|
|
// this means wx is actually going to scale again causing even more distorted icons
|
|
|
|
return 4;
|
|
|
|
#else
|
2018-01-08 04:05:03 +00:00
|
|
|
const int vert_size = aWindow->ConvertDialogToPixels( wxSize( 0, 8 ) ).y;
|
|
|
|
|
|
|
|
// Autoscale won't exceed unity until the system has quite high resolution,
|
|
|
|
// because we don't want the icons to look obviously scaled on a system
|
|
|
|
// where it's easy to see it.
|
|
|
|
|
|
|
|
if( vert_size > 34 ) return 8;
|
|
|
|
else if( vert_size > 29 ) return 7;
|
|
|
|
else if( vert_size > 24 ) return 6;
|
|
|
|
else return 4;
|
2022-10-30 22:33:53 +00:00
|
|
|
#endif
|
2018-01-08 04:05:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-24 01:01:23 +00:00
|
|
|
static int get_scale_factor( wxWindow* aWindow )
|
2018-01-08 04:05:03 +00:00
|
|
|
{
|
2020-01-13 01:44:19 +00:00
|
|
|
int requested_scale = Pgm().GetCommonSettings()->m_Appearance.icon_scale;
|
2018-01-08 04:05:03 +00:00
|
|
|
|
|
|
|
if( requested_scale > 0 )
|
|
|
|
return requested_scale;
|
|
|
|
else
|
|
|
|
return KiIconScale( aWindow );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-09-11 19:06:51 +00:00
|
|
|
wxBitmap KiScaledBitmap( BITMAPS aBitmap, wxWindow* aWindow, int aHeight, bool aQuantized )
|
2018-01-08 04:05:03 +00:00
|
|
|
{
|
|
|
|
// Bitmap conversions are cached because they can be slow.
|
2021-09-11 19:06:51 +00:00
|
|
|
int scale = get_scale_factor( aWindow );
|
|
|
|
|
|
|
|
if( aQuantized )
|
|
|
|
scale = KiROUND( (double) scale / 4.0 ) * 4;
|
2018-01-08 04:05:03 +00:00
|
|
|
|
2021-03-08 02:59:07 +00:00
|
|
|
SCALED_BITMAP_ID id = { static_cast<BITMAPS>( aBitmap ), scale };
|
2018-01-08 04:05:03 +00:00
|
|
|
|
2021-03-09 22:47:24 +00:00
|
|
|
std::lock_guard<std::mutex> guard( s_BitmapCacheMutex );
|
|
|
|
auto it = s_ScaledBitmapCache.find( id );
|
2018-01-08 04:05:03 +00:00
|
|
|
|
2021-03-09 22:47:24 +00:00
|
|
|
if( it != s_ScaledBitmapCache.end() )
|
2018-01-08 04:05:03 +00:00
|
|
|
{
|
|
|
|
return it->second;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-03-09 22:47:24 +00:00
|
|
|
wxBitmap bitmap = GetBitmapStore()->GetBitmapScaled( aBitmap, scale, aHeight );
|
|
|
|
return s_ScaledBitmapCache.emplace( id, bitmap ).first->second;
|
2018-01-08 04:05:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-03-09 22:47:24 +00:00
|
|
|
void ClearScaledBitmapCache()
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> guard( s_BitmapCacheMutex );
|
|
|
|
s_ScaledBitmapCache.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-24 01:01:23 +00:00
|
|
|
wxBitmap KiScaledBitmap( const wxBitmap& aBitmap, wxWindow* aWindow )
|
2018-08-15 09:26:32 +00:00
|
|
|
{
|
|
|
|
const int scale = get_scale_factor( aWindow );
|
|
|
|
|
2021-03-09 22:47:24 +00:00
|
|
|
if( scale == 4 )
|
2018-08-15 09:26:32 +00:00
|
|
|
{
|
|
|
|
return wxBitmap( aBitmap );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wxImage image = aBitmap.ConvertToImage();
|
|
|
|
image.Rescale( scale * image.GetWidth() / 4, scale * image.GetHeight() / 4,
|
|
|
|
wxIMAGE_QUALITY_BILINEAR );
|
|
|
|
|
|
|
|
return wxBitmap( image );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-03-08 02:59:07 +00:00
|
|
|
wxBitmap* KiBitmapNew( BITMAPS aBitmap )
|
2011-08-28 20:02:27 +00:00
|
|
|
{
|
2021-03-09 22:47:24 +00:00
|
|
|
wxBitmap* bitmap = new wxBitmap( GetBitmapStore()->GetBitmap( aBitmap ) );
|
2011-08-28 20:02:27 +00:00
|
|
|
|
2017-03-02 13:46:18 +00:00
|
|
|
return bitmap;
|
2011-08-28 20:02:27 +00:00
|
|
|
}
|
2017-03-02 13:46:18 +00:00
|
|
|
|
2018-02-14 08:08:29 +00:00
|
|
|
|
2018-11-09 13:32:13 +00:00
|
|
|
bool SaveCanvasImageToFile( EDA_DRAW_FRAME* aFrame, const wxString& aFileName,
|
2021-06-03 05:46:04 +00:00
|
|
|
BITMAP_TYPE aBitmapType )
|
2018-11-09 13:32:13 +00:00
|
|
|
{
|
|
|
|
wxCHECK( aFrame != nullptr, false );
|
|
|
|
|
|
|
|
bool retv = true;
|
|
|
|
|
|
|
|
// Make a screen copy of the canvas:
|
2019-06-13 17:28:55 +00:00
|
|
|
wxSize image_size = aFrame->GetCanvas()->GetClientSize();
|
2018-11-09 13:32:13 +00:00
|
|
|
|
2019-06-13 17:28:55 +00:00
|
|
|
wxClientDC dc( aFrame->GetCanvas() );
|
2018-11-09 13:32:13 +00:00
|
|
|
wxBitmap bitmap( image_size.x, image_size.y );
|
|
|
|
wxMemoryDC memdc;
|
|
|
|
|
|
|
|
memdc.SelectObject( bitmap );
|
|
|
|
memdc.Blit( 0, 0, image_size.x, image_size.y, &dc, 0, 0 );
|
|
|
|
memdc.SelectObject( wxNullBitmap );
|
|
|
|
|
|
|
|
wxImage image = bitmap.ConvertToImage();
|
|
|
|
|
2021-06-03 05:46:04 +00:00
|
|
|
wxBitmapType type = wxBITMAP_TYPE_PNG;
|
|
|
|
switch( aBitmapType )
|
|
|
|
{
|
|
|
|
case BITMAP_TYPE::PNG: type = wxBITMAP_TYPE_PNG; break;
|
|
|
|
case BITMAP_TYPE::BMP: type = wxBITMAP_TYPE_BMP; break;
|
|
|
|
case BITMAP_TYPE::JPG: type = wxBITMAP_TYPE_JPEG; break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !image.SaveFile( aFileName, type ) )
|
2018-11-09 13:32:13 +00:00
|
|
|
retv = false;
|
|
|
|
|
|
|
|
image.Destroy();
|
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-04-14 13:31:32 +00:00
|
|
|
void AddBitmapToMenuItem( wxMenuItem* aMenu, const wxBitmap& aImage )
|
2017-03-02 13:46:18 +00:00
|
|
|
{
|
2021-04-05 13:24:57 +00:00
|
|
|
// Retrieve the global application show icon option:
|
2020-01-13 01:44:19 +00:00
|
|
|
bool useImagesInMenus = Pgm().GetCommonSettings()->m_Appearance.use_icons_in_menus;
|
2017-03-02 13:46:18 +00:00
|
|
|
|
2019-04-14 13:31:32 +00:00
|
|
|
wxItemKind menu_type = aMenu->GetKind();
|
|
|
|
|
2020-12-09 00:14:06 +00:00
|
|
|
if( useImagesInMenus && menu_type != wxITEM_CHECK && menu_type != wxITEM_RADIO )
|
2017-03-02 13:46:18 +00:00
|
|
|
{
|
2020-12-09 00:14:06 +00:00
|
|
|
aMenu->SetBitmap( aImage );
|
2017-03-02 13:46:18 +00:00
|
|
|
}
|
2019-04-14 13:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
wxMenuItem* AddMenuItem( wxMenu* aMenu, int aId, const wxString& aText,
|
|
|
|
const wxBitmap& aImage, wxItemKind aType = wxITEM_NORMAL )
|
|
|
|
{
|
|
|
|
wxMenuItem* item = new wxMenuItem( aMenu, aId, aText, wxEmptyString, aType );
|
|
|
|
AddBitmapToMenuItem( item, aImage );
|
2017-03-02 13:46:18 +00:00
|
|
|
|
|
|
|
aMenu->Append( item );
|
|
|
|
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
2018-02-14 08:08:29 +00:00
|
|
|
|
2017-03-02 13:46:18 +00:00
|
|
|
wxMenuItem* AddMenuItem( wxMenu* aMenu, int aId, const wxString& aText,
|
|
|
|
const wxString& aHelpText, const wxBitmap& aImage,
|
|
|
|
wxItemKind aType = wxITEM_NORMAL )
|
|
|
|
{
|
2019-04-14 13:31:32 +00:00
|
|
|
wxMenuItem* item = new wxMenuItem( aMenu, aId, aText, aHelpText, aType );
|
|
|
|
AddBitmapToMenuItem( item, aImage );
|
2017-03-02 13:46:18 +00:00
|
|
|
|
|
|
|
aMenu->Append( item );
|
|
|
|
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
2018-02-14 08:08:29 +00:00
|
|
|
|
2017-03-02 13:46:18 +00:00
|
|
|
wxMenuItem* AddMenuItem( wxMenu* aMenu, wxMenu* aSubMenu, int aId,
|
|
|
|
const wxString& aText, const wxBitmap& aImage )
|
|
|
|
{
|
2019-04-14 13:31:32 +00:00
|
|
|
wxMenuItem* item = new wxMenuItem( aMenu, aId, aText );
|
2017-03-02 13:46:18 +00:00
|
|
|
item->SetSubMenu( aSubMenu );
|
2019-04-14 13:31:32 +00:00
|
|
|
AddBitmapToMenuItem( item, aImage );
|
2017-03-02 13:46:18 +00:00
|
|
|
|
|
|
|
aMenu->Append( item );
|
|
|
|
|
|
|
|
return item;
|
2017-11-02 20:41:29 +00:00
|
|
|
}
|
2017-03-02 13:46:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
wxMenuItem* AddMenuItem( wxMenu* aMenu, wxMenu* aSubMenu, int aId,
|
|
|
|
const wxString& aText, const wxString& aHelpText,
|
2018-02-14 08:08:29 +00:00
|
|
|
const wxBitmap& aImage )
|
2017-03-02 13:46:18 +00:00
|
|
|
{
|
2019-04-14 13:31:32 +00:00
|
|
|
wxMenuItem* item = new wxMenuItem( aMenu, aId, aText, aHelpText );
|
2017-03-02 13:46:18 +00:00
|
|
|
item->SetSubMenu( aSubMenu );
|
2019-04-14 13:31:32 +00:00
|
|
|
AddBitmapToMenuItem( item, aImage );
|
2017-03-02 13:46:18 +00:00
|
|
|
|
|
|
|
aMenu->Append( item );
|
|
|
|
|
|
|
|
return item;
|
2017-11-02 20:41:29 +00:00
|
|
|
}
|