KiCad PCB EDA Suite
Loading...
Searching...
No Matches
api_handler_sch.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2024 Jon Evans <[email protected]>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#ifndef KICAD_API_HANDLER_SCH_H
22#define KICAD_API_HANDLER_SCH_H
23
25#include <api/sch_context.h>
26#include <api/common/commands/editor_commands.pb.h>
27#include <api/schematic/schematic_jobs.pb.h>
28#include <kiid.h>
29
30using namespace kiapi;
31using namespace kiapi::common;
32
33class SCH_EDIT_FRAME;
34class SCH_ITEM;
35
36
38{
39public:
41 API_HANDLER_SCH( std::shared_ptr<SCH_CONTEXT> aContext, SCH_EDIT_FRAME* aFrame = nullptr );
42
43protected:
44 std::unique_ptr<COMMIT> createCommit() override;
45
46 kiapi::common::types::DocumentType thisDocumentType() const override
47 {
48 return kiapi::common::types::DOCTYPE_SCHEMATIC;
49 }
50
51 bool validateDocumentInternal( const DocumentSpecifier& aDocument ) const override;
52
54 EDA_ITEM* aContainer );
55
57 const std::string& aClientName,
58 const types::ItemHeader &aHeader,
59 const google::protobuf::RepeatedPtrField<google::protobuf::Any>& aItems,
60 std::function<void(commands::ItemStatus, google::protobuf::Any)> aItemHandler )
61 override;
62
63 void deleteItemsInternal( std::map<KIID, ItemDeletionStatus>& aItemsToDelete,
64 const std::string& aClientName ) override;
65
66 std::optional<EDA_ITEM*> getItemFromDocument( const DocumentSpecifier& aDocument,
67 const KIID& aId ) override;
68
69private:
72
75
78
81
84
87
90
92 std::shared_ptr<SCH_CONTEXT> m_context;
93};
94
95
96#endif //KICAD_API_HANDLER_SCH_H
tl::expected< T, ApiResponseStatus > HANDLER_RESULT
Definition api_handler.h:45
API_HANDLER_EDITOR(EDA_BASE_FRAME *aFrame=nullptr)
HANDLER_RESULT< types::RunJobResponse > handleRunSchematicJobExportDxf(const HANDLER_CONTEXT< kiapi::schematic::jobs::RunSchematicJobExportDxf > &aCtx)
SCH_EDIT_FRAME * m_frame
std::unique_ptr< COMMIT > createCommit() override
Override this to create an appropriate COMMIT subclass for the frame in question.
HANDLER_RESULT< types::RunJobResponse > handleRunSchematicJobExportPdf(const HANDLER_CONTEXT< kiapi::schematic::jobs::RunSchematicJobExportPdf > &aCtx)
std::shared_ptr< SCH_CONTEXT > m_context
std::optional< EDA_ITEM * > getItemFromDocument(const DocumentSpecifier &aDocument, const KIID &aId) override
HANDLER_RESULT< types::RunJobResponse > handleRunSchematicJobExportSvg(const HANDLER_CONTEXT< kiapi::schematic::jobs::RunSchematicJobExportSvg > &aCtx)
HANDLER_RESULT< std::unique_ptr< EDA_ITEM > > createItemForType(KICAD_T aType, EDA_ITEM *aContainer)
HANDLER_RESULT< types::RunJobResponse > handleRunSchematicJobExportBOM(const HANDLER_CONTEXT< kiapi::schematic::jobs::RunSchematicJobExportBOM > &aCtx)
HANDLER_RESULT< types::RunJobResponse > handleRunSchematicJobExportPs(const HANDLER_CONTEXT< kiapi::schematic::jobs::RunSchematicJobExportPs > &aCtx)
API_HANDLER_SCH(SCH_EDIT_FRAME *aFrame)
kiapi::common::types::DocumentType thisDocumentType() const override
Override this to specify which document type this editor handles.
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
HANDLER_RESULT< commands::GetOpenDocumentsResponse > handleGetOpenDocuments(const HANDLER_CONTEXT< commands::GetOpenDocuments > &aCtx)
HANDLER_RESULT< types::RunJobResponse > handleRunSchematicJobExportNetlist(const HANDLER_CONTEXT< kiapi::schematic::jobs::RunSchematicJobExportNetlist > &aCtx)
bool validateDocumentInternal(const DocumentSpecifier &aDocument) const override
void deleteItemsInternal(std::map< KIID, ItemDeletionStatus > &aItemsToDelete, const std::string &aClientName) override
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:100
Definition kiid.h:48
Schematic editor (Eeschema) main window.
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition sch_item.h:168
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition typeinfo.h:75