You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*
* This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2023 Ethan Chien <liangtie.qian@gmail.com> * 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 */
#ifndef DIALOG_SYNC_SHEET_PINS_H
#define DIALOG_SYNC_SHEET_PINS_H
#include "dialog_sync_sheet_pins_base.h"
#include <sch_sheet_path.h>
#include <list>
#include <memory>
#include <unordered_map>
class SCH_SHEET;class EDA_ITEM;class SHEET_SYNCHRONIZATION_AGENT;class PANEL_SYNC_SHEET_PINS;class SCH_HIERLABEL;
class DIALOG_SYNC_SHEET_PINS : public DIALOG_SYNC_SHEET_PINS_BASE{public: enum class PlaceItemKind { UNDEFINED, SHEET_PIN, HIERLABEL };
DIALOG_SYNC_SHEET_PINS( wxWindow* aParent, std::list<SCH_SHEET_PATH> aSheetPath, std::shared_ptr<SHEET_SYNCHRONIZATION_AGENT> aAgent );
~DIALOG_SYNC_SHEET_PINS() override;
void OnClose( wxCloseEvent& aEvent );
/**
* Either the selected #HIERLABEL or #SHEET_PIN will be used as templates for placing the new ones. * * @param aSheet The sheet where the new #HIERLABEL or #SHEET_PIN will be placed. For #SHEET_PIN, * it's the corresponding sheet symbol. * @param aKind Either PlaceItemKind::HIERLABEL or PlaceItemKind::SHEET_PIN * @param aPlacementTemplateSet All the selected HIERLABELs or SHEET_PINs */ void PreparePlacementTemplate( SCH_SHEET* aSheet, PlaceItemKind aKind, std::set<EDA_ITEM*> const& aPlacementTemplateSet );
/**
* Get the Placement Template SHEET_PIN / HIERLABEL used for place a new #HIERLABEL/#SHEET_PIN. * * @return SCH_HIERLABEL* */ SCH_HIERLABEL* GetPlacementTemplate() const;
/**
* End place a new #HIERLABEL/#SHEET_PIN , and add the new item to the corresponding table. * * @param aNewItem The new #HIERLABEL/#SHEET_PIN to be placed. */ void EndPlaceItem( EDA_ITEM* aNewItem );
/**
* Check if there are more items to be placed. */ bool CanPlaceMore() const;
void EndPlacement();
private: /// It's the agent that performs modification and placement.
std::shared_ptr<SHEET_SYNCHRONIZATION_AGENT> m_agent; SCH_SHEET* m_lastEditSheet;
/// The same sheet may have multiple instances.
std::unordered_map<SCH_SHEET*, PANEL_SYNC_SHEET_PINS*> m_panels; PlaceItemKind m_placeItemKind; EDA_ITEM* m_currentTemplate; std::set<EDA_ITEM*> m_placementTemplateSet;};
#endif
|