38#include <wx/statbox.h>
39#include <wx/statline.h>
40#include <wx/radiobut.h>
42#define LAYER_LIST_COLUMN_CHECK 0
43#define LAYER_LIST_COLUMN_ICON 1
44#define LAYER_LIST_COLUMN_NAME 2
45#define LAYER_LIST_ROW_ALL_INNER_LAYERS 1
106 m_board( aBoard ), m_outlineHatchPitch( aParent, m_stBorderHatchPitchText,
107 m_outlineHatchPitchCtrl, m_outlineHatchUnits ),
108 m_convertSettings( aConvertSettings ), m_rbCenterline( nullptr ),
109 m_rbBoundingHull( nullptr ), m_cbDeleteOriginals( nullptr ),
110 m_notFoundPlacementSource( false ),
134 if( aConvertSettings )
136 wxStaticBox* bConvertBox =
new wxStaticBox(
this, wxID_ANY,
137 _(
"Conversion Settings" ) );
138 wxStaticBoxSizer* bConvertSizer =
new wxStaticBoxSizer( bConvertBox, wxVERTICAL );
140 m_rbCenterline =
new wxRadioButton(
this, wxID_ANY,
_(
"Use centerlines" ) );
143 bConvertSizer->AddSpacer( 2 );
144 m_rbBoundingHull =
new wxRadioButton(
this, wxID_ANY,
_(
"Create bounding hull" ) );
147 m_gapLabel =
new wxStaticText(
this, wxID_ANY,
_(
"Gap:" ) );
148 m_gapCtrl =
new wxTextCtrl(
this, wxID_ANY );
149 m_gapUnits =
new wxStaticText(
this, wxID_ANY,
_(
"mm" ) );
152 wxBoxSizer* hullParamsSizer =
new wxBoxSizer( wxHORIZONTAL );
153 hullParamsSizer->Add(
m_gapLabel, 0, wxALIGN_CENTRE_VERTICAL, 5 );
154 hullParamsSizer->Add(
m_gapCtrl, 1, wxALIGN_CENTRE_VERTICAL|wxLEFT|wxRIGHT, 3 );
155 hullParamsSizer->Add(
m_gapUnits, 0, wxALIGN_CENTRE_VERTICAL, 5 );
157 bConvertSizer->AddSpacer( 2 );
158 bConvertSizer->Add( hullParamsSizer, 0, wxLEFT, 26 );
160 bConvertSizer->AddSpacer( 6 );
162 _(
"Delete source objects after conversion" ) );
165 GetSizer()->Insert( 0, bConvertSizer, 0, wxALL|wxEXPAND, 10 );
167 wxStaticLine* line =
new wxStaticLine(
this, wxID_ANY, wxDefaultPosition, wxDefaultSize,
169 GetSizer()->Insert( 1, line, 0, wxLEFT|wxRIGHT|wxEXPAND, 10 );
171 SetTitle(
_(
"Convert to Rule Area" ) );
246 std::set<wxString> classNames;
249 classNames.insert( k );
251 for(
const wxString& sourceName : classNames )
255 std::set<wxString> sheetNames;
258 sheetNames.insert( fp->GetSheetname() );
260 for(
const wxString& sourceName : sheetNames )
264 auto setupCurrentSourceSelection = [&]( wxComboBox* cb )
266 if( curSourceName == wxEmptyString )
269 if( !cb->SetStringSelection( curSourceName ) )
273 wxString notFoundDisplayName =
_(
"Not found on board: " ) + curSourceName;
274 cb->Insert( notFoundDisplayName, 0 );
280 == RULE_AREA_PLACEMENT_SOURCE_TYPE::SHEETNAME )
313 case ZONE_BORDER_DISPLAY_STYLE::INVISIBLE_BORDER:
330 if( event.GetColumn() != 0 )
333 int row =
m_layers->ItemToRow( event.GetItem() );
390 if( sourceType == RULE_AREA_PLACEMENT_SOURCE_TYPE::SHEETNAME )
395 int selectedSourceIdx = cb->GetSelection();
397 if( selectedSourceIdx != wxNOT_FOUND )
414 setPlacementSource( RULE_AREA_PLACEMENT_SOURCE_TYPE::SHEETNAME );
419 setPlacementSource( RULE_AREA_PLACEMENT_SOURCE_TYPE::COMPONENT_CLASS );
constexpr EDA_IU_SCALE pcbIUScale
BASE_SET & set(size_t pos)
Information pertinent to a Pcbnew printed circuit board.
int GetCopperLayerCount() const
const FOOTPRINTS & Footprints() const
COMPONENT_CLASS_MANAGER & GetComponentClassManager()
Gets the component class manager.
const std::unordered_map< wxString, std::unique_ptr< COMPONENT_CLASS > > & GetClasses() const
Fetches a read-only map of the fundamental component classes.
Class DIALOG_RULE_AREA_PROPERTIES_BASE.
wxNotebook * m_areaPropertiesNb
wxChoice * m_OutlineDisplayCtrl
wxDataViewListCtrl * m_layers
void OnLayerSelection(wxDataViewEvent &event) override
wxString m_notFoundPlacementSourceName
PCB_BASE_FRAME * m_parent
wxStaticText * m_gapUnits
ZONE_SETTINGS m_zonesettings
the working copy of zone settings
bool m_notFoundPlacementSource
UNIT_BINDER m_outlineHatchPitch
bool TransferDataFromWindow() override
void OnSheetNameClicked(wxCommandEvent &event)
PANEL_RULE_AREA_PROPERTIES_KEEPOUT_BASE * m_keepoutProperties
ZONE_SETTINGS * m_ptr
the pointer to the zone settings of the zone to edit
~DIALOG_RULE_AREA_PROPERTIES()
wxRadioButton * m_rbCenterline
wxStaticText * m_gapLabel
PANEL_RULE_AREA_PROPERTIES_PLACEMENT_BASE * m_placementProperties
wxCheckBox * m_cbDeleteOriginals
RULE_AREA_PLACEMENT_SOURCE_TYPE m_lastPlacementSourceType
bool TransferDataToWindow() override
DIALOG_RULE_AREA_PROPERTIES(PCB_BASE_FRAME *aParent, ZONE_SETTINGS *aSettings, CONVERT_SETTINGS *aConvertSettings, BOARD *aBoard)
RULE_AREA_PLACEMENT_SOURCE_TYPE m_originalPlacementSourceType
void OnComponentClassClicked(wxCommandEvent &event)
wxRadioButton * m_rbBoundingHull
CONVERT_SETTINGS * m_convertSettings
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...
bool IsType(FRAME_T aType) const
LSET is a set of PCB_LAYER_IDs.
static LSET AllNonCuMask()
Return a mask holding all layer minus CU layers.
static LSET InternalCuMask()
Return a complete set of internal copper layers which is all Cu layers except F_Cu and B_Cu.
static LSET AllCuMask(int aCuLayerCount=MAX_CU_LAYERS)
Return a mask holding the requested number of Cu PCB_LAYER_IDs.
Class PANEL_RULE_AREA_PROPERTIES_KEEPOUT_BASE.
wxCheckBox * m_cbTracksCtrl
wxCheckBox * m_cbFootprintsCtrl
wxCheckBox * m_cbViasCtrl
wxCheckBox * m_cbCopperPourCtrl
wxCheckBox * m_cbPadsCtrl
Class PANEL_RULE_AREA_PROPERTIES_PLACEMENT_BASE.
wxComboBox * m_componentClassCombo
wxCheckBox * m_ComponentsCb
wxComboBox * m_sheetCombo
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.
virtual bool Validate(double aMin, double aMax, EDA_UNITS aUnits=EDA_UNITS::UNSCALED)
Validate the control against the given range, informing the user of any errors found.
virtual void SetValue(long long int aValue)
Set new value (in Internal Units) for the text field, taking care of units conversion.
ZONE_SETTINGS handles zones parameters.
bool GetDoNotAllowCopperPour() const
void SetIsRuleArea(bool aEnable)
bool GetDoNotAllowTracks() const
RULE_AREA_PLACEMENT_SOURCE_TYPE GetRuleAreaPlacementSourceType() const
void SetDoNotAllowVias(bool aEnable)
bool GetDoNotAllowFootprints() const
void SetRuleAreaPlacementSourceType(RULE_AREA_PLACEMENT_SOURCE_TYPE aType)
wxString GetRuleAreaPlacementSource() const
bool GetDoNotAllowPads() const
void SetRuleAreaPlacementEnabled(bool aEnabled)
void SetRuleAreaPlacementSource(const wxString &aSource)
void SetDoNotAllowTracks(bool aEnable)
bool GetDoNotAllowVias() const
bool GetRuleAreaPlacementEnabled() const
void SetupLayersList(wxDataViewListCtrl *aList, PCB_BASE_FRAME *aFrame, LSET aLayers, bool aFpEditorMode)
A helper routine for the various zone dialogs (copper, non-copper, keepout).
bool HasKeepoutParametersSet() const
Accessor to determine if any keepout parameters are set.
void SetDoNotAllowFootprints(bool aEnable)
void SetDoNotAllowPads(bool aEnable)
ZONE_BORDER_DISPLAY_STYLE m_ZoneBorderDisplayStyle
Option to show the zone area (outlines only, short hatches or full hatches.
void SetDoNotAllowCopperPour(bool aEnable)
void DisplayError(wxWindow *aParent, const wxString &aText, int aDisplayTime)
Display an error or warning message box with aMessage.
This file is part of the common library.
#define LAYER_LIST_ROW_ALL_INNER_LAYERS
#define LAYER_LIST_COLUMN_NAME
#define LAYER_LIST_COLUMN_CHECK
int InvokeRuleAreaEditor(PCB_BASE_FRAME *aCaller, ZONE_SETTINGS *aZoneSettings, BOARD *aBoard, CONVERT_SETTINGS *aConvertSettings)
Function InvokeRuleAreaEditor invokes up a modal dialog window for copper zone editing.
PCB_LAYER_ID ToLAYER_ID(int aLayer)
CONVERT_STRATEGY m_Strategy
constexpr int mmToIU(double mm) const
Class ZONE_SETTINGS used to handle zones parameters in dialogs.
RULE_AREA_PLACEMENT_SOURCE_TYPE
#define ZONE_BORDER_HATCH_MINDIST_MM
#define ZONE_BORDER_HATCH_MAXDIST_MM