KiCad PCB EDA Suite
Loading...
Searching...
No Matches
eeschema/dialogs/dialog_text_properties.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20#ifndef DIALOG_TEXT_PROPERTIES_H
21#define DIALOG_TEXT_PROPERTIES_H
22
23#include <widgets/unit_binder.h>
24#include <sch_text.h>
26
27
28class SCH_EDIT_FRAME;
29class SCH_TEXT;
32
33
35{
36public:
37 DIALOG_TEXT_PROPERTIES( SCH_BASE_FRAME* parent, SCH_ITEM* aTextItem );
38 ~DIALOG_TEXT_PROPERTIES() override;
39
40private:
41 void getContextualTextVars( const wxString& aCrossRef, wxArrayString* aTokens );
42
43 void onHAlignButton( wxCommandEvent &aEvent );
44 void onVAlignButton( wxCommandEvent &aEvent );
45 void onTextAngleButton( wxCommandEvent &aEvent );
46 void onBorderChecked( wxCommandEvent& aEvent ) override;
47 void onFillChecked( wxCommandEvent& aEvent ) override;
48 void onHyperlinkChecked( wxCommandEvent& aEvent ) override;
49 void onHyperlinkText( wxCommandEvent& aEvent ) override;
50 void onHyperlinkCombo( wxCommandEvent& aEvent ) override;
51
52 void OnFormattingHelp( wxHyperlinkEvent& aEvent ) override;
53 void onMultiLineTCLostFocus( wxFocusEvent& event ) override;
54
55 bool TransferDataToWindow() override;
56 bool TransferDataFromWindow() override;
57
65 std::vector<wxString> m_pageNumbers;
66
68
69 wxString m_lastLink;
70};
71
72
73
74#endif // DIALOG_TEXT_PROPERTIES_H
DIALOG_TEXT_PROPERTIES_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxString &title=_("Text Properties"), const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxSize(-1,-1), long style=wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER)
void onHyperlinkText(wxCommandEvent &aEvent) override
void onFillChecked(wxCommandEvent &aEvent) override
void onMultiLineTCLostFocus(wxFocusEvent &event) override
void onBorderChecked(wxCommandEvent &aEvent) override
void OnFormattingHelp(wxHyperlinkEvent &aEvent) override
DIALOG_TEXT_PROPERTIES(SCH_BASE_FRAME *parent, SCH_ITEM *aTextItem)
void onHyperlinkCombo(wxCommandEvent &aEvent) override
void getContextualTextVars(const wxString &aCrossRef, wxArrayString *aTokens)
void onHyperlinkChecked(wxCommandEvent &aEvent) override
A mix-in class (via multiple inheritance) that handles texts such as labels, parts,...
Definition eda_text.h:89
A shim class between EDA_DRAW_FRAME and several derived classes: SYMBOL_EDIT_FRAME,...
Schematic editor (Eeschema) main window.
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition sch_item.h:162
Add cut/copy/paste, dark theme, autocomplete and brace highlighting to a wxStyleTextCtrl instance.