Set smooth message showing*/
| 96 | |
| 97 | /** Set smooth message showing*/ |
| 98 | void setSmoothShow(bool _value) |
| 99 | { |
| 100 | mSmoothShow = _value; |
| 101 | if (mSmoothShow) |
| 102 | { |
| 103 | mMainWidget->setAlpha(ALPHA_MIN); |
| 104 | mMainWidget->setVisible(true); |
| 105 | mMainWidget->castType<Window>()->setVisibleSmooth(true); |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | /** Set message icon*/ |
| 110 | void setMessageIcon(MessageBoxStyle _value) |
no test coverage detected