k12Sergey
k12Sergey
Hi. Im trying to apply icon size for CDockWidget view in toolbar with the following code: ``` ads::CDockWidget* DockWidget = new ads::CDockWidget(plugin->name()); DockWidget->setWidget(plugin); DockWidget->setIcon(plugin->icon()); DockWidget->setToolBarIconSize(QSize(60, 60), ads::CDockWidget::StateHidden); const auto autoHideContainer...
Does julia poses fundamental limitations to declare bindings withoud shared lib (executable with embedded julia), like pybind11 `PYBIND11_EMBEDDED_MODULE`? I try to create julia module and sand it through CxxWrap functions...
Hi. Sorry for silly question, but how to use `@cfunction` in the foolowing case: Suppose we bind class: ```cpp types.add_type("Database") .method("GetProperty", &DataBase::getProperty); ``` and write julia function which take this...