96 lines
3.4 KiB
C++
96 lines
3.4 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2022 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 *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
|
|
#include "PreCompiled.h"
|
|
|
|
#include "ProgressIndicatorPy.h"
|
|
|
|
|
|
using namespace Base;
|
|
|
|
void ProgressIndicatorPy::init_type()
|
|
{
|
|
behaviors().name("ProgressIndicator");
|
|
behaviors().doc("Progress indicator");
|
|
// you must have overwritten the virtual functions
|
|
behaviors().supportRepr();
|
|
behaviors().supportGetattr();
|
|
behaviors().supportSetattr();
|
|
behaviors().set_tp_new(PyMake);
|
|
|
|
add_varargs_method("start",&ProgressIndicatorPy::start,"start(string,int)");
|
|
add_varargs_method("next",&ProgressIndicatorPy::next,"next()");
|
|
add_varargs_method("stop",&ProgressIndicatorPy::stop,"stop()");
|
|
}
|
|
|
|
PyObject *ProgressIndicatorPy::PyMake(struct _typeobject *, PyObject *, PyObject *)
|
|
{
|
|
return new ProgressIndicatorPy();
|
|
}
|
|
|
|
ProgressIndicatorPy::ProgressIndicatorPy() = default;
|
|
|
|
ProgressIndicatorPy::~ProgressIndicatorPy() = default;
|
|
|
|
Py::Object ProgressIndicatorPy::repr()
|
|
{
|
|
std::string s = "Base.ProgressIndicator";
|
|
return Py::String(s);
|
|
}
|
|
|
|
Py::Object ProgressIndicatorPy::start(const Py::Tuple& args)
|
|
{
|
|
char* text;
|
|
unsigned int steps;
|
|
if (!PyArg_ParseTuple(args.ptr(), "sI",&text,&steps))
|
|
throw Py::Exception();
|
|
if (!_seq.get())
|
|
_seq.reset(new SequencerLauncher(text,steps));
|
|
return Py::None();
|
|
}
|
|
|
|
Py::Object ProgressIndicatorPy::next(const Py::Tuple& args)
|
|
{
|
|
int b=0;
|
|
if (!PyArg_ParseTuple(args.ptr(), "|i",&b))
|
|
throw Py::Exception();
|
|
if (_seq.get()) {
|
|
try {
|
|
_seq->next(b ? true : false);
|
|
}
|
|
catch (const Base::AbortException&) {
|
|
_seq.reset();
|
|
throw Py::RuntimeError("abort progress indicator");
|
|
}
|
|
}
|
|
return Py::None();
|
|
}
|
|
|
|
Py::Object ProgressIndicatorPy::stop(const Py::Tuple& args)
|
|
{
|
|
if (!PyArg_ParseTuple(args.ptr(), ""))
|
|
throw Py::Exception();
|
|
_seq.reset();
|
|
return Py::None();
|
|
}
|