| 302 | } |
| 303 | |
| 304 | bool canResize() const noexcept |
| 305 | { |
| 306 | #if DISTRHO_UI_USER_RESIZABLE |
| 307 | if (UIExporter* const ui = fUI.get()) |
| 308 | return ui->isResizable(); |
| 309 | return true; |
| 310 | #else |
| 311 | return false; |
| 312 | #endif |
| 313 | } |
| 314 | |
| 315 | bool getResizeHints(clap_gui_resize_hints_t* const hints) const |
| 316 | { |
no test coverage detected