KeyWorksRW
KeyWorksRW
It's worth nothing that even a very simple call to gtk fails to place the text in the Windows clipboard: ```c++ GtkClipboard* clipboard = gtk_clipboard_get(GDK_SELECTION_CLIPBOARD); gtk_clipboard_set_text(clipboard, "Hello World!", -1); ```...
There are 9 controls that hide setting the font, and there are no comments in the interface file as to why. I need to review all 9 of these, and...
I tried setting the font of a wxCalendarCtrl and stepped through the code in the debugger up to the point where it sends the WM_FONT message to the Windows control...
The link you refer to allows you to change the size, but it still doesn't allow you to change the font. I don't see the advantage of enabling an option...
Changing the font on Linux works just fine -- and I believe the Mac version is generic, so that should work as well. The only issue I see for Linux...
https://docs.wxwidgets.org/3.2.0/classwx_property_grid_event.html lists the events and descriptions as a starting point. I don't _think_ there are any new ones for wxWidgets 3.3, but that should be checked.
This is a custom dialog, so unless the same size/button configuration makes sense for all the locations it's used for, then it should get duplicated with a unique class name...
There are other issues revolving around header files, so adding the 1.2.2 milestone with the intention of putting all the header issues in the same milestone.
Okay now that I have some time to actually work on this, I have questions. Taking the example of `tkxLutEditorPanel.h`, if you were editing the source file manually, how would...
From @Kumazuma: It is simple way that make ico file from wxBitmapBundle. the ICO file is supported from Windows Vista and later. This code was referenced from [Wikipedia](https://en.wikipedia.org/wiki/ICO_(file_format)#Structure_of_image_directory). ```c++ #include...