LibreOffice Module framework (master) 1
|
@descr This struct hold some information about all currently running progress processes. More...
#include <statusindicatorfactory.hxx>
Public Member Functions | |
IndicatorInfo (const css::uno::Reference< css::task::XStatusIndicator > &xIndicator, const OUString &sText) | |
initialize new instance of this class More... | |
bool | operator== (const css::uno::Reference< css::task::XStatusIndicator > &xIndicator) const |
Used to locate an info struct inside a stl structure... More... | |
Public Attributes | |
css::uno::Reference< css::task::XStatusIndicator > | m_xIndicator |
points to the indicator child, where we hold its states alive here. More... | |
OUString | m_sText |
the last set text for this indicator More... | |
sal_Int32 | m_nValue |
the last set value for this indicator More... | |
@descr This struct hold some information about all currently running progress processes.
Because the can be used on a stack, we must cache her states but must paint only the top most one.
Definition at line 51 of file statusindicatorfactory.hxx.
|
inline |
initialize new instance of this class
xIndicator | the new child indicator of our factory. |
sText | its initial text. |
nRange | the max range for this indicator. |
Definition at line 81 of file statusindicatorfactory.hxx.
References m_nValue, m_sText, and m_xIndicator.
|
inline |
Used to locate an info struct inside a stl structure...
@descr The indicator object itself is used as key. Its values are not interesting then. Because more than one child indicator can use the same values...
Definition at line 95 of file statusindicatorfactory.hxx.
References m_xIndicator.
sal_Int32 framework::IndicatorInfo::m_nValue |
the last set value for this indicator
Definition at line 65 of file statusindicatorfactory.hxx.
Referenced by IndicatorInfo().
OUString framework::IndicatorInfo::m_sText |
the last set text for this indicator
Definition at line 62 of file statusindicatorfactory.hxx.
Referenced by IndicatorInfo().
css::uno::Reference< css::task::XStatusIndicator > framework::IndicatorInfo::m_xIndicator |
points to the indicator child, where we hold its states alive here.
Definition at line 59 of file statusindicatorfactory.hxx.
Referenced by IndicatorInfo(), and operator==().