Minot fix: Honor Ctrl+Q hotkey in pl_editor and pcb_calculator
This commit is contained in:
parent
c2f2247ae3
commit
8712dac1a2
|
@ -137,6 +137,12 @@ void IMAGE_SIZE::SetUnit( EDA_UNITS aUnit )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
BEGIN_EVENT_TABLE( BITMAP2CMP_FRAME, EDA_BASE_FRAME )
|
||||||
|
EVT_MENU( wxID_CLOSE, BITMAP2CMP_FRAME::OnExit )
|
||||||
|
EVT_MENU( wxID_EXIT, BITMAP2CMP_FRAME::OnExit )
|
||||||
|
END_EVENT_TABLE()
|
||||||
|
|
||||||
|
|
||||||
BITMAP2CMP_FRAME::BITMAP2CMP_FRAME( KIWAY* aKiway, wxWindow* aParent ) :
|
BITMAP2CMP_FRAME::BITMAP2CMP_FRAME( KIWAY* aKiway, wxWindow* aParent ) :
|
||||||
KIWAY_PLAYER( aKiway, aParent, FRAME_BM2CMP, _( "Image Converter" ), wxDefaultPosition,
|
KIWAY_PLAYER( aKiway, aParent, FRAME_BM2CMP, _( "Image Converter" ), wxDefaultPosition,
|
||||||
wxDefaultSize, wxDEFAULT_FRAME_STYLE, wxT( "bitmap2cmp" ), unityScale ),
|
wxDefaultSize, wxDEFAULT_FRAME_STYLE, wxT( "bitmap2cmp" ), unityScale ),
|
||||||
|
@ -200,6 +206,13 @@ BITMAP2CMP_FRAME::~BITMAP2CMP_FRAME()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void BITMAP2CMP_FRAME::OnExit( wxCommandEvent& aEvent )
|
||||||
|
{
|
||||||
|
// Just generate a wxCloseEvent
|
||||||
|
Close( false );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
wxWindow* BITMAP2CMP_FRAME::GetToolCanvas() const
|
wxWindow* BITMAP2CMP_FRAME::GetToolCanvas() const
|
||||||
{
|
{
|
||||||
return m_panel->GetCurrentPage();
|
return m_panel->GetCurrentPage();
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* This program source code file is part of KICAD, a free EDA CAD application.
|
* This program source code file is part of KICAD, a free EDA CAD application.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2019-2022 Kicad Developers, see AUTHORS.txt for contributors.
|
* Copyright (C) 2019-2023 Kicad Developers, see AUTHORS.txt for contributors.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
|
@ -40,7 +40,6 @@ public:
|
||||||
// overload KIWAY_PLAYER virtual
|
// overload KIWAY_PLAYER virtual
|
||||||
bool OpenProjectFiles( const std::vector<wxString>& aFilenames, int aCtl = 0 ) override;
|
bool OpenProjectFiles( const std::vector<wxString>& aFilenames, int aCtl = 0 ) override;
|
||||||
|
|
||||||
void OnExit( wxCommandEvent& event );
|
|
||||||
void OnLoadFile();
|
void OnLoadFile();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -72,9 +71,16 @@ public:
|
||||||
|
|
||||||
wxWindow* GetToolCanvas() const override;
|
wxWindow* GetToolCanvas() const override;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Event handler for the wxID_EXIT and wxID_CLOSE events.
|
||||||
|
*/
|
||||||
|
void OnExit( wxCommandEvent& aEvent );
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void doReCreateMenuBar() override;
|
void doReCreateMenuBar() override;
|
||||||
|
|
||||||
|
DECLARE_EVENT_TABLE();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
BITMAP2CMP_PANEL* m_panel;
|
BITMAP2CMP_PANEL* m_panel;
|
||||||
wxStatusBar* m_statusBar;
|
wxStatusBar* m_statusBar;
|
||||||
|
|
|
@ -53,6 +53,12 @@
|
||||||
#include "widgets/wx_menubar.h"
|
#include "widgets/wx_menubar.h"
|
||||||
|
|
||||||
|
|
||||||
|
BEGIN_EVENT_TABLE( PCB_CALCULATOR_FRAME, EDA_BASE_FRAME )
|
||||||
|
EVT_MENU( wxID_CLOSE, PCB_CALCULATOR_FRAME::OnExit )
|
||||||
|
EVT_MENU( wxID_EXIT, PCB_CALCULATOR_FRAME::OnExit )
|
||||||
|
END_EVENT_TABLE()
|
||||||
|
|
||||||
|
|
||||||
PCB_CALCULATOR_FRAME::PCB_CALCULATOR_FRAME( KIWAY* aKiway, wxWindow* aParent ) :
|
PCB_CALCULATOR_FRAME::PCB_CALCULATOR_FRAME( KIWAY* aKiway, wxWindow* aParent ) :
|
||||||
KIWAY_PLAYER( aKiway, aParent, FRAME_CALC, _( "Calculator Tools" ), wxDefaultPosition,
|
KIWAY_PLAYER( aKiway, aParent, FRAME_CALC, _( "Calculator Tools" ), wxDefaultPosition,
|
||||||
wxDefaultSize,
|
wxDefaultSize,
|
||||||
|
@ -138,6 +144,16 @@ PCB_CALCULATOR_FRAME::~PCB_CALCULATOR_FRAME()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void PCB_CALCULATOR_FRAME::OnExit( wxCommandEvent& aEvent )
|
||||||
|
{
|
||||||
|
if( aEvent.GetId() == wxID_EXIT )
|
||||||
|
Kiway().OnKiCadExit();
|
||||||
|
|
||||||
|
if( aEvent.GetId() == wxID_CLOSE || Kiface().IsSingle() )
|
||||||
|
Close( false );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void PCB_CALCULATOR_FRAME::loadPages()
|
void PCB_CALCULATOR_FRAME::loadPages()
|
||||||
{
|
{
|
||||||
m_treebook->AddPage( nullptr, _( "General system design" ) );
|
m_treebook->AddPage( nullptr, _( "General system design" ) );
|
||||||
|
|
|
@ -69,9 +69,16 @@ public:
|
||||||
void LoadSettings( APP_SETTINGS_BASE* aCfg ) override;
|
void LoadSettings( APP_SETTINGS_BASE* aCfg ) override;
|
||||||
void SaveSettings( APP_SETTINGS_BASE* aCfg ) override;
|
void SaveSettings( APP_SETTINGS_BASE* aCfg ) override;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Event handler for the wxID_EXIT and wxID_CLOSE events.
|
||||||
|
*/
|
||||||
|
void OnExit( wxCommandEvent& aEvent );
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void doReCreateMenuBar() override;
|
void doReCreateMenuBar() override;
|
||||||
|
|
||||||
|
DECLARE_EVENT_TABLE();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// Event handlers
|
// Event handlers
|
||||||
void OnClosePcbCalc( wxCloseEvent& event );
|
void OnClosePcbCalc( wxCloseEvent& event );
|
||||||
|
|
Loading…
Reference in New Issue