2014-10-27 10:14:39 -04:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010-2014 Jean-Pierre Charras, jean-pierre.charras at wanadoo.fr
|
2025-01-01 13:30:11 -08:00
|
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
2014-10-27 10:14:39 -04:00
|
|
|
*
|
2018-01-07 21:05:03 -07: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.
|
2014-10-27 10:14:39 -04:00
|
|
|
*
|
2018-01-07 21:05:03 -07:00
|
|
|
* 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.
|
2014-10-27 10:14:39 -04:00
|
|
|
*
|
2018-01-07 21:05:03 -07: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/>.
|
2014-10-27 10:14:39 -04:00
|
|
|
*/
|
|
|
|
|
2025-03-25 10:33:01 +00:00
|
|
|
#include "panel_display_options_base.h"
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2021-11-01 11:20:13 +00:00
|
|
|
class PCBNEW_SETTINGS;
|
2025-03-25 10:33:01 +00:00
|
|
|
class FOOTPRINT_EDITOR_SETTINGS;
|
2021-08-30 00:33:08 +01:00
|
|
|
class APP_SETTINGS_BASE;
|
2017-03-13 17:42:12 +08:00
|
|
|
class GAL_OPTIONS_PANEL;
|
2017-02-14 23:31:21 +08:00
|
|
|
|
2021-08-30 00:33:08 +01:00
|
|
|
|
2025-03-25 10:33:01 +00:00
|
|
|
class PANEL_DISPLAY_OPTIONS : public PANEL_DISPLAY_OPTIONS_BASE
|
2010-01-17 20:25:10 +00:00
|
|
|
{
|
|
|
|
public:
|
2025-03-25 10:33:01 +00:00
|
|
|
PANEL_DISPLAY_OPTIONS( wxWindow* aParent, APP_SETTINGS_BASE* aAppSettings );
|
|
|
|
~PANEL_DISPLAY_OPTIONS() override;
|
|
|
|
|
|
|
|
bool Show( bool aShow ) override;
|
2017-03-14 00:13:04 +08:00
|
|
|
|
2021-08-30 00:33:08 +01:00
|
|
|
bool TransferDataFromWindow() override;
|
|
|
|
bool TransferDataToWindow() override;
|
2017-03-14 00:13:04 +08:00
|
|
|
|
2021-11-01 11:20:13 +00:00
|
|
|
void ResetPanel() override;
|
|
|
|
|
|
|
|
private:
|
2025-03-25 10:33:01 +00:00
|
|
|
void OnAddLayerItem( wxCommandEvent& event ) override;
|
|
|
|
void OnDeleteLayerItem( wxCommandEvent& event ) override;
|
|
|
|
void onLayerChange( wxGridEvent& event ) override;
|
|
|
|
|
2021-11-01 11:20:13 +00:00
|
|
|
void loadPCBSettings( PCBNEW_SETTINGS* aCfg );
|
2025-03-25 10:33:01 +00:00
|
|
|
void loadFPSettings( const FOOTPRINT_EDITOR_SETTINGS* aCfg );
|
|
|
|
|
|
|
|
int getNextAvailableLayer() const;
|
2021-11-01 11:20:13 +00:00
|
|
|
|
2017-03-14 00:13:04 +08:00
|
|
|
private:
|
2021-08-30 00:33:08 +01:00
|
|
|
bool m_isPCBEdit;
|
|
|
|
GAL_OPTIONS_PANEL* m_galOptsPanel;
|
2010-01-17 20:25:10 +00:00
|
|
|
};
|
|
|
|
|