SDS2 Parametric API
 All Classes Namespaces Functions Variables Pages
List of all members
Feedback.ProgressDialog Class Reference

No documentation available. More...

Methods defined here:

def Cancelled
def Done
def ResetSubtask
def Update
def __init__
def __reduce__

Static methods defined here:

def Existing

Data descriptors defined here:

def AutoDestroy
def Immediate
def NoCancel
def NoGrab
def NoStatus

Data descriptors inherited from Boost.Python.instance:

def __dict__
def __weakref__

Data and other attributes inherited from Boost.Python.instance:

def __new__

Detailed Description

No documentation available.

Method resolution order

ProgressDialog
Boost.Python.instance
builtin.object

Constructor & Destructor Documentation

def Feedback.ProgressDialog.__init__ (   arg1,
  arg2,
  arg3,
  arg4 
)
Returns
Instance of type object
     C++ signature :
         void* __init__(boost::python::api::object,boost::python::api::object,boost::python::api::object,boost::python::api::object)
 
     Arguments: title, list of tuples of names and weights, total time(seconds), the top label, [flags]
      Flags are the static data members attached to this class, such as "NoStatus".
 
     C++ signature :
         void* __init__(boost::python::api::object,boost::python::api::object,boost::python::api::object,boost::python::api::object,boost::python::api::object)
Note
Additional signature: init( (object)arg1, (object)arg2, (object)arg3, (object)arg4, (object)arg5) -> object

Member Function Documentation

def Feedback.ProgressDialog.__dict__ (   args)
def Feedback.ProgressDialog.__new__ (   args)
T.__new__(S, ...) -> a new object with type S, a subtype of T
 __new__ = <built-in method __new__ of Boost.Python.class object>
def Feedback.ProgressDialog.__reduce__ (   args)
 __reduce__ = <unnamed Boost.Python function>(args)
def Feedback.ProgressDialog.__weakref__ (   args)
def Feedback.ProgressDialog.AutoDestroy (   args)
def Feedback.ProgressDialog.Cancelled (   arg1)
Returns
Instance of type bool
     C++ signature :
         bool Cancelled(ProgressDialog {lvalue})
def Feedback.ProgressDialog.Done (   arg1,
  arg2 
)
Returns
Instance of type None
     End the progress bar with the given message.  This will be done by default when the object is destroyed with the message "DONE!".  You can only call this method once, a second call will result in an exception
 
     C++ signature :
         void Done(ProgressDialog {lvalue},std::string)
def Feedback.ProgressDialog.Existing (   args)
Returns
Instance of type object
     C++ signature :
         boost::python::api::object Existing()
def Feedback.ProgressDialog.Immediate (   args)
def Feedback.ProgressDialog.NoCancel (   args)
def Feedback.ProgressDialog.NoGrab (   args)
def Feedback.ProgressDialog.NoStatus (   args)
def Feedback.ProgressDialog.ResetSubtask (   arg1)
Returns
Instance of type None
     C++ signature :
         void ResetSubtask(ProgressDialog {lvalue})
def Feedback.ProgressDialog.Update (   arg1,
  arg2 
)
Returns
Instance of type None
     C++ signature :
         void Update(ProgressDialog {lvalue},std::string)
 
 
     C++ signature :
         void Update(ProgressDialog {lvalue},double)
 
     Change the percentage and current message.
 
     C++ signature :
         void Update(ProgressDialog {lvalue},std::string,double)
Note
Additional signature: Update( (ProgressDialog)arg1, (float)arg2) -> None
Additional signature: Update( (ProgressDialog)arg1, (str)arg2, (float)arg3) -> None