| 1182 | } |
| 1183 | |
| 1184 | bool Control::click() |
| 1185 | { |
| 1186 | if (!Visible || !Enabled) |
| 1187 | { |
| 1188 | return false; |
| 1189 | } |
| 1190 | FormsEvent *event = nullptr; |
| 1191 | event = new FormsEvent(); |
| 1192 | event->forms().RaisedBy = shared_from_this(); |
| 1193 | event->forms().EventFlag = FormEventType::MouseClick; |
| 1194 | fw().pushEvent(event); |
| 1195 | this->setDirty(); |
| 1196 | this->triggerEventCallbacks(event); |
| 1197 | return true; |
| 1198 | } |
| 1199 | |
| 1200 | void Control::setDirty() |
| 1201 | { |
no test coverage detected