mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-24 10:05:03 +00:00
16de0a666c
ADDED: Horizontal/vertical zoom for simulator plots, via mouse wheel, toolbar buttons, menu commands, and hotkeys. ADDED: Simulator preferences panel, populated with mouse wheel and trackpad settings that control pan and zoom of simulator plots. ADDED: Zoom In/Out Horizontally/Vertically commands that can be bound to hotkeys. CHANGED: Simulator plot scroll wheel gestures are no longer hard-coded and can now be configured via the new Simulator preferences panel. Fixes https://gitlab.com/kicad/code/kicad/-/issues/16597 Other unreported bugs that were fixed: - Fixed wierd, jumpy simulator plot view limiting behavior. - Fixed Zoom In Center and Zoom Out Center commands not preserving the simulator plot center point. - Fixed simulator plot nudging when exported as PNGs. - Fixed rectangular selection zoom being able to exceed simulator plot view limits. Notes: - Provided new SIM_PREFERENCES struct to be used for future simulator preferences set via the simulator preferences dialog. - Bundled pre-existing EESCHEMA_SETTINGS::SIMULATOR settings into EESCHEMA_SETTINGS::SIMULATOR::VIEW. - Replaced mpWindow::EnableMouseWheelPan with more general SetMouseWheelActions. - Refactored and tidied up wxMathPlot's mpWindow code involved with fitting, zooming, and panning. - Consolidated long lists of duplicated member variable initializers to a new mpWindow private delegated constructor. - Provided provisional Zoom In/Out Horizontally/Vertically toolbar icons that need improvement by a graphics designer. - Provided gitignore entries for the Qt Creator IDE
88 lines
2.7 KiB
C++
88 lines
2.7 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2016-2023 CERN
|
|
* Copyright (C) 2016-2024 KiCad Developers, see AUTHORS.txt for contributors.
|
|
* @author Sylwester Kocjan <s.kocjan@o2.pl>
|
|
*
|
|
* 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 3
|
|
* 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:
|
|
* https://www.gnu.org/licenses/gpl-3.0.html
|
|
* or you may search the http://www.gnu.org website for the version 3 license,
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#ifndef __SIM_PLOT_PANEL_BASE_H
|
|
#define __SIM_PLOT_PANEL_BASE_H
|
|
|
|
#include <sim/sim_preferences.h>
|
|
#include <sim/sim_types.h>
|
|
#include <sim/spice_circuit_model.h>
|
|
#include <wx/panel.h>
|
|
#include <wx/sizer.h>
|
|
#include <wx/stattext.h>
|
|
|
|
|
|
class SIM_TAB : public wxWindow
|
|
{
|
|
public:
|
|
SIM_TAB();
|
|
SIM_TAB( const wxString& aSimCommand, wxWindow* parent );
|
|
virtual ~SIM_TAB();
|
|
|
|
static bool IsPlottable( SIM_TYPE aSimType );
|
|
|
|
virtual void OnLanguageChanged() = 0;
|
|
|
|
virtual void ApplyPreferences( const SIM_PREFERENCES& aPrefs );
|
|
|
|
SIM_TYPE GetSimType() const;
|
|
|
|
const wxString& GetSimCommand() const { return m_simCommand; }
|
|
void SetSimCommand( const wxString& aSimCommand ) { m_simCommand = aSimCommand; }
|
|
|
|
int GetSimOptions() const { return m_simOptions; }
|
|
void SetSimOptions( int aOptions ) { m_simOptions = aOptions; }
|
|
|
|
wxString GetLastSchTextSimCommand() const { return m_lastSchTextSimCommand; }
|
|
void SetLastSchTextSimCommand( const wxString& aCmd ) { m_lastSchTextSimCommand = aCmd; }
|
|
|
|
const wxString& GetSpicePlotName() const { return m_spicePlotName; }
|
|
void SetSpicePlotName( const wxString& aPlotName ) { m_spicePlotName = aPlotName; }
|
|
|
|
private:
|
|
wxString m_simCommand;
|
|
unsigned m_simOptions;
|
|
wxString m_lastSchTextSimCommand;
|
|
wxString m_spicePlotName;
|
|
};
|
|
|
|
|
|
class SIM_NOPLOT_TAB : public SIM_TAB
|
|
{
|
|
public:
|
|
SIM_NOPLOT_TAB( const wxString& aSimCommand, wxWindow* parent );
|
|
|
|
virtual ~SIM_NOPLOT_TAB();
|
|
|
|
void OnLanguageChanged() override;
|
|
|
|
private:
|
|
wxSizer* m_sizer;
|
|
wxStaticText* m_textInfo;
|
|
};
|
|
|
|
|
|
#endif
|