kicad-source/pcbnew/api/api_handler_pcb.h

173 lines
6.9 KiB
C
Raw Normal View History

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2023 Jon Evans <jon@craftyjon.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 3 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef KICAD_API_HANDLER_PCB_H
#define KICAD_API_HANDLER_PCB_H
#include <google/protobuf/empty.pb.h>
#include <api/api_handler_editor.h>
#include <api/board/board_commands.pb.h>
#include <api/board/board_types.pb.h>
#include <api/common/commands/editor_commands.pb.h>
2024-11-28 19:21:18 -05:00
#include <api/common/commands/project_commands.pb.h>
#include <kiid.h>
#include <properties/property_mgr.h>
using namespace kiapi;
using namespace kiapi::common;
using namespace kiapi::board::commands;
using google::protobuf::Empty;
class BOARD_COMMIT;
class BOARD_ITEM;
class BOARD_ITEM_CONTAINER;
class EDA_ITEM;
class PCB_EDIT_FRAME;
class PCB_TRACK;
class PROPERTY_BASE;
class API_HANDLER_PCB : public API_HANDLER_EDITOR
{
public:
API_HANDLER_PCB( PCB_EDIT_FRAME* aFrame );
private:
typedef std::map<std::string, PROPERTY_BASE*> PROTO_PROPERTY_MAP;
static HANDLER_RESULT<std::unique_ptr<BOARD_ITEM>> createItemForType( KICAD_T aType,
BOARD_ITEM_CONTAINER* aContainer );
HANDLER_RESULT<commands::RunActionResponse> handleRunAction( const HANDLER_CONTEXT<commands::RunAction>& aCtx );
HANDLER_RESULT<commands::GetOpenDocumentsResponse> handleGetOpenDocuments(
const HANDLER_CONTEXT<commands::GetOpenDocuments>& aCtx );
HANDLER_RESULT<Empty> handleSaveDocument( const HANDLER_CONTEXT<commands::SaveDocument>& aCtx );
HANDLER_RESULT<Empty> handleSaveCopyOfDocument(
const HANDLER_CONTEXT<commands::SaveCopyOfDocument>& aCtx );
HANDLER_RESULT<Empty> handleRevertDocument(
const HANDLER_CONTEXT<commands::RevertDocument>& aCtx );
HANDLER_RESULT<commands::GetItemsResponse> handleGetItems(
const HANDLER_CONTEXT<commands::GetItems>& aCtx );
2025-01-21 19:52:38 -05:00
HANDLER_RESULT<commands::SelectionResponse> handleGetSelection(
const HANDLER_CONTEXT<commands::GetSelection>& aCtx );
HANDLER_RESULT<Empty> handleClearSelection(
const HANDLER_CONTEXT<commands::ClearSelection>& aCtx );
HANDLER_RESULT<commands::SelectionResponse> handleAddToSelection(
const HANDLER_CONTEXT<commands::AddToSelection>& aCtx );
HANDLER_RESULT<commands::SelectionResponse> handleRemoveFromSelection(
const HANDLER_CONTEXT<commands::RemoveFromSelection>& aCtx );
HANDLER_RESULT<BoardStackupResponse> handleGetStackup(
const HANDLER_CONTEXT<GetBoardStackup>& aCtx );
HANDLER_RESULT<GraphicsDefaultsResponse> handleGetGraphicsDefaults(
const HANDLER_CONTEXT<GetGraphicsDefaults>& aCtx );
HANDLER_RESULT<types::Vector2> handleGetBoardOrigin(
const HANDLER_CONTEXT<GetBoardOrigin>& aCtx );
HANDLER_RESULT<Empty> handleSetBoardOrigin( const HANDLER_CONTEXT<SetBoardOrigin>& aCtx );
HANDLER_RESULT<commands::GetBoundingBoxResponse> handleGetBoundingBox(
const HANDLER_CONTEXT<commands::GetBoundingBox>& aCtx );
2024-11-19 22:09:00 -05:00
HANDLER_RESULT<PadShapeAsPolygonResponse> handleGetPadShapeAsPolygon(
const HANDLER_CONTEXT<GetPadShapeAsPolygon>& aCtx );
HANDLER_RESULT<types::TitleBlockInfo> handleGetTitleBlockInfo(
const HANDLER_CONTEXT<commands::GetTitleBlockInfo>& aCtx );
2024-11-19 23:44:29 -05:00
HANDLER_RESULT<commands::ExpandTextVariablesResponse> handleExpandTextVariables(
const HANDLER_CONTEXT<commands::ExpandTextVariables>& aCtx );
2024-11-28 19:21:18 -05:00
HANDLER_RESULT<Empty> handleInteractiveMoveItems( const HANDLER_CONTEXT<InteractiveMoveItems>& aCtx );
HANDLER_RESULT<NetsResponse> handleGetNets( const HANDLER_CONTEXT<GetNets>& aCtx );
HANDLER_RESULT<NetClassForNetsResponse> handleGetNetClassForNets(
const HANDLER_CONTEXT<GetNetClassForNets>& aCtx );
HANDLER_RESULT<Empty> handleRefillZones( const HANDLER_CONTEXT<RefillZones>& aCtx );
HANDLER_RESULT<commands::SavedDocumentResponse> handleSaveDocumentToString(
const HANDLER_CONTEXT<commands::SaveDocumentToString>& aCtx );
HANDLER_RESULT<commands::SavedSelectionResponse> handleSaveSelectionToString(
const HANDLER_CONTEXT<commands::SaveSelectionToString>& aCtx );
HANDLER_RESULT<commands::CreateItemsResponse> handleParseAndCreateItemsFromString(
const HANDLER_CONTEXT<commands::ParseAndCreateItemsFromString>& aCtx );
HANDLER_RESULT<BoardLayers> handleGetVisibleLayers( const HANDLER_CONTEXT<GetVisibleLayers>& aCtx );
HANDLER_RESULT<Empty> handleSetVisibleLayers( const HANDLER_CONTEXT<SetVisibleLayers>& aCtx );
HANDLER_RESULT<BoardLayerResponse> handleGetActiveLayer( const HANDLER_CONTEXT<GetActiveLayer>& aCtx );
HANDLER_RESULT<Empty> handleSetActiveLayer( const HANDLER_CONTEXT<SetActiveLayer>& aCtx );
HANDLER_RESULT<BoardEditorAppearanceSettings> handleGetBoardEditorAppearanceSettings(
const HANDLER_CONTEXT<GetBoardEditorAppearanceSettings>& aCtx );
HANDLER_RESULT<Empty> handleSetBoardEditorAppearanceSettings(
const HANDLER_CONTEXT<SetBoardEditorAppearanceSettings>& aCtx );
protected:
std::unique_ptr<COMMIT> createCommit() override;
kiapi::common::types::DocumentType thisDocumentType() const override
{
return kiapi::common::types::DOCTYPE_PCB;
}
bool validateDocumentInternal( const DocumentSpecifier& aDocument ) const override;
void deleteItemsInternal( std::map<KIID, ItemDeletionStatus>& aItemsToDelete,
const std::string& aClientName ) override;
std::optional<EDA_ITEM*> getItemFromDocument( const DocumentSpecifier& aDocument, const KIID& aId ) override;
private:
PCB_EDIT_FRAME* frame() const;
void pushCurrentCommit( const std::string& aClientName, const wxString& aMessage ) override;
std::optional<BOARD_ITEM*> getItemById( const KIID& aId ) const;
HANDLER_RESULT<types::ItemRequestStatus> handleCreateUpdateItemsInternal( bool aCreate,
const std::string& aClientName,
const types::ItemHeader &aHeader,
const google::protobuf::RepeatedPtrField<google::protobuf::Any>& aItems,
std::function<void(commands::ItemStatus, google::protobuf::Any)> aItemHandler )
override;
};
#endif //KICAD_API_HANDLER_PCB_H