wxUiEditor
wxUiEditor copied to clipboard
RAD tool used to create and maintain wxWidgets UI elements.
### Description: wxWidgets 3.3 adds wxStatusBar::AddFieldControl() making it possible to add controls to the various status bar fields. Support for this should be added, with conditionals for 3.3. Note that...
### Description: 3.3 will be adding XRC support for wxPropertyGrid, so we'll need to add support for that in wxUiEditor as well once the new branch gets checked in.
### Description: clang-diagnostics will complain about the use of any wxWidgets class that we use without directly including a header file. It's a valid complaint if a precompiled header is...
### Description: **wxAddRemoveCtrl** -- https://docs.wxwidgets.org/trunk/classwx_add_remove_ctrl.html We should be able to at least add a listbox version of this. For the four functions, we could use code snippets -- edited and...
### Description: There needs to be a way to limit events that are only available with specific versions of wxWidgets. For exampe, EVT_WEBVIEW_NEWWINDOW_FEATURES is only available with wxWidgets 3.3. It...
### Description: Currently we test importing by comparing a the appearance of a form in the original designer (e/g. wxFormBuilder) side by side with the appearance of the form in...
### Description: If the Images node is deleted, the `ImageHandler` class (image_handler.h) needs to be cleared, and re-initialized. Without doing this, code generation is broken because it is still assuming...
### Description: A `OnDropFiles` event should be added to the standard window events. If the user specifies a handler, then when the window is created, it must call `widget->DragAcceptFiles(true);`.
### Description: I have a solution where two distinct wxUiEditor projects are involved, even though I don't think two distinct projects matter. Anyway, these two projects generate the function `wxImage...
### Description: In the XRC panel, it would be useful to create a third panel called "Preview" that would display a live preview of the XRC code. Forms that could...