2013-05-26 04:36:44 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Jean-Pierre Charras, jean-pierre.charras@gipsa-lab.inpg.com
|
2016-04-02 12:25:44 +00:00
|
|
|
* Copyright (C) 2016 Wayne Stambaugh, stambaughw@gmail.com
|
2022-01-25 22:33:37 +00:00
|
|
|
* Copyright (C) 2004-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
2013-05-26 04:36:44 +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
|
|
|
|
*/
|
|
|
|
|
2022-01-25 22:33:37 +00:00
|
|
|
#ifndef DIALOG_FIELD_PROPERTIES_H
|
|
|
|
#define DIALOG_FIELD_PROPERTIES_H
|
|
|
|
|
|
|
|
#include <dialog_field_properties_base.h>
|
2018-05-24 07:12:43 +00:00
|
|
|
#include <widgets/unit_binder.h>
|
2018-10-31 12:56:54 +00:00
|
|
|
#include <lib_field.h>
|
|
|
|
#include <template_fieldnames.h>
|
2013-05-26 04:36:44 +00:00
|
|
|
|
|
|
|
class SCH_BASE_FRAME;
|
|
|
|
class SCH_FIELD;
|
2016-04-02 12:25:44 +00:00
|
|
|
class EDA_TEXT;
|
2020-05-27 22:28:36 +00:00
|
|
|
class SCINTILLA_TRICKS;
|
2023-06-09 21:41:33 +00:00
|
|
|
class SCH_COMMIT;
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2014-10-14 20:39:25 +00:00
|
|
|
|
|
|
|
/**
|
2021-05-05 21:41:51 +00:00
|
|
|
* A base class to edit schematic and symbol library fields.
|
2021-03-21 17:31:23 +00:00
|
|
|
*
|
|
|
|
* This class is setup in expectation of its children possibly using Kiway player so
|
|
|
|
* #DIALOG_SHIM::ShowQuasiModal is required when calling any subclasses.
|
2014-10-14 20:39:25 +00:00
|
|
|
*/
|
2022-01-25 22:33:37 +00:00
|
|
|
class DIALOG_FIELD_PROPERTIES : public DIALOG_FIELD_PROPERTIES_BASE
|
2013-05-26 04:36:44 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-08-06 19:54:26 +00:00
|
|
|
DIALOG_FIELD_PROPERTIES( SCH_BASE_FRAME* aParent, const wxString& aTitle,
|
|
|
|
const EDA_TEXT* aTextItem );
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2021-08-06 19:54:26 +00:00
|
|
|
~DIALOG_FIELD_PROPERTIES() override;
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2018-05-24 07:12:43 +00:00
|
|
|
bool TransferDataToWindow() override;
|
|
|
|
bool TransferDataFromWindow() override;
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2016-04-02 12:25:44 +00:00
|
|
|
SCH_BASE_FRAME* GetParent() { return dynamic_cast< SCH_BASE_FRAME* >( wxDialog::GetParent() ); }
|
|
|
|
|
|
|
|
const wxString& GetText() const { return m_text; }
|
2014-10-14 20:39:25 +00:00
|
|
|
|
2013-05-26 04:36:44 +00:00
|
|
|
protected:
|
2016-04-02 12:25:44 +00:00
|
|
|
void init();
|
|
|
|
|
|
|
|
void updateText( EDA_TEXT* aText );
|
2014-10-14 20:39:25 +00:00
|
|
|
|
|
|
|
/**
|
2021-03-21 17:31:23 +00:00
|
|
|
* Handle the select button next to the text value field. The current assumption
|
2014-10-14 20:39:25 +00:00
|
|
|
* is that this event will only be enabled for footprint type fields. In the future
|
|
|
|
* this function may need to be moved to the subclasses to access m_field and check for
|
|
|
|
* the field type if more select actions are desired.
|
|
|
|
*
|
2021-06-09 19:32:58 +00:00
|
|
|
* @param aEvent is the wX event thrown when the button is clicked, this isn't used
|
2014-10-14 20:39:25 +00:00
|
|
|
*/
|
2016-09-24 18:53:15 +00:00
|
|
|
void OnTextValueSelectButtonClick( wxCommandEvent& aEvent ) override;
|
2014-10-14 20:39:25 +00:00
|
|
|
|
2018-07-19 19:20:53 +00:00
|
|
|
/**
|
|
|
|
* Used to select the variant part of some text fields (for instance, the question mark
|
|
|
|
* or number in a reference).
|
|
|
|
*/
|
|
|
|
virtual void OnSetFocusText( wxFocusEvent& event ) override;
|
|
|
|
|
2021-10-12 20:05:37 +00:00
|
|
|
void onOrientButton( wxCommandEvent &aEvent );
|
|
|
|
void onHAlignButton( wxCommandEvent &aEvent );
|
|
|
|
void onVAlignButton( wxCommandEvent &aEvent );
|
|
|
|
|
|
|
|
protected:
|
2022-01-03 01:20:25 +00:00
|
|
|
UNIT_BINDER m_posX;
|
|
|
|
UNIT_BINDER m_posY;
|
|
|
|
UNIT_BINDER m_textSize;
|
|
|
|
|
|
|
|
int m_fieldId;
|
|
|
|
wxString m_text;
|
|
|
|
KIFONT::FONT* m_font;
|
|
|
|
bool m_isItalic;
|
|
|
|
bool m_isBold;
|
2022-03-31 18:43:08 +00:00
|
|
|
KIGFX::COLOR4D m_color;
|
2022-01-03 01:20:25 +00:00
|
|
|
VECTOR2I m_position;
|
|
|
|
int m_size;
|
|
|
|
bool m_isVertical;
|
|
|
|
GR_TEXT_V_ALIGN_T m_verticalJustification;
|
|
|
|
GR_TEXT_H_ALIGN_T m_horizontalJustification;
|
|
|
|
bool m_isVisible;
|
2022-09-03 20:54:05 +00:00
|
|
|
bool m_isNameVisible;
|
2022-09-04 16:34:16 +00:00
|
|
|
bool m_allowAutoplace;
|
2022-01-03 01:20:25 +00:00
|
|
|
|
|
|
|
bool m_firstFocus;
|
2021-01-09 19:26:07 +00:00
|
|
|
|
2020-05-27 22:28:36 +00:00
|
|
|
SCINTILLA_TRICKS* m_scintillaTricks;
|
2023-10-02 22:32:20 +00:00
|
|
|
std::string m_netlist;
|
2013-05-26 04:36:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-10-14 20:39:25 +00:00
|
|
|
/**
|
2021-08-06 19:54:26 +00:00
|
|
|
* Handle editing a single symbol field in the symbol editor.
|
2021-03-21 17:31:23 +00:00
|
|
|
*
|
2016-04-02 12:25:44 +00:00
|
|
|
* @note Use ShowQuasiModal when calling this class!
|
2014-10-14 20:39:25 +00:00
|
|
|
*/
|
2021-08-06 19:54:26 +00:00
|
|
|
class DIALOG_LIB_FIELD_PROPERTIES : public DIALOG_FIELD_PROPERTIES
|
2013-05-26 04:36:44 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-08-06 19:54:26 +00:00
|
|
|
DIALOG_LIB_FIELD_PROPERTIES( SCH_BASE_FRAME* aParent, const wxString& aTitle,
|
|
|
|
const LIB_FIELD* aField );
|
2014-10-14 20:39:25 +00:00
|
|
|
|
2021-08-06 19:54:26 +00:00
|
|
|
~DIALOG_LIB_FIELD_PROPERTIES() {}
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2022-01-05 16:25:18 +00:00
|
|
|
void UpdateField( LIB_FIELD* aField );
|
2013-05-26 04:36:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-10-14 20:39:25 +00:00
|
|
|
/**
|
2021-05-05 21:41:51 +00:00
|
|
|
* Handle editing a single symbol field in the schematic editor.
|
2021-03-21 17:31:23 +00:00
|
|
|
*
|
2016-04-02 12:25:44 +00:00
|
|
|
* @note Use ShowQuasiModal when calling this class!
|
2014-10-14 20:39:25 +00:00
|
|
|
*/
|
2021-08-06 19:54:26 +00:00
|
|
|
class DIALOG_SCH_FIELD_PROPERTIES : public DIALOG_FIELD_PROPERTIES
|
2013-05-26 04:36:44 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-08-06 19:54:26 +00:00
|
|
|
DIALOG_SCH_FIELD_PROPERTIES( SCH_BASE_FRAME* aParent, const wxString& aTitle,
|
|
|
|
const SCH_FIELD* aField );
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2021-08-06 19:54:26 +00:00
|
|
|
~DIALOG_SCH_FIELD_PROPERTIES() {}
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2020-05-27 22:28:36 +00:00
|
|
|
void onScintillaCharAdded( wxStyledTextEvent &aEvent );
|
|
|
|
|
2023-06-09 21:41:33 +00:00
|
|
|
void UpdateField( SCH_COMMIT* aCommit, SCH_FIELD* aField, SCH_SHEET_PATH* aSheetPath );
|
2020-05-27 22:28:36 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
const SCH_FIELD* m_field;
|
2021-09-25 16:26:48 +00:00
|
|
|
bool m_isSheetFilename;
|
2013-05-26 04:36:44 +00:00
|
|
|
};
|
|
|
|
|
2022-01-25 22:33:37 +00:00
|
|
|
#endif // DIALOG_FIELD_PROPERTIES_H
|