2020-01-13 01:44:19 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2023-05-01 20:26:29 +00:00
|
|
|
* Copyright (C) 2020-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2020-01-13 01:44:19 +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
|
|
|
|
*/
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
#ifndef SYMBOL_EDITOR_SETTINGS_H
|
|
|
|
#define SYMBOL_EDITOR_SETTINGS_H
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
#include <settings/app_settings.h>
|
2024-02-25 22:39:14 +00:00
|
|
|
#include <project/sch_project_settings.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
class SYMBOL_EDITOR_SETTINGS : public APP_SETTINGS_BASE
|
2020-01-13 01:44:19 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2023-07-26 22:32:06 +00:00
|
|
|
struct AUI_PANELS
|
|
|
|
{
|
|
|
|
int properties_panel_width;
|
2023-09-25 11:35:31 +00:00
|
|
|
float properties_splitter;
|
2023-07-26 22:32:06 +00:00
|
|
|
bool show_properties;
|
|
|
|
};
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
struct DEFAULTS
|
|
|
|
{
|
|
|
|
int line_width;
|
2020-04-04 20:32:14 +00:00
|
|
|
int text_size;
|
2020-01-13 01:44:19 +00:00
|
|
|
int pin_length;
|
|
|
|
int pin_name_size;
|
|
|
|
int pin_num_size;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct REPEAT
|
|
|
|
{
|
|
|
|
int label_delta;
|
|
|
|
int pin_step;
|
|
|
|
};
|
|
|
|
|
2023-10-09 00:54:34 +00:00
|
|
|
struct DIALOG_IMPORT_GRAPHICS
|
|
|
|
{
|
|
|
|
bool interactive_placement;
|
|
|
|
wxString last_file;
|
|
|
|
double dxf_line_width;
|
|
|
|
int dxf_line_width_units;
|
|
|
|
int origin_units;
|
|
|
|
double origin_x;
|
|
|
|
double origin_y;
|
|
|
|
int dxf_units;
|
|
|
|
};
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
SYMBOL_EDITOR_SETTINGS();
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
virtual ~SYMBOL_EDITOR_SETTINGS() {}
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
virtual bool MigrateFromLegacy( wxConfigBase* aLegacyConfig ) override;
|
|
|
|
|
2023-07-26 22:32:06 +00:00
|
|
|
AUI_PANELS m_AuiPanels;
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
DEFAULTS m_Defaults;
|
|
|
|
|
|
|
|
REPEAT m_Repeat;
|
|
|
|
|
2023-10-09 00:54:34 +00:00
|
|
|
DIALOG_IMPORT_GRAPHICS m_ImportGraphics;
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
bool m_ShowPinElectricalType;
|
2024-01-21 10:22:27 +00:00
|
|
|
bool m_ShowHiddenLibPins;
|
|
|
|
bool m_ShowHiddenLibFields;
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
int m_LibWidth;
|
|
|
|
|
2023-05-01 20:26:29 +00:00
|
|
|
int m_LibrarySortMode;
|
|
|
|
|
2021-06-14 18:00:08 +00:00
|
|
|
wxString m_EditSymbolVisibleColumns;
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
wxString m_PinTableVisibleColumns;
|
|
|
|
|
2020-03-06 03:57:50 +00:00
|
|
|
bool m_UseEeschemaColorSettings;
|
|
|
|
|
2024-02-25 22:39:14 +00:00
|
|
|
SCH_SELECTION_FILTER_OPTIONS m_SelectionFilter;
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
protected:
|
|
|
|
|
|
|
|
virtual std::string getLegacyFrameName() const override { return "LibeditFrame"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|