+ unify DLL export defines to namespace names
git-svn-id: https://free-cad.svn.sourceforge.net/svnroot/free-cad/trunk@5000 e8eeb9e2-ec13-0410-a4a9-efa5cf37419d
This commit is contained in:
147
src/Gui/PythonConsolePy.h
Normal file
147
src/Gui/PythonConsolePy.h
Normal file
@@ -0,0 +1,147 @@
|
||||
/***************************************************************************
|
||||
* 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>
|
||||
|
||||
namespace Gui {
|
||||
class PythonConsole;
|
||||
class PythonInputField;
|
||||
|
||||
/**
|
||||
* Python class for redirection of stdout to FreeCAD's Python
|
||||
* console window. This allows 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(void); // announce properties and methods
|
||||
|
||||
PythonStdout(PythonConsole *pc);
|
||||
~PythonStdout();
|
||||
|
||||
Py::Object repr();
|
||||
Py::Object write(const Py::Tuple&);
|
||||
Py::Object flush(const Py::Tuple&);
|
||||
};
|
||||
|
||||
/**
|
||||
* Python class for redirection of stderr to FreeCAD's Python
|
||||
* console window. This allows 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(void); // announce properties and methods
|
||||
|
||||
PythonStderr(PythonConsole *pc);
|
||||
~PythonStderr();
|
||||
|
||||
Py::Object repr();
|
||||
Py::Object write(const Py::Tuple&);
|
||||
Py::Object flush(const Py::Tuple&);
|
||||
};
|
||||
|
||||
/**
|
||||
* Python class for redirection of stdout to FreeCAD's output
|
||||
* console window. This allows to report all Python output to
|
||||
* the output window which simplifies debugging scripts.
|
||||
* @see PythonStdout
|
||||
* @see PythonStderr
|
||||
* @author Werner Mayer
|
||||
*/
|
||||
class OutputStdout : public Py::PythonExtension<OutputStdout>
|
||||
{
|
||||
public:
|
||||
static void init_type(void); // announce properties and methods
|
||||
|
||||
OutputStdout();
|
||||
~OutputStdout();
|
||||
|
||||
Py::Object repr();
|
||||
Py::Object write(const Py::Tuple&);
|
||||
Py::Object flush(const Py::Tuple&);
|
||||
};
|
||||
|
||||
/**
|
||||
* Python class for redirection of stderr to FreeCAD's output
|
||||
* console window. This allows to report all Python errors to
|
||||
* the output window which simplifies error tracking.
|
||||
* @see PythonStdout
|
||||
* @see PythonStderr
|
||||
* @author Werner Mayer
|
||||
*/
|
||||
class OutputStderr : public Py::PythonExtension<OutputStderr>
|
||||
{
|
||||
public:
|
||||
static void init_type(void); // announce properties and methods
|
||||
|
||||
OutputStderr();
|
||||
~OutputStderr();
|
||||
|
||||
Py::Object repr();
|
||||
Py::Object write(const Py::Tuple&);
|
||||
Py::Object flush(const Py::Tuple&);
|
||||
};
|
||||
|
||||
/**
|
||||
* 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(void); // announce properties and methods
|
||||
|
||||
PythonStdin(PythonConsole *pc);
|
||||
~PythonStdin();
|
||||
|
||||
Py::Object repr();
|
||||
Py::Object readline(const Py::Tuple&);
|
||||
|
||||
private:
|
||||
PythonInputField* editField;
|
||||
};
|
||||
|
||||
} // namespace Gui
|
||||
|
||||
#endif // GUI_PYTHONCONSOLE_PY_H
|
||||
Reference in New Issue
Block a user