kicad/common/dialogs/panel_gal_display_options.h

44 lines
1.3 KiB
C
Raw Normal View History

2018-09-04 23:59:26 +00:00
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2017-2018 KiCad Developers, see AUTHORS.txt for contributors.
*
* 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 PANEL_DISPLAY_OPTIONS_H
#define PANEL_DISPLAY_OPTIONS_H
2018-09-04 23:59:26 +00:00
#include <wx/panel.h>
class GAL_OPTIONS_PANEL;
class EDA_DRAW_FRAME;
2018-09-04 23:59:26 +00:00
class PAGED_DIALOG;
class PANEL_GAL_DISPLAY_OPTIONS : public wxPanel
2018-09-04 23:59:26 +00:00
{
public:
PANEL_GAL_DISPLAY_OPTIONS( EDA_DRAW_FRAME* aParent, PAGED_DIALOG* aWindow );
2018-09-04 23:59:26 +00:00
private:
bool TransferDataToWindow() override;
bool TransferDataFromWindow() override;
EDA_DRAW_FRAME* m_frame;
2018-09-04 23:59:26 +00:00
GAL_OPTIONS_PANEL* m_galOptsPanel;
};
#endif //PANEL_DISPLAY_OPTIONS_H