Files
create/src/Gui/FileOriginPython.h
forbes-0023 79c85ed2e5
Some checks failed
Build and Test / build (push) Failing after 2m13s
fix(gui): add interactive methods to FileOriginPython and fix Console API calls
- Add openDocumentInteractive() and saveDocumentAsInteractive() to FileOriginPython
- Fix Console API: Warning -> warning, Error -> error in OriginManager.cpp
- These methods bridge Python origins to the new interactive document operations
2026-02-05 14:25:21 -06:00

149 lines
5.9 KiB
C++

/***************************************************************************
* Copyright (c) 2025 Kindred Systems *
* *
* This file is part of the FreeCAD CAx development system. *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library 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 Library General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this library; see the file COPYING.LIB. If not, *
* write to the Free Software Foundation, Inc., 59 Temple Place, *
* Suite 330, Boston, MA 02111-1307, USA *
* *
***************************************************************************/
#ifndef GUI_FILEORIGINPYTHON_H
#define GUI_FILEORIGINPYTHON_H
#include <vector>
#include <FCGlobal.h>
#include <CXX/Objects.hxx>
#include "FileOrigin.h"
namespace Gui {
/**
* @brief Wrapper that adapts a Python object to the FileOrigin interface
*
* This allows Python addons (like Silo) to implement origins in Python
* while integrating with the C++ OriginManager.
*
* The Python object should implement the following methods:
* - id() -> str
* - name() -> str
* - nickname() -> str
* - icon() -> str (icon name for BitmapFactory)
* - type() -> int (OriginType enum value)
* - tracksExternally() -> bool
* - requiresAuthentication() -> bool
* - ownsDocument(doc) -> bool
* - documentIdentity(doc) -> str
* - documentDisplayId(doc) -> str
*
* Optional methods:
* - supportsRevisions() -> bool
* - supportsBOM() -> bool
* - supportsPartNumbers() -> bool
* - supportsAssemblies() -> bool
* - connectionState() -> int
* - connect() -> bool
* - disconnect() -> None
* - syncProperties(doc) -> bool
* - newDocument(name) -> Document
* - openDocument(identity) -> Document
* - saveDocument(doc) -> bool
* - saveDocumentAs(doc, newIdentity) -> bool
* - commitDocument(doc) -> bool
* - pullDocument(doc) -> bool
* - pushDocument(doc) -> bool
* - showInfo(doc) -> None
* - showBOM(doc) -> None
*/
class GuiExport FileOriginPython : public FileOrigin
{
public:
/**
* Register a Python object as an origin.
* The Python object should implement the FileOrigin interface methods.
* @param obj The Python object implementing the origin interface
*/
static void addOrigin(const Py::Object& obj);
/**
* Unregister a Python origin by its Python object.
* @param obj The Python object to unregister
*/
static void removeOrigin(const Py::Object& obj);
/**
* Find a registered Python origin by its Python object.
* @param obj The Python object to find
* @return The FileOriginPython wrapper or nullptr
*/
static FileOriginPython* findOrigin(const Py::Object& obj);
// FileOrigin interface - delegates to Python
std::string id() const override;
std::string name() const override;
std::string nickname() const override;
QIcon icon() const override;
OriginType type() const override;
bool tracksExternally() const override;
bool requiresAuthentication() const override;
bool supportsRevisions() const override;
bool supportsBOM() const override;
bool supportsPartNumbers() const override;
bool supportsAssemblies() const override;
ConnectionState connectionState() const override;
bool connect() override;
void disconnect() override;
std::string documentIdentity(App::Document* doc) const override;
std::string documentDisplayId(App::Document* doc) const override;
bool ownsDocument(App::Document* doc) const override;
bool syncProperties(App::Document* doc) override;
App::Document* newDocument(const std::string& name = "") override;
App::Document* openDocument(const std::string& identity) override;
App::Document* openDocumentInteractive() override;
bool saveDocument(App::Document* doc) override;
bool saveDocumentAs(App::Document* doc, const std::string& newIdentity) override;
bool saveDocumentAsInteractive(App::Document* doc) override;
bool commitDocument(App::Document* doc) override;
bool pullDocument(App::Document* doc) override;
bool pushDocument(App::Document* doc) override;
void showInfo(App::Document* doc) override;
void showBOM(App::Document* doc) override;
private:
explicit FileOriginPython(const Py::Object& obj);
~FileOriginPython() override;
// Helper to call Python methods safely
Py::Object callMethod(const char* method) const;
Py::Object callMethod(const char* method, const Py::Tuple& args) const;
bool callBoolMethod(const char* method, bool defaultValue = false) const;
std::string callStringMethod(const char* method, const std::string& defaultValue = "") const;
Py::Object getDocPyObject(App::Document* doc) const;
Py::Object _inst;
std::string _cachedId; // Cache the ID since it's used for registration
static std::vector<FileOriginPython*> _instances;
};
} // namespace Gui
#endif // GUI_FILEORIGINPYTHON_H