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
|
|
|
*/
|
|
|
|
|
2010-01-17 20:25:10 +00:00
|
|
|
/**
|
2010-12-21 15:13:09 +00:00
|
|
|
* @file pcbnew/dialogs/dialog_display_options.h
|
2010-01-17 20:25:10 +00:00
|
|
|
*/
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <dialog_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
|
|
|
|
2011-03-03 19:08:13 +00:00
|
|
|
class DIALOG_DISPLAY_OPTIONS : public DIALOG_DISPLAY_OPTIONS_BASE
|
2010-01-17 20:25:10 +00:00
|
|
|
{
|
|
|
|
public:
|
2011-03-03 19:08:13 +00:00
|
|
|
DIALOG_DISPLAY_OPTIONS( PCB_EDIT_FRAME* parent );
|
2017-02-14 10:03:08 +00:00
|
|
|
~DIALOG_DISPLAY_OPTIONS() {};
|
2017-03-13 16:13:04 +00:00
|
|
|
|
|
|
|
bool TransferDataFromWindow() override;
|
|
|
|
bool TransferDataToWindow() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
PCB_EDIT_FRAME* m_parent;
|
|
|
|
|
|
|
|
GAL_OPTIONS_PANEL* m_galOptsPanel;
|
2010-01-17 20:25:10 +00:00
|
|
|
};
|
|
|
|
|