2020-01-13 01:44:19 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2020 Jon Evans <jon@craftyjon.com>
|
2023-09-25 11:35:31 +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 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FOOTPRINT_EDITOR_SETTINGS_H_
|
|
|
|
#define FOOTPRINT_EDITOR_SETTINGS_H_
|
|
|
|
|
|
|
|
#include <board_design_settings.h>
|
|
|
|
#include <settings/app_settings.h>
|
|
|
|
#include <pcbnew_settings.h>
|
2020-08-15 20:42:11 +00:00
|
|
|
#include <project/board_project_settings.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
|
2023-10-26 09:59:06 +00:00
|
|
|
class FOOTPRINT_EDITOR_SETTINGS : public PCB_VIEWERS_SETTINGS_BASE
|
2020-01-13 01:44:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-10-30 22:21:15 +00:00
|
|
|
struct AUI_PANELS
|
|
|
|
{
|
|
|
|
int appearance_panel_tab;
|
|
|
|
int right_panel_width;
|
|
|
|
bool show_layer_manager;
|
2023-02-16 03:16:49 +00:00
|
|
|
bool show_properties;
|
|
|
|
int properties_panel_width;
|
2023-09-25 11:35:31 +00:00
|
|
|
float properties_splitter;
|
2021-10-30 22:21:15 +00:00
|
|
|
};
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
struct USER_GRID
|
|
|
|
{
|
|
|
|
double size_x;
|
|
|
|
double size_y;
|
|
|
|
int units;
|
|
|
|
};
|
|
|
|
|
|
|
|
FOOTPRINT_EDITOR_SETTINGS();
|
|
|
|
|
|
|
|
virtual ~FOOTPRINT_EDITOR_SETTINGS() {}
|
|
|
|
|
|
|
|
virtual bool MigrateFromLegacy( wxConfigBase* aLegacyConfig ) override;
|
|
|
|
|
2020-05-31 21:42:04 +00:00
|
|
|
/// Only some of these settings are actually used for footprint editing
|
|
|
|
// TODO: factor out the relevant stuff so the whole BDS doesn't have to be here
|
2020-01-13 01:44:19 +00:00
|
|
|
BOARD_DESIGN_SETTINGS m_DesignSettings;
|
|
|
|
|
2020-05-22 18:27:05 +00:00
|
|
|
// Only the magneticPads element is used
|
|
|
|
MAGNETIC_SETTINGS m_MagneticItems;
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
PCB_DISPLAY_OPTIONS m_Display;
|
|
|
|
|
2021-10-30 22:21:15 +00:00
|
|
|
AUI_PANELS m_AuiPanels;
|
|
|
|
|
2023-05-01 20:26:29 +00:00
|
|
|
int m_LibrarySortMode;
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
USER_GRID m_UserGrid;
|
|
|
|
|
|
|
|
bool m_PolarCoords;
|
2023-10-25 12:59:12 +00:00
|
|
|
bool m_DisplayInvertXAxis;
|
|
|
|
bool m_DisplayInvertYAxis;
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2022-01-19 13:24:02 +00:00
|
|
|
EDA_ANGLE m_RotationAngle;
|
2021-08-29 23:33:08 +00:00
|
|
|
|
2021-09-02 22:32:15 +00:00
|
|
|
bool m_Use45Limit;
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2022-12-05 18:27:00 +00:00
|
|
|
ARC_EDIT_MODE m_ArcEditMode;
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
int m_LibWidth;
|
|
|
|
|
2023-07-09 20:38:58 +00:00
|
|
|
wxString m_LastExportPath;
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
wxString m_FootprintTextShownColumns;
|
|
|
|
|
2024-02-25 22:39:14 +00:00
|
|
|
PCB_SELECTION_FILTER_OPTIONS m_SelectionFilter;
|
2020-08-15 20:42:11 +00:00
|
|
|
|
2020-09-30 03:29:58 +00:00
|
|
|
std::vector<LAYER_PRESET> m_LayerPresets;
|
|
|
|
|
|
|
|
wxString m_ActiveLayerPreset;
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
protected:
|
|
|
|
|
|
|
|
virtual std::string getLegacyFrameName() const override { return "ModEditFrame"; }
|
2020-05-06 01:45:48 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
bool migrateSchema0to1();
|
2020-01-13 01:44:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|