|
swift
|
Enable widget class for load indicator. More...
Public Member Functions | |
| CLoadIndicatorEnabled (QWidget *usingWidget) | |
| Ctor. | |
| virtual | ~CLoadIndicatorEnabled ()=default |
| Destructor. | |
| CLoadIndicatorEnabled (const CLoadIndicatorEnabled &)=delete | |
| Copy constructor. | |
| CLoadIndicatorEnabled & | operator= (const CLoadIndicatorEnabled &)=delete |
| Copy assignment operator. | |
| bool | isShowingLoadIndicator () const |
| Showing load indicator? | |
| void | showLoading (std::chrono::milliseconds timeout=std::chrono::milliseconds(0), bool processEvents=true) |
| Show load indicator. | |
| void | hideLoading () |
| Hide load indicator. | |
| bool | isLoadInProgress () const |
| Loading in progress? | |
Protected Member Functions | |
| void | centerLoadIndicator () |
| Center load indicator. | |
| virtual void | indicatorTimedOut () |
| Indicator timed out. More... | |
Protected Attributes | |
| QWidget * | m_usingWidget = nullptr |
| widget which uses load indicator | |
| CLoadIndicator * | m_loadIndicator = nullptr |
| indicator itself | |
| bool | m_loadInProgress = false |
| flag indicating loading | |
| int | m_indicatorId = -1 |
| last indicator id returned | |
Enable widget class for load indicator.
Definition at line 120 of file loadindicator.h.
|
protectedvirtual |