| 407 | } |
| 408 | |
| 409 | bool setParent(const clap_window_t* const window) |
| 410 | { |
| 411 | if (fIsFloating) |
| 412 | return false; |
| 413 | |
| 414 | fParentWindow = window->uptr; |
| 415 | |
| 416 | if (fUI == nullptr) |
| 417 | { |
| 418 | createUI(); |
| 419 | fHostGui->resize_hints_changed(fHost); |
| 420 | } |
| 421 | |
| 422 | return true; |
| 423 | } |
| 424 | |
| 425 | bool setTransient(const clap_window_t* const window) |
| 426 | { |
no test coverage detected