| 52 | return false; |
| 53 | } |
| 54 | bool clicked() const FL_NOEXCEPT { |
| 55 | if (mImpl.clicked()) { |
| 56 | return true; |
| 57 | } |
| 58 | if (mButtonInput) { |
| 59 | return mButtonInput->clicked(); |
| 60 | } |
| 61 | return false; |
| 62 | } |
| 63 | int clickedCount() const FL_NOEXCEPT; |
| 64 | operator bool() const FL_NOEXCEPT { return clicked(); } |
| 65 | bool value() const FL_NOEXCEPT { return clicked(); } |
no outgoing calls
no test coverage detected