mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-20 15:01:41 +00:00
Move dialog launch function into tool class
This makes it easier to find.
This commit is contained in:
parent
a2e115833c
commit
5705e928e1
@ -35,7 +35,7 @@
|
||||
#include <tool/tool_manager.h>
|
||||
#include <tools/pcb_selection_tool.h>
|
||||
#include <tools/global_edit_tool.h>
|
||||
#include "dialog_global_edit_tracks_and_vias_base.h"
|
||||
#include "dialog_global_edit_tracks_and_vias.h"
|
||||
|
||||
|
||||
// Columns of netclasses grid
|
||||
@ -69,60 +69,6 @@ static bool g_filterSelected = false;
|
||||
static bool g_setToSpecifiedValues = true;
|
||||
|
||||
|
||||
class DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS : public DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS_BASE
|
||||
{
|
||||
public:
|
||||
DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS( PCB_EDIT_FRAME* aParent );
|
||||
~DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS() override;
|
||||
|
||||
protected:
|
||||
void onActionButtonChange( wxCommandEvent& event ) override;
|
||||
|
||||
void OnNetclassFilterSelect( wxCommandEvent& event ) override
|
||||
{
|
||||
m_netclassFilterOpt->SetValue( true );
|
||||
}
|
||||
void OnLayerFilterSelect( wxCommandEvent& event ) override
|
||||
{
|
||||
m_layerFilterOpt->SetValue( true );
|
||||
}
|
||||
void OnTrackWidthText( wxCommandEvent& aEvent ) override
|
||||
{
|
||||
m_filterByTrackWidth->SetValue( true );
|
||||
}
|
||||
void OnViaSizeText( wxCommandEvent& aEvent ) override
|
||||
{
|
||||
m_filterByViaSize->SetValue( true );
|
||||
}
|
||||
|
||||
void onUnitsChanged( wxCommandEvent& aEvent );
|
||||
|
||||
private:
|
||||
void visitItem( PICKED_ITEMS_LIST* aUndoList, PCB_TRACK* aItem );
|
||||
void processItem( PICKED_ITEMS_LIST* aUndoList, PCB_TRACK* aItem );
|
||||
|
||||
bool TransferDataToWindow() override;
|
||||
bool TransferDataFromWindow() override;
|
||||
|
||||
void OnNetFilterSelect( wxCommandEvent& event )
|
||||
{
|
||||
m_netFilterOpt->SetValue( true );
|
||||
}
|
||||
|
||||
void buildFilterLists();
|
||||
|
||||
private:
|
||||
PCB_EDIT_FRAME* m_parent;
|
||||
BOARD* m_brd;
|
||||
PCB_SELECTION m_selection;
|
||||
|
||||
UNIT_BINDER m_trackWidthFilter;
|
||||
UNIT_BINDER m_viaSizeFilter;
|
||||
|
||||
std::vector<BOARD_ITEM*> m_items_changed; // a list of modified items
|
||||
};
|
||||
|
||||
|
||||
DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS::DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS( PCB_EDIT_FRAME* aParent ) :
|
||||
DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS_BASE( aParent ),
|
||||
m_trackWidthFilter( aParent, nullptr, m_trackWidthFilterCtrl, m_trackWidthFilterUnits ),
|
||||
@ -487,13 +433,3 @@ bool DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS::TransferDataFromWindow()
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
int GLOBAL_EDIT_TOOL::EditTracksAndVias( const TOOL_EVENT& aEvent )
|
||||
{
|
||||
PCB_EDIT_FRAME* editFrame = getEditFrame<PCB_EDIT_FRAME>();
|
||||
DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS dlg( editFrame );
|
||||
|
||||
dlg.ShowQuasiModal(); // QuasiModal required for NET_SELECTOR
|
||||
return 0;
|
||||
}
|
81
pcbnew/dialogs/dialog_global_edit_tracks_and_vias.h
Normal file
81
pcbnew/dialogs/dialog_global_edit_tracks_and_vias.h
Normal file
@ -0,0 +1,81 @@
|
||||
/*
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2009-2016 Jean-Pierre Charras, jean-pierre.charras at wanadoo.fr
|
||||
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version 2
|
||||
* of the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, you may find one here:
|
||||
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
||||
* or you may search the http://www.gnu.org website for the version 2 license,
|
||||
* or you may write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include "dialog_global_edit_tracks_and_vias_base.h"
|
||||
|
||||
#include <widgets/unit_binder.h>
|
||||
#include <tools/pcb_selection.h>
|
||||
|
||||
class DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS : public DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS_BASE
|
||||
{
|
||||
public:
|
||||
DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS( PCB_EDIT_FRAME* aParent );
|
||||
~DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS() override;
|
||||
|
||||
protected:
|
||||
void onActionButtonChange( wxCommandEvent& event ) override;
|
||||
|
||||
void OnNetclassFilterSelect( wxCommandEvent& event ) override
|
||||
{
|
||||
m_netclassFilterOpt->SetValue( true );
|
||||
}
|
||||
void OnLayerFilterSelect( wxCommandEvent& event ) override
|
||||
{
|
||||
m_layerFilterOpt->SetValue( true );
|
||||
}
|
||||
void OnTrackWidthText( wxCommandEvent& aEvent ) override
|
||||
{
|
||||
m_filterByTrackWidth->SetValue( true );
|
||||
}
|
||||
void OnViaSizeText( wxCommandEvent& aEvent ) override
|
||||
{
|
||||
m_filterByViaSize->SetValue( true );
|
||||
}
|
||||
|
||||
void onUnitsChanged( wxCommandEvent& aEvent );
|
||||
|
||||
private:
|
||||
void visitItem( PICKED_ITEMS_LIST* aUndoList, PCB_TRACK* aItem );
|
||||
void processItem( PICKED_ITEMS_LIST* aUndoList, PCB_TRACK* aItem );
|
||||
|
||||
bool TransferDataToWindow() override;
|
||||
bool TransferDataFromWindow() override;
|
||||
|
||||
void OnNetFilterSelect( wxCommandEvent& event )
|
||||
{
|
||||
m_netFilterOpt->SetValue( true );
|
||||
}
|
||||
|
||||
void buildFilterLists();
|
||||
|
||||
private:
|
||||
PCB_EDIT_FRAME* m_parent;
|
||||
BOARD* m_brd;
|
||||
PCB_SELECTION m_selection;
|
||||
|
||||
UNIT_BINDER m_trackWidthFilter;
|
||||
UNIT_BINDER m_viaSizeFilter;
|
||||
|
||||
std::vector<BOARD_ITEM*> m_items_changed; // a list of modified items
|
||||
};
|
@ -29,6 +29,7 @@
|
||||
#include <tools/edit_tool.h>
|
||||
#include <dialogs/dialog_exchange_footprints.h>
|
||||
#include <dialogs/dialog_cleanup_tracks_and_vias.h>
|
||||
#include <dialogs/dialog_global_edit_tracks_and_vias.h>
|
||||
#include <dialogs/dialog_swap_layers.h>
|
||||
#include <dialogs/dialog_unused_pad_layers.h>
|
||||
#include <tools/global_edit_tool.h>
|
||||
@ -187,6 +188,16 @@ int GLOBAL_EDIT_TOOL::SwapLayers( const TOOL_EVENT& aEvent )
|
||||
}
|
||||
|
||||
|
||||
int GLOBAL_EDIT_TOOL::EditTracksAndVias( const TOOL_EVENT& aEvent )
|
||||
{
|
||||
PCB_EDIT_FRAME* editFrame = getEditFrame<PCB_EDIT_FRAME>();
|
||||
DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS dlg( editFrame );
|
||||
|
||||
dlg.ShowQuasiModal(); // QuasiModal required for NET_SELECTOR
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
int GLOBAL_EDIT_TOOL::CleanupTracksAndVias( const TOOL_EVENT& aEvent )
|
||||
{
|
||||
PCB_EDIT_FRAME* editFrame = getEditFrame<PCB_EDIT_FRAME>();
|
||||
|
Loading…
Reference in New Issue
Block a user