| 43 | UIButton(const char *name) FL_NOEXCEPT; |
| 44 | ~UIButton() FL_NOEXCEPT; |
| 45 | bool isPressed() const FL_NOEXCEPT { |
| 46 | if (mImpl.isPressed()) { |
| 47 | return true; |
| 48 | } |
| 49 | if (mButtonInput) { |
| 50 | return mButtonInput->isPressed(); |
| 51 | } |
| 52 | return false; |
| 53 | } |
| 54 | bool clicked() const FL_NOEXCEPT { |
| 55 | if (mImpl.clicked()) { |
| 56 | return true; |
no outgoing calls
no test coverage detected