Search found 7 matches
- Sat Aug 22, 2020 7:59 am
- Forum: General Development
- Topic: Strange problem with wxExecute and CDB.EXE
- Replies: 0
- Views: 1455
Strange problem with wxExecute and CDB.EXE
Hi, Good morning! I'm trying to integrate CDB.exe into my program with wxProcess and wxExecute and I don't understand what's going on. The thing is, when I call wxExecute with cdb.exe as argument, the whole window is freezed. I mean, the windows seems to work propertly but I cannot do anything. I ca...
- Sat Jun 06, 2020 3:20 pm
- Forum: C++ Development
- Topic: How to change the colour and size of the border between tabs in wxAuiNotebook
- Replies: 5
- Views: 525
Re: How to change the colour and size of the border between tabs in wxAuiNotebook
It seems that wxAuiNotebook has its own internal wxAuiManager. I managed to change the color using this const_cast hack: wxAuiManager &mgr = const_cast <wxAuiManager &> (notebook->GetAuiManager()); mgr.GetArtProvider()->SetMetric(wxAUI_DOCKART_SASH_SIZE, 5); mgr.GetArtProvider()->SetColour(wxAUI_DO...
- Fri Jun 05, 2020 5:19 pm
- Forum: C++ Development
- Topic: How to change the colour and size of the border between tabs in wxAuiNotebook
- Replies: 5
- Views: 525
Re: How to change the colour and size of the border between tabs in wxAuiNotebook
Hi doublemax, thank you so much for your answer! I have tested both flags and some others more (wxAUI_DOCKART_SASH_COLOUR, wxAUI_DOCKART_BORDER_COLOUR and xAUI_DOCKART_GRIPPER_COLOUR) but none of them have worked. I tried to change the thickness of the border with the flag (wxAUI_DOCKART_PANE_BORDER...
- Fri Jun 05, 2020 3:58 pm
- Forum: C++ Development
- Topic: How to change the colour and size of the border between tabs in wxAuiNotebook
- Replies: 5
- Views: 525
How to change the colour and size of the border between tabs in wxAuiNotebook
Hi, good afternoon. I'm trying to change the default colour of the border between tabs in a wxAuiNotebook and after long hours of research and trying every thing I found on Google, I don't know where to go or how to change it. The thing is I have this Application (See screenshot) and I would like to...
- Thu Apr 30, 2020 9:37 am
- Forum: Platform Related Issues
- Topic: Support to Dark Mode on Windows 10.
- Replies: 5
- Views: 995
Re: Support to Dark Mode on Windows 10.
I will just add "the master link" for Dark Mode support on Win10 https://forums.wxwidgets.org/viewtopic.php?f=23&t=45869 I have never even heard of WinUI 3 but looking at it, it seems that adding its support to wxWidgets would be a major undertaking (i.e., a whole new toolkit) and maybe locked to u...
- Thu Apr 30, 2020 9:31 am
- Forum: Platform Related Issues
- Topic: Support to Dark Mode on Windows 10.
- Replies: 5
- Views: 995
Re: Support to Dark Mode on Windows 10.
Hi catalin!
Thank you so much for your answer.
Regarding to the problem when cloning the repository, I attach an image to show yo the current problem.
Thanks!
Thank you so much for your answer.
Regarding to the problem when cloning the repository, I attach an image to show yo the current problem.
Thanks!
- Thu Apr 30, 2020 6:54 am
- Forum: Platform Related Issues
- Topic: Support to Dark Mode on Windows 10.
- Replies: 5
- Views: 995
Support to Dark Mode on Windows 10.
Hi, good morning. First of all, I'm so sorry if this is not the correct place to post this message, so feel free to change it wherever it should be or tell me where I should post in. I haven't seen any better place than this so, that's why I posted here. The point is about how to enable Dark Mode on...