2015-08-09 07:15:42 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KICAD, a free EDA CAD application.
|
|
|
|
*
|
2021-02-12 00:47:08 +00:00
|
|
|
* Copyright (C) 1992-2021 Kicad Developers, see AUTHORS.txt for contributors.
|
2015-08-09 07:15:42 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
2019-05-01 18:57:59 +00:00
|
|
|
* as published by the Free Software Foundation; either version 3
|
2015-08-09 07:15:42 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2019-05-01 18:57:59 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
2015-08-09 07:15:42 +00:00
|
|
|
*/
|
|
|
|
|
2021-10-08 17:28:10 +00:00
|
|
|
#ifndef PCB_CALCULATOR_FRAME_H_
|
|
|
|
#define PCB_CALCULATOR_FRAME_H_
|
2011-08-12 05:21:36 +00:00
|
|
|
|
2021-10-08 17:28:10 +00:00
|
|
|
#include <calculator_panels/calculator_panel.h>
|
|
|
|
#include <kiway_player.h>
|
|
|
|
|
2022-01-27 20:54:57 +00:00
|
|
|
class wxTreebook;
|
|
|
|
class wxTreebookEvent;
|
2021-10-08 17:28:10 +00:00
|
|
|
class wxBoxSizer;
|
2011-08-12 05:21:36 +00:00
|
|
|
|
2020-10-13 01:01:25 +00:00
|
|
|
class APP_SETTINGS_BASE;
|
|
|
|
class KIWAY;
|
2021-10-05 15:32:31 +00:00
|
|
|
class PANEL_TRANSLINE;
|
2020-08-24 10:40:38 +00:00
|
|
|
|
2020-10-13 01:01:25 +00:00
|
|
|
|
2021-06-08 19:39:47 +00:00
|
|
|
/**
|
|
|
|
* PCB calculator the main frame.
|
2021-02-12 00:47:08 +00:00
|
|
|
*/
|
2021-10-08 17:28:10 +00:00
|
|
|
class PCB_CALCULATOR_FRAME : public KIWAY_PLAYER
|
2011-08-12 05:21:36 +00:00
|
|
|
{
|
2012-04-02 18:11:00 +00:00
|
|
|
public:
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
PCB_CALCULATOR_FRAME( KIWAY* aKiway, wxWindow* aParent );
|
2011-08-12 05:21:36 +00:00
|
|
|
~PCB_CALCULATOR_FRAME();
|
|
|
|
|
2021-10-05 15:32:31 +00:00
|
|
|
// Pcb calculator doesn't host a tool framework
|
2021-06-08 19:39:47 +00:00
|
|
|
wxWindow* GetToolCanvas() const override
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2021-10-08 17:13:41 +00:00
|
|
|
/*
|
|
|
|
* Return the panel of given type or nullptr if there is no such panel exists.
|
|
|
|
*/
|
|
|
|
template<typename T>
|
|
|
|
T* GetCalculator()
|
|
|
|
{
|
2021-10-12 12:08:42 +00:00
|
|
|
std::map<std::size_t, CALCULATOR_PANEL*>::iterator panel = m_panelTypes.find( typeid( T ).hash_code() );
|
|
|
|
|
|
|
|
if( panel != m_panelTypes.end() )
|
|
|
|
return static_cast<T*>( panel->second );
|
|
|
|
|
|
|
|
return nullptr;
|
2021-10-08 17:13:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AddCalculator( CALCULATOR_PANEL *aPanel, const wxString& panelUIName );
|
2021-10-05 15:32:31 +00:00
|
|
|
|
2023-06-16 14:29:31 +00:00
|
|
|
void ShowChangedLanguage() override;
|
|
|
|
|
|
|
|
// Config read-write, virtual from EDA_BASE_FRAME
|
|
|
|
void LoadSettings( APP_SETTINGS_BASE* aCfg ) override;
|
|
|
|
void SaveSettings( APP_SETTINGS_BASE* aCfg ) override;
|
|
|
|
|
2023-06-28 06:56:40 +00:00
|
|
|
/**
|
|
|
|
* Event handler for the wxID_EXIT and wxID_CLOSE events.
|
|
|
|
*/
|
|
|
|
void OnExit( wxCommandEvent& aEvent );
|
|
|
|
|
2023-06-16 14:29:31 +00:00
|
|
|
protected:
|
|
|
|
void doReCreateMenuBar() override;
|
|
|
|
|
2023-06-28 06:56:40 +00:00
|
|
|
DECLARE_EVENT_TABLE();
|
|
|
|
|
2011-08-12 05:21:36 +00:00
|
|
|
private:
|
|
|
|
// Event handlers
|
2021-10-08 17:28:10 +00:00
|
|
|
void OnClosePcbCalc( wxCloseEvent& event );
|
2012-04-03 18:26:05 +00:00
|
|
|
|
2021-10-08 17:28:10 +00:00
|
|
|
void OnUpdateUI( wxUpdateUIEvent& event );
|
2011-08-12 05:21:36 +00:00
|
|
|
|
2021-10-08 17:13:41 +00:00
|
|
|
void onThemeChanged( wxSysColourChangedEvent& aEvent );
|
2021-10-08 16:30:36 +00:00
|
|
|
|
2023-06-16 14:29:31 +00:00
|
|
|
void loadPages();
|
2011-08-12 05:21:36 +00:00
|
|
|
|
2021-02-12 00:47:08 +00:00
|
|
|
private:
|
2021-10-08 17:28:10 +00:00
|
|
|
wxBoxSizer* m_mainSizer;
|
2022-01-27 20:54:57 +00:00
|
|
|
wxTreebook* m_treebook;
|
2021-10-08 17:28:10 +00:00
|
|
|
|
|
|
|
int m_lastNotebookPage;
|
2021-10-08 17:13:41 +00:00
|
|
|
|
|
|
|
std::vector<CALCULATOR_PANEL*> m_panels;
|
2021-10-12 12:08:42 +00:00
|
|
|
std::map<std::size_t, CALCULATOR_PANEL*> m_panelTypes;
|
|
|
|
|
2022-01-27 20:54:57 +00:00
|
|
|
void OnPageChanged ( wxTreebookEvent& aEvent );
|
2011-08-12 05:21:36 +00:00
|
|
|
};
|
|
|
|
|
2012-04-05 18:56:06 +00:00
|
|
|
|
|
|
|
extern const wxString DataFileNameExt;
|
|
|
|
|
2020-08-07 00:09:33 +00:00
|
|
|
#endif // PCB_CALCULATOR_H
|