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();
157 if( !wxDialog::TransferDataToWindow() )
160 bool firstCell =
true;
163 int textThickness = 0;
164 int effectivePenWidth = 0;
166 for( PCB_TABLECELL* cell :
m_cells )
172 m_fontCtrl->SetFontSelection( cell->GetFont() );
175 textThickness = cell->GetTextThickness();
176 effectivePenWidth = cell->GetEffectiveTextPenWidth();
178 hAlign = cell->GetHorizJustify();
179 vAlign = cell->GetVertJustify();
187 m_bold->Check( cell->IsBold() );
190 m_italic->Check( cell->IsItalic() );
199 if( cell->GetFont() !=
m_fontCtrl->GetFontSelection( cell->IsBold(), cell->IsItalic() ) )
202 if( cell->GetTextWidth() !=
m_textWidth.GetValue() )
208 if( cell->GetTextThickness() != textThickness )
211 if( cell->GetEffectiveTextPenWidth() != effectivePenWidth )
212 effectivePenWidth = -1;
214 if( cell->GetHorizJustify() != hAlign )
217 if( cell->GetVertJustify() != vAlign )
220 if( cell->GetMarginLeft() !=
m_marginLeft.GetIntValue() )
223 if( cell->GetMarginTop() !=
m_marginTop.GetIntValue() )
253 if( textThickness == 0 )
255 if( effectivePenWidth > 0 )
261 else if( textThickness > 0 )
273 if( aEvent.IsChecked() )
301 if( aEvent.IsChecked() )
307 wxCommandEvent
dummy;
324 if( btn->IsChecked() && btn != aEvent.GetEventObject() )
334 if( btn->IsChecked() && btn != aEvent.GetEventObject() )
342 if( !wxDialog::TransferDataFromWindow() )
345 BOARD_COMMIT commit(
m_frame );
350 bool pushCommit = (
m_table->GetEditFlags() == 0 );
357 for( PCB_TABLECELL* cell :
m_cells )
366 txt.Replace(
"\r",
"\n" );
367#elif defined( __WINDOWS__ )
370 txt.Replace(
"\r",
"" );
373 cell->SetText( txt );
376 cell->SetBold(
m_bold->IsChecked() );
377 cell->SetItalic(
m_italic->IsChecked() );
380 cell->SetFont(
m_fontCtrl->GetFontSelection( cell->IsBold(), cell->IsItalic() ) );
389 cell->SetAutoThickness(
true );
420 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...