2013-08-13 17:51:22 +00:00
|
|
|
/**
|
|
|
|
* @file properties_frame.h
|
|
|
|
*/
|
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2013-08-13 17:51:22 +00:00
|
|
|
* Copyright (C) 2013 CERN
|
|
|
|
* @author Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2013-07-19 18:27:22 +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 2
|
|
|
|
* 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, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _PROPERTIES_FRAME_H
|
|
|
|
#define _PROPERTIES_FRAME_H
|
|
|
|
|
2020-10-13 05:04:31 +00:00
|
|
|
#include "dialogs/properties_frame_base.h"
|
2020-12-09 02:31:10 +00:00
|
|
|
#include <widgets/unit_binder.h>
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2021-02-22 23:47:17 +00:00
|
|
|
class DS_DATA_ITEM;
|
2020-10-13 05:04:31 +00:00
|
|
|
class PL_EDITOR_FRAME;
|
|
|
|
class SCINTILLA_TRICKS;
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
/**
|
2020-01-10 14:31:00 +00:00
|
|
|
* PROPERTIES_FRAME display properties of the current item.
|
2013-07-19 18:27:22 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class PROPERTIES_FRAME : public PANEL_PROPERTIES_BASE
|
|
|
|
{
|
2020-05-30 09:22:19 +00:00
|
|
|
PL_EDITOR_FRAME* m_parent;
|
|
|
|
SCINTILLA_TRICKS* m_scintillaTricks;
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2020-12-09 02:31:10 +00:00
|
|
|
UNIT_BINDER m_textCtrlTextSizeXBinder;
|
|
|
|
UNIT_BINDER m_textCtrlTextSizeYBinder;
|
|
|
|
|
|
|
|
UNIT_BINDER m_textCtrlConstraintXBinder;
|
|
|
|
UNIT_BINDER m_textCtrlConstraintYBinder;
|
|
|
|
|
|
|
|
UNIT_BINDER m_textCtrlPosXBinder;
|
|
|
|
UNIT_BINDER m_textCtrlPosYBinder;
|
|
|
|
|
|
|
|
UNIT_BINDER m_textCtrlEndXBinder;
|
|
|
|
UNIT_BINDER m_textCtrlEndYBinder;
|
|
|
|
|
|
|
|
UNIT_BINDER m_textCtrlStepXBinder;
|
|
|
|
UNIT_BINDER m_textCtrlStepYBinder;
|
|
|
|
|
|
|
|
UNIT_BINDER m_textCtrlDefaultTextSizeXBinder;
|
|
|
|
UNIT_BINDER m_textCtrlDefaultTextSizeYBinder;
|
|
|
|
|
|
|
|
UNIT_BINDER m_textCtrlDefaultLineWidthBinder;
|
|
|
|
UNIT_BINDER m_textCtrlDefaultTextThicknessBinder;
|
|
|
|
|
|
|
|
UNIT_BINDER m_textCtrlLeftMarginBinder;
|
|
|
|
UNIT_BINDER m_textCtrlRightMarginBinder;
|
|
|
|
|
|
|
|
UNIT_BINDER m_textCtrlTopMarginBinder;
|
|
|
|
UNIT_BINDER m_textCtrlBottomMarginBinder;
|
|
|
|
|
2020-12-09 03:38:40 +00:00
|
|
|
UNIT_BINDER m_textCtrlThicknessBinder;
|
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
public:
|
|
|
|
PROPERTIES_FRAME( PL_EDITOR_FRAME* aParent );
|
|
|
|
~PROPERTIES_FRAME();
|
|
|
|
|
2013-07-24 15:11:35 +00:00
|
|
|
// Event functions
|
2019-05-24 18:29:38 +00:00
|
|
|
void OnPageChanged( wxNotebookEvent& event ) override;
|
2016-09-24 18:53:15 +00:00
|
|
|
void OnAcceptPrms( wxCommandEvent& event ) override;
|
|
|
|
void OnSetDefaultValues( wxCommandEvent& event ) override;
|
2020-05-30 09:22:19 +00:00
|
|
|
void onScintillaCharAdded( wxStyledTextEvent &aEvent );
|
2021-09-12 09:02:17 +00:00
|
|
|
void onHelp( wxCommandEvent& aEvent ) override;
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2021-06-09 19:32:58 +00:00
|
|
|
// Data transfer from general properties to widgets
|
2013-07-20 19:36:19 +00:00
|
|
|
void CopyPrmsFromGeneralToPanel();
|
|
|
|
|
2021-06-09 19:32:58 +00:00
|
|
|
// Data transfer from widgets to general properties
|
2013-07-20 19:36:19 +00:00
|
|
|
bool CopyPrmsFromPanelToGeneral();
|
|
|
|
|
2021-06-09 19:32:58 +00:00
|
|
|
// Data transfer from item to widgets in properties frame
|
2021-02-22 23:47:17 +00:00
|
|
|
void CopyPrmsFromItemToPanel( DS_DATA_ITEM* aItem );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2021-06-09 19:32:58 +00:00
|
|
|
// Data transfer from widgets in properties frame to item
|
2021-02-22 23:47:17 +00:00
|
|
|
bool CopyPrmsFromPanelToItem( DS_DATA_ITEM* aItem );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
wxSize GetMinSize() const override;
|
2013-07-19 18:27:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* _PROPERTIES_FRAME_H */
|