Files
create/src/Gui/PythonConsolePy.h
Tobias Frost 460da406f8 spelling fixes (#18688)
* Fixes spelling of "Allow to" to "Allow one to"

and those variants:
Allows to -> Allows one to
allow to -> allow one to
allows to -> allows one to

* Fix "Let's -> Lets"

(and lower case variant.)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Update src/3rdParty/salomesmesh/inc/MED_Wrapper.hxx

Co-authored-by: Chris Hennes <chennes@pioneerlibrarysystem.org>

* Update src/Base/PyObjectBase.cpp
Update src/App/ExtensionContainer.h
Update src/App/PropertyContainer.h

Co-authored-by: Chris Hennes <chennes@pioneerlibrarysystem.org>

* Use gerund in user-facing texts.

* Use gerund for two more user-facing strings.

Co-authored-by: Chris Hennes <chennes@pioneerlibrarysystem.org>

* Update src/Mod/Fem/App/FemMeshShapeNetgenObject.cpp

Co-authored-by: Chris Hennes <chennes@pioneerlibrarysystem.org>

* Update src/Mod/Fem/App/FemMeshShapeNetgenObject.cpp

Co-authored-by: Chris Hennes <chennes@pioneerlibrarysystem.org>

* Update src/Mod/Fem/App/FemMeshShapeNetgenObject.cpp

Co-authored-by: Chris Hennes <chennes@pioneerlibrarysystem.org>

---------

Co-authored-by: Tobias Frost <tobi@debian.org>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Chris Hennes <chennes@pioneerlibrarysystem.org>
2025-01-13 11:22:20 -06:00

155 lines
5.0 KiB
C++

/***************************************************************************
* Copyright (c) 2004 Werner Mayer <wmayer[at]users.sourceforge.net> *
* *
* 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_PYTHONCONSOLE_PY_H
#define GUI_PYTHONCONSOLE_PY_H
#include <CXX/Extensions.hxx>
class QTimer;
namespace Gui {
class PythonConsole;
/**
* Python class for redirection of stdout to FreeCAD's Python
* console window. This allows one to show all Python messages in
* the same window where the commands are performed.
* @see PythonStderr
* @see PythonConsole
* @author Werner Mayer
*/
class PythonStdout : public Py::PythonExtension<PythonStdout>
{
private:
PythonConsole* pyConsole;
public:
static void init_type(); // announce properties and methods
explicit PythonStdout(PythonConsole *pc);
~PythonStdout() override;
Py::Object getattr(const char *name) override;
Py::Object repr() override;
Py::Object write(const Py::Tuple&);
Py::Object flush(const Py::Tuple&);
Py::Object isatty();
};
/**
* Python class for redirection of stderr to FreeCAD's Python
* console window. This allows one to show all Python messages in
* the same window where the commands are performed.
* @see PythonStdout
* @see PythonConsole
* @author Werner Mayer
*/
class PythonStderr : public Py::PythonExtension<PythonStderr>
{
private:
PythonConsole* pyConsole;
public:
static void init_type(); // announce properties and methods
explicit PythonStderr(PythonConsole *pc);
~PythonStderr() override;
Py::Object getattr(const char *name) override;
Py::Object repr() override;
Py::Object write(const Py::Tuple&);
Py::Object flush(const Py::Tuple&);
Py::Object isatty();
};
/**
* Python class for redirection of stdout to FreeCAD's output
* console window. This allows one to report all Python output to
* the report view which simplifies debugging scripts.
* @see PythonStdout
* @see PythonStderr
* @author Werner Mayer
*/
class OutputStdout : public Py::PythonExtension<OutputStdout>
{
public:
static void init_type(); // announce properties and methods
OutputStdout();
~OutputStdout() override;
Py::Object getattr(const char *name) override;
Py::Object repr() override;
Py::Object write(const Py::Tuple&);
Py::Object flush(const Py::Tuple&);
Py::Object isatty();
};
/**
* Python class for redirection of stderr to FreeCAD's output
* console window. This allows one to report all Python errors to
* the report view which simplifies error tracking.
* @see PythonStdout
* @see PythonStderr
* @author Werner Mayer
*/
class OutputStderr : public Py::PythonExtension<OutputStderr>
{
public:
static void init_type(); // announce properties and methods
OutputStderr();
~OutputStderr() override;
Py::Object getattr(const char *name) override;
Py::Object repr() override;
Py::Object write(const Py::Tuple&);
Py::Object flush(const Py::Tuple&);
Py::Object isatty();
};
/**
* Python class for redirection of stdin to an input dialog of Qt.
* @author Werner Mayer
*/
class PythonStdin : public Py::PythonExtension<PythonStdin>
{
private:
PythonConsole* pyConsole;
public:
static void init_type(); // announce properties and methods
explicit PythonStdin(PythonConsole *pc);
~PythonStdin() override;
Py::Object repr() override;
Py::Object getattr(const char *name) override;
Py::Object readline(const Py::Tuple&);
};
} // namespace Gui
#endif // GUI_PYTHONCONSOLE_PY_H