24#include <wx/hyperlink.h>
46 std::vector<PCB_TABLECELL*> aCells ) :
69 m_cellText->SetTechnology( wxSTC_TECHNOLOGY_DIRECTWRITE );
75 [
this]( wxKeyEvent& aEvent )
77 wxPostEvent(
this, wxCommandEvent( wxEVT_COMMAND_BUTTON_CLICKED, wxID_OK ) );
80 [
this]( wxStyledTextEvent& aEvent )
84 [
this](
const wxString& xRef, wxArrayString* tokens )
117 m_bold->SetIsCheckButton();
156 if( !wxDialog::TransferDataToWindow() )
159 bool firstCell =
true;
162 int textThickness = 0;
163 int effectivePenWidth = 0;
165 for( PCB_TABLECELL* cell :
m_cells )
171 m_fontCtrl->SetFontSelection( cell->GetFont() );
174 textThickness = cell->GetTextThickness();
175 effectivePenWidth = cell->GetEffectiveTextPenWidth();
177 hAlign = cell->GetHorizJustify();
178 vAlign = cell->GetVertJustify();
186 m_bold->Check( cell->IsBold() );
189 m_italic->Check( cell->IsItalic() );
198 if( cell->GetFont() !=
m_fontCtrl->GetFontSelection( cell->IsBold(), cell->IsItalic() ) )
201 if( cell->GetTextWidth() !=
m_textWidth.GetValue() )
207 if( cell->GetTextThickness() != textThickness )
210 if( cell->GetEffectiveTextPenWidth() != effectivePenWidth )
211 effectivePenWidth = -1;
213 if( cell->GetHorizJustify() != hAlign )
216 if( cell->GetVertJustify() != vAlign )
219 if( cell->GetMarginLeft() !=
m_marginLeft.GetIntValue() )
222 if( cell->GetMarginTop() !=
m_marginTop.GetIntValue() )
252 if( textThickness == 0 )
254 if( effectivePenWidth > 0 )
260 else if( textThickness > 0 )
272 if( aEvent.IsChecked() )
300 if( aEvent.IsChecked() )
306 wxCommandEvent
dummy;
323 if( btn->IsChecked() && btn != aEvent.GetEventObject() )
333 if( btn->IsChecked() && btn != aEvent.GetEventObject() )
341 if( !wxDialog::TransferDataFromWindow() )
344 BOARD_COMMIT commit(
m_frame );
349 bool pushCommit = (
m_table->GetEditFlags() == 0 );
356 for( PCB_TABLECELL* cell :
m_cells )
365 txt.Replace(
"\r",
"\n" );
366#elif defined( __WINDOWS__ )
369 txt.Replace(
"\r",
"" );
372 cell->SetText( txt );
375 cell->SetBold(
m_bold->IsChecked() );
376 cell->SetItalic(
m_italic->IsChecked() );
379 cell->SetFont(
m_fontCtrl->GetFontSelection( cell->IsBold(), cell->IsItalic() ) );
388 cell->SetAutoThickness(
true );
419 if( !commit.Empty() )
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap, int aMinHeight)
#define SKIP_CONNECTIVITY
void SetInitialFocus(wxWindow *aWindow)
Sets the window (usually a wxTextCtrl) that should be focused when the dialog is shown.
void SetupStandardButtons(std::map< int, wxString > aLabels={})
void finishDialogSettings()
In all dialogs, we must call the same functions to fix minimal dlg size, the default position and per...
virtual void OnCharHook(wxKeyEvent &aEvt)
DIALOG_TABLECELL_PROPERTIES_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxString &title=_("Table Cell Properties"), const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxSize(-1, -1), long style=wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER)
BITMAP_BUTTON * m_vAlignTop
BITMAP_BUTTON * m_vAlignCenter
BITMAP_BUTTON * m_hAlignRight
BITMAP_BUTTON * m_hAlignCenter
BITMAP_BUTTON * m_vAlignBottom
wxStyledTextCtrl * m_cellTextCtrl
wxStaticText * m_SizeXLabel
wxTextCtrl * m_marginTopCtrl
wxStaticText * m_ThicknessUnits
BITMAP_BUTTON * m_autoTextThickness
BITMAP_BUTTON * m_separator0
wxTextCtrl * m_ThicknessCtrl
wxTextCtrl * m_marginBottomCtrl
BITMAP_BUTTON * m_hAlignLeft
wxStaticText * m_SizeXUnits
wxTextCtrl * m_marginRightCtrl
wxStaticText * m_marginTopUnits
wxTextCtrl * m_marginLeftCtrl
wxStaticText * m_SizeYUnits
BITMAP_BUTTON * m_separator1
wxStaticText * m_ThicknessLabel
wxStaticText * m_SizeYLabel
UNIT_BINDER m_textThickness
bool TransferDataFromWindow() override
void onBoldToggle(wxCommandEvent &aEvent) override
std::vector< SCH_TABLECELL * > m_cells
HTML_MESSAGE_BOX * m_helpWindow
@ TABLECELL_PROPS_EDIT_TABLE
void onTextSize(wxCommandEvent &aEvent) override
void onHAlignButton(wxCommandEvent &aEvent)
void onAutoTextThickness(wxCommandEvent &aEvent) override
void onEditTable(wxCommandEvent &aEvent) override
enum TABLECELL_PROPS_RETVALUE m_returnValue
wxStyledTextCtrl * m_cellText
SCINTILLA_TRICKS * m_scintillaTricks
DIALOG_TABLECELL_PROPERTIES(SCH_EDIT_FRAME *aParentFrame, std::vector< SCH_TABLECELL * > aCells)
UNIT_BINDER m_marginBottom
bool TransferDataToWindow() override
~DIALOG_TABLECELL_PROPERTIES()
UNIT_BINDER m_marginRight
void onSyntaxHelp(wxHyperlinkEvent &aEvent) override
void onVAlignButton(wxCommandEvent &aEvent)
Common, abstract interface for edit frames.
static HTML_MESSAGE_BOX * ShowSyntaxHelp(wxWindow *aParentWindow)
Display a syntax help window for text variables and expressions.
Add cut/copy/paste, dark theme, autocomplete and brace highlighting to a wxStyleTextCtrl instance.
This file is part of the common library.
#define IN_EDIT
Item currently edited.
int GetPenSizeForBold(int aTextSize)
int GetPenSizeForNormal(int aTextSize)
std::vector< FAB_LAYER_COLOR > dummy
GR_TEXT_H_ALIGN_T
This is API surface mapped to common.types.HorizontalAlignment.
@ GR_TEXT_H_ALIGN_INDETERMINATE
GR_TEXT_V_ALIGN_T
This is API surface mapped to common.types.VertialAlignment.
@ GR_TEXT_V_ALIGN_INDETERMINATE
#define INDETERMINATE_STATE
Used for holding indeterminate values, such as with multiple selections holding different values or c...