12PANEL_EESCHEMA_EDITING_OPTIONS_BASE::PANEL_EESCHEMA_EDITING_OPTIONS_BASE( wxWindow* parent, wxWindowID
id,
const wxPoint& pos,
const wxSize& size,
long style,
const wxString&
name ) :
RESETTABLE_PANEL( parent, id, pos, size, style,
name )
14 wxBoxSizer* bPanelSizer;
15 bPanelSizer =
new wxBoxSizer( wxHORIZONTAL );
17 wxBoxSizer* bLeftColumn;
18 bLeftColumn =
new wxBoxSizer( wxVERTICAL );
20 m_editingLabel =
new wxStaticText(
this, wxID_ANY,
_(
"Editing"), wxDefaultPosition, wxDefaultSize, 0 );
22 bLeftColumn->Add(
m_editingLabel, 0, wxTOP|wxRIGHT|wxLEFT|wxEXPAND, 13 );
24 m_staticline3 =
new wxStaticLine(
this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
25 bLeftColumn->Add(
m_staticline3, 0, wxEXPAND|wxTOP|wxBOTTOM, 2 );
28 bSizer5 =
new wxBoxSizer( wxVERTICAL );
31 bSizer61 =
new wxBoxSizer( wxHORIZONTAL );
33 m_staticText24 =
new wxStaticText(
this, wxID_ANY,
_(
"Line drawing mode:"), wxDefaultPosition, wxDefaultSize, 0 );
35 bSizer61->Add(
m_staticText24, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5 );
37 wxString m_choiceLineModeChoices[] = {
_(
"Free Angle"),
_(
"90 deg Angle"),
_(
"45 deg Angle") };
38 int m_choiceLineModeNChoices =
sizeof( m_choiceLineModeChoices ) /
sizeof( wxString );
39 m_choiceLineMode =
new wxChoice(
this, wxID_ANY, wxDefaultPosition, wxDefaultSize, m_choiceLineModeNChoices, m_choiceLineModeChoices, 0 );
44 bSizer5->Add( bSizer61, 1, wxEXPAND, 5 );
46 m_staticTextArcEdit =
new wxStaticText(
this, wxID_ANY,
_(
"Arc editing mode:"), wxDefaultPosition, wxDefaultSize, 0 );
50 wxString m_choiceArcModeChoices[] = {
_(
"Keep center, adjust radius"),
_(
"Keep endpoints or direction of starting point"),
_(
"Keep center and radius, adjust endpoints") };
51 int m_choiceArcModeNChoices =
sizeof( m_choiceArcModeChoices ) /
sizeof( wxString );
52 m_choiceArcMode =
new wxChoice(
this, wxID_ANY, wxDefaultPosition, wxDefaultSize, m_choiceArcModeNChoices, m_choiceArcModeChoices, 0 );
56 m_mouseDragIsDrag =
new wxCheckBox(
this, wxID_ANY,
_(
"Mouse drag performs Drag (G) operation"), wxDefaultPosition, wxDefaultSize, 0 );
57 m_mouseDragIsDrag->SetToolTip(
_(
"If unchecked, mouse drag will perform move (M) operation") );
61 m_cbAutoStartWires =
new wxCheckBox(
this, wxID_ANY,
_(
"Automatically start wires on unconnected pins"), wxDefaultPosition, wxDefaultSize, 0 );
62 m_cbAutoStartWires->SetToolTip(
_(
"When enabled, you can start wiring by clicking on unconnected pins even when the wire tool is not active") );
66 m_escClearsNetHighlight =
new wxCheckBox(
this, wxID_ANY,
_(
"<ESC> clears net highlighting"), wxDefaultPosition, wxDefaultSize, 0 );
67 m_escClearsNetHighlight->SetToolTip(
_(
"First <ESC> in selection tool clears selection, next clears net highlighting") );
71 m_checkAutoAnnotate =
new wxCheckBox(
this, wxID_ANY,
_(
"Automatically annotate symbols"), wxDefaultPosition, wxDefaultSize, 0 );
80 bLeftColumn->Add( bSizer5, 0, wxEXPAND|wxTOP|wxLEFT, 5 );
83 bLeftColumn->Add( 0, 15, 0, wxEXPAND, 5 );
85 m_staticText26 =
new wxStaticText(
this, wxID_ANY,
_(
"Defaults for New Objects"), wxDefaultPosition, wxDefaultSize, 0 );
87 bLeftColumn->Add(
m_staticText26, 0, wxTOP|wxRIGHT|wxLEFT|wxEXPAND, 13 );
89 m_staticline4 =
new wxStaticLine(
this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
90 bLeftColumn->Add(
m_staticline4, 0, wxEXPAND|wxTOP|wxBOTTOM, 2 );
92 wxGridBagSizer* gbSizer1;
93 gbSizer1 =
new wxGridBagSizer( 0, 0 );
94 gbSizer1->SetFlexibleDirection( wxBOTH );
95 gbSizer1->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
97 m_borderColorLabel =
new wxStaticText(
this, wxID_ANY,
_(
"Sheet border:"), wxDefaultPosition, wxDefaultSize, 0 );
102 m_borderColorSwatch->SetForegroundColour( wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW ) );
106 m_backgroundColorLabel =
new wxStaticText(
this, wxID_ANY,
_(
"Sheet background:"), wxDefaultPosition, wxDefaultSize, 0 );
115 m_powerSymbolLabel =
new wxStaticText(
this, wxID_ANY,
_(
"Power Symbols:"), wxDefaultPosition, wxDefaultSize, 0 );
117 gbSizer1->Add(
m_powerSymbolLabel, wxGBPosition( 1, 0 ), wxGBSpan( 1, 1 ), wxALIGN_CENTER_VERTICAL|wxALL, 5 );
119 wxString m_choicePowerChoices[] = {
_(
"Default"),
_(
"Global"),
_(
"Local") };
120 int m_choicePowerNChoices =
sizeof( m_choicePowerChoices ) /
sizeof( wxString );
121 m_choicePower =
new wxChoice(
this, wxID_ANY, wxDefaultPosition, wxDefaultSize, m_choicePowerNChoices, m_choicePowerChoices, 0 );
123 m_choicePower->SetToolTip(
_(
"Select the assigned type of new power symbol.\nDefault will follow the symbol definition.\nGlobal will convert new power symbols to global power symbols.\nLocal will convert new power symbols to a local power symbols.") );
125 gbSizer1->Add(
m_choicePower, wxGBPosition( 1, 1 ), wxGBSpan( 1, 2 ), wxALIGN_CENTER_VERTICAL|wxALL|wxEXPAND, 5 );
128 bLeftColumn->Add( gbSizer1, 0, wxEXPAND|wxLEFT|wxTOP, 10 );
130 wxFlexGridSizer* fgSizer4;
131 fgSizer4 =
new wxFlexGridSizer( 2, 4, 0, 0 );
132 fgSizer4->SetFlexibleDirection( wxBOTH );
133 fgSizer4->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
136 bLeftColumn->Add( fgSizer4, 1, wxEXPAND, 5 );
139 bSizer6 =
new wxBoxSizer( wxHORIZONTAL );
142 bLeftColumn->Add( bSizer6, 0, wxEXPAND|wxTOP|wxLEFT, 10 );
145 bLeftColumn->Add( 0, 15, 0, wxEXPAND, 5 );
147 m_leftClickCmdsBook =
new wxSimplebook(
this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0 );
150 bSizer8 =
new wxBoxSizer( wxVERTICAL );
157 bSizer8->Add(
m_staticline6, 0, wxEXPAND|wxTOP|wxBOTTOM, 2 );
160 bSizer9 =
new wxBoxSizer( wxVERTICAL );
162 m_hint1 =
new wxStaticText(
m_pageWinLin, wxID_ANY,
_(
"Left click (and drag) actions depend on 2 modifier keys:\nShift and Ctrl"), wxDefaultPosition, wxDefaultSize, 0 );
164 bSizer9->Add(
m_hint1, 0, wxTOP|wxRIGHT|wxLEFT, 5 );
166 wxFlexGridSizer* fgSizerCmdsWinLin;
167 fgSizerCmdsWinLin =
new wxFlexGridSizer( 0, 2, 0, 5 );
168 fgSizerCmdsWinLin->SetFlexibleDirection( wxBOTH );
169 fgSizerCmdsWinLin->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
196 bSizer9->Add( fgSizerCmdsWinLin, 0, wxEXPAND|wxTOP, 5 );
199 bSizer8->Add( bSizer9, 0, wxEXPAND|wxLEFT, 5 );
207 wxBoxSizer* bSizer10;
208 bSizer10 =
new wxBoxSizer( wxVERTICAL );
214 m_staticline7 =
new wxStaticLine(
m_pageMac, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
217 wxBoxSizer* bSizer11;
218 bSizer11 =
new wxBoxSizer( wxVERTICAL );
220 m_hint2 =
new wxStaticText(
m_pageMac, wxID_ANY,
_(
"Left click (and drag) actions depend on 3 modifier keys:\nOption, Shift and Cmd"), wxDefaultPosition, wxDefaultSize, 0 );
222 bSizer11->Add(
m_hint2, 0, wxALL, 5 );
224 wxFlexGridSizer* fgSizerCmdsWinMac;
225 fgSizerCmdsWinMac =
new wxFlexGridSizer( 0, 2, 0, 5 );
226 fgSizerCmdsWinMac->SetFlexibleDirection( wxBOTH );
227 fgSizerCmdsWinMac->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
233 m_staticText12 =
new wxStaticText(
m_pageMac, wxID_ANY,
_(
"Clarify selection from menu"), wxDefaultPosition, wxDefaultSize, 0 );
241 m_staticText10 =
new wxStaticText(
m_pageMac, wxID_ANY,
_(
"Add item(s) to selection"), wxDefaultPosition, wxDefaultSize, 0 );
249 m_staticText16 =
new wxStaticText(
m_pageMac, wxID_ANY,
_(
"Remove item(s) from selection"), wxDefaultPosition, wxDefaultSize, 0 );
257 m_staticText14 =
new wxStaticText(
m_pageMac, wxID_ANY,
_(
"Clarify selection from menu"), wxDefaultPosition, wxDefaultSize, 0 );
262 bSizer11->Add( fgSizerCmdsWinMac, 1, wxEXPAND|wxTOP, 5 );
265 bSizer10->Add( bSizer11, 0, wxEXPAND|wxTOP|wxLEFT, 5 );
276 bPanelSizer->Add( bLeftColumn, 0, wxEXPAND|wxRIGHT, 35 );
278 wxBoxSizer* bRightColumn;
279 bRightColumn =
new wxBoxSizer( wxVERTICAL );
281 m_staticText32 =
new wxStaticText(
this, wxID_ANY,
_(
"Symbol Field Automatic Placement"), wxDefaultPosition, wxDefaultSize, 0 );
283 bRightColumn->Add(
m_staticText32, 0, wxTOP|wxRIGHT|wxLEFT|wxEXPAND, 13 );
285 m_staticline10 =
new wxStaticLine(
this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
286 bRightColumn->Add(
m_staticline10, 0, wxEXPAND|wxTOP|wxBOTTOM, 2 );
288 wxBoxSizer* bSizer12;
289 bSizer12 =
new wxBoxSizer( wxVERTICAL );
291 m_checkAutoplaceFields =
new wxCheckBox(
this, wxID_ANY,
_(
"A&utomatically place symbol fields"), wxDefaultPosition, wxDefaultSize, 0 );
294 m_checkAutoplaceJustify =
new wxCheckBox(
this, wxID_ANY,
_(
"A&llow field autoplace to change justification"), wxDefaultPosition, wxDefaultSize, 0 );
297 m_checkAutoplaceAlign =
new wxCheckBox(
this, wxID_ANY,
_(
"Al&ways align autoplaced fields to the 50 mil grid"), wxDefaultPosition, wxDefaultSize, 0 );
301 bRightColumn->Add( bSizer12, 0, wxEXPAND|wxTOP|wxLEFT, 5 );
304 bRightColumn->Add( 0, 15, 0, wxEXPAND, 5 );
306 m_staticText321 =
new wxStaticText(
this, wxID_ANY,
_(
"Repeated Items"), wxDefaultPosition, wxDefaultSize, 0 );
308 bRightColumn->Add(
m_staticText321, 0, wxTOP|wxRIGHT|wxLEFT|wxEXPAND, 13 );
310 m_staticline9 =
new wxStaticLine(
this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
311 bRightColumn->Add(
m_staticline9, 0, wxEXPAND|wxTOP|wxBOTTOM, 2 );
313 wxBoxSizer* bSizer13;
314 bSizer13 =
new wxBoxSizer( wxVERTICAL );
316 wxFlexGridSizer* fgSizerRepeatOpt1;
317 fgSizerRepeatOpt1 =
new wxFlexGridSizer( 0, 3, 5, 5 );
318 fgSizerRepeatOpt1->SetFlexibleDirection( wxBOTH );
319 fgSizerRepeatOpt1->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
321 m_hPitchLabel =
new wxStaticText(
this, wxID_ANY,
_(
"&Horizontal pitch:"), wxDefaultPosition, wxDefaultSize, 0 );
323 fgSizerRepeatOpt1->Add(
m_hPitchLabel, 0, wxALIGN_CENTER_VERTICAL|wxLEFT, 5 );
325 m_hPitchCtrl =
new wxTextCtrl(
this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 );
326 fgSizerRepeatOpt1->Add(
m_hPitchCtrl, 0, wxALIGN_CENTER_VERTICAL|wxEXPAND, 5 );
328 m_hPitchUnits =
new wxStaticText(
this, wxID_ANY,
_(
"mils"), wxDefaultPosition, wxDefaultSize, 0 );
330 fgSizerRepeatOpt1->Add(
m_hPitchUnits, 0, wxALIGN_CENTER_VERTICAL, 5 );
332 m_vPitchLabel =
new wxStaticText(
this, wxID_ANY,
_(
"&Vertical pitch:"), wxDefaultPosition, wxDefaultSize, 0 );
334 fgSizerRepeatOpt1->Add(
m_vPitchLabel, 0, wxALIGN_CENTER_VERTICAL|wxLEFT, 5 );
336 m_vPitchCtrl =
new wxTextCtrl(
this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 );
337 fgSizerRepeatOpt1->Add(
m_vPitchCtrl, 0, wxALIGN_CENTER_VERTICAL|wxEXPAND, 5 );
339 m_vPitchUnits =
new wxStaticText(
this, wxID_ANY,
_(
"mils"), wxDefaultPosition, wxDefaultSize, 0 );
341 fgSizerRepeatOpt1->Add(
m_vPitchUnits, 0, wxALIGN_CENTER_VERTICAL, 5 );
343 m_labelIncrementLabel =
new wxStaticText(
this, wxID_ANY,
_(
"Label increment:"), wxDefaultPosition, wxDefaultSize, 0 );
347 m_spinLabelRepeatStep =
new wxSpinCtrl(
this, wxID_ANY, wxT(
"1"), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, -1000000, 1000000, 1 );
351 fgSizerRepeatOpt1->Add( 0, 0, 1, wxEXPAND, 3 );
354 bSizer13->Add( fgSizerRepeatOpt1, 0, wxEXPAND|wxTOP, 5 );
357 bRightColumn->Add( bSizer13, 0, wxEXPAND|wxTOP|wxLEFT, 5 );
360 bRightColumn->Add( 0, 15, 0, wxEXPAND, 5 );
362 m_staticText322 =
new wxStaticText(
this, wxID_ANY,
_(
"Dialog Preferences"), wxDefaultPosition, wxDefaultSize, 0 );
364 bRightColumn->Add(
m_staticText322, 0, wxTOP|wxRIGHT|wxLEFT|wxEXPAND, 13 );
366 m_staticline8 =
new wxStaticLine(
this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
367 bRightColumn->Add(
m_staticline8, 0, wxEXPAND|wxTOP|wxBOTTOM, 2 );
369 wxBoxSizer* bSizer14;
370 bSizer14 =
new wxBoxSizer( wxVERTICAL );
372 m_footprintPreview =
new wxCheckBox(
this, wxID_ANY,
_(
"Show footprint previews in Symbol Chooser"), wxDefaultPosition, wxDefaultSize, 0 );
375 m_neverShowRescue =
new wxCheckBox(
this, wxID_ANY,
_(
"Never show Rescue Symbols tool"), wxDefaultPosition, wxDefaultSize, 0 );
379 bRightColumn->Add( bSizer14, 0, wxEXPAND|wxTOP|wxLEFT, 5 );
382 bPanelSizer->Add( bRightColumn, 0, wxEXPAND|wxRIGHT|wxLEFT, 5 );
385 this->SetSizer( bPanelSizer );
387 bPanelSizer->Fit(
this );