2014-10-27 14:14:39 +00: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
|
2018-01-08 04:05:03 +00:00
|
|
|
* Copyright (C) 1992-2018 KiCad Developers, see AUTHORS.txt for contributors.
|
2014-10-27 14:14:39 +00:00
|
|
|
*
|
2018-01-08 04:05:03 +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.
|
2014-10-27 14:14:39 +00:00
|
|
|
*
|
2018-01-08 04:05:03 +00: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 14:14:39 +00:00
|
|
|
*
|
2018-01-08 04:05:03 +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/>.
|
2014-10-27 14:14:39 +00:00
|
|
|
*/
|
|
|
|
|
2018-05-14 17:34:18 +00:00
|
|
|
#include "panel_pcbnew_display_options_base.h"
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2017-03-13 09:42:12 +00:00
|
|
|
class GAL_OPTIONS_PANEL;
|
2017-02-14 15:31:21 +00:00
|
|
|
|
2018-05-14 17:34:18 +00:00
|
|
|
class PANEL_PCBNEW_DISPLAY_OPTIONS : public PANEL_PCBNEW_DISPLAY_OPTIONS_BASE
|
2010-01-17 20:25:10 +00:00
|
|
|
{
|
|
|
|
public:
|
2018-07-15 23:15:48 +00:00
|
|
|
PANEL_PCBNEW_DISPLAY_OPTIONS( PCB_EDIT_FRAME* aFrame, PAGED_DIALOG* aWindow );
|
2017-03-13 16:13:04 +00:00
|
|
|
|
|
|
|
bool TransferDataFromWindow() override;
|
|
|
|
bool TransferDataToWindow() override;
|
|
|
|
|
|
|
|
private:
|
2018-05-14 17:34:18 +00:00
|
|
|
PCB_EDIT_FRAME* m_frame;
|
2017-03-13 16:13:04 +00:00
|
|
|
|
|
|
|
GAL_OPTIONS_PANEL* m_galOptsPanel;
|
2010-01-17 20:25:10 +00:00
|
|
|
};
|
|
|
|
|