Search found 7480 matches

by ONEEYEMAN
Wed Mar 13, 2024 11:44 am
Forum: C++ Development
Topic: Resize wxFrame according to
Replies: 5
Views: 4165

Re: Resize wxFrame according to

Hi,
But why do you want it in your code?

Thank you.
by ONEEYEMAN
Tue Mar 12, 2024 5:22 pm
Forum: Platform Related Issues
Topic: macOS Metal Issue - App Crashes Immediately
Replies: 12
Views: 4545

Re: macOS Metal Issue - App Crashes Immediately

Hi,
What version of wxWidgets do you try to compile?

Thank you.
by ONEEYEMAN
Mon Mar 11, 2024 6:30 pm
Forum: Platform Related Issues
Topic: macOS Metal Issue - App Crashes Immediately
Replies: 12
Views: 4545

Re: macOS Metal Issue - App Crashes Immediately

Hi, Can you try this: Download the source code of wxWidgets (same version you are using) to a brand new location. build it with the following: cd ~/wxW mkdir buildOSX cd buildOSX ../configure --enable-macosx_arch=x86_64,arm64 --enable-debug make -j5 Post all errors you received during the build. Tha...
by ONEEYEMAN
Sun Mar 10, 2024 12:28 pm
Forum: C++ Development
Topic: wxStatusbar not updated with help text by wxMenu as popup.
Replies: 5
Views: 4150

Re: wxStatusbar not updated with help text by wxMenu as popup.

Hi,
If it works as designed you will get a reply there by the wx devs.

This is userr forum made by users for users.

Thank you.
by ONEEYEMAN
Sun Mar 10, 2024 9:51 am
Forum: Platform Related Issues
Topic: Where is the library comes from
Replies: 6
Views: 3985

Re: Where is the library comes from

Hi,
What do you mean?
Every time I'm building it on that laptop I'm removing the build directory completely with:

rm -rf Debug/

and do build from scratch.

Thank you.
by ONEEYEMAN
Sat Mar 09, 2024 7:26 pm
Forum: Platform Related Issues
Topic: macOS Metal Issue - App Crashes Immediately
Replies: 12
Views: 4545

Re: macOS Metal Issue - App Crashes Immediately

Hi,
Can you also try to run an OpenGL samples, since your issue is with OpenGL?

Thank you.
by ONEEYEMAN
Sat Mar 09, 2024 7:21 pm
Forum: Platform Related Issues
Topic: wxRichToolTip does not work properly on RHEL Linux 9.2
Replies: 4
Views: 3816

Re: wxRichToolTip does not work properly on RHEL Linux 9.2

Hi,
You probably need to use some kind of flag to not display the tip.
Reset it on EVT_LEAVE_WINDOW and check if it's already been shown.

Thank you.
by ONEEYEMAN
Fri Mar 08, 2024 3:59 am
Forum: Platform Related Issues
Topic: Where is the library comes from
Replies: 6
Views: 3985

Re: Where is the library comes from

Hi, igor@IgorReinCloud ~/wxWidgets/buildGTK $ ./wx-config --libs -L/home/igor/wxWidgets/buildGTK/lib -pthread -Wl,-rpath,/home/igor/wxWidgets/buildGTK/lib -lwx_gtk3u_xrc-3.2 -lwx_gtk3u_html-3.2 -lwx_gtk3u_qa-3.2 -lwx_gtk3u_core-3.2 -lwx_baseu_xml-3.2 -lwx_baseu_net-3.2 -lwx_baseu-3.2 Thank you.
by ONEEYEMAN
Thu Mar 07, 2024 10:11 pm
Forum: C++ Development
Topic: App won't close correctly when using a dialog
Replies: 5
Views: 3980

Re: App won't close correctly when using a dialog

Hi,
You should ALWAYS consult an official sources (documentation, samples), BEFORE turning to everythig else (YouTube, ChatGPT, etc).

Thank you.
by ONEEYEMAN
Thu Mar 07, 2024 4:26 pm
Forum: C++ Development
Topic: wxStaticText::SetLabel segfaults
Replies: 4
Views: 4015

Re: wxStaticText::SetLabel segfaults

Hi,
What platform are you testing it on?
Can you reproduce the crash in a small self-contained example?

Thank you.
by ONEEYEMAN
Wed Mar 06, 2024 6:02 pm
Forum: C++ Development
Topic: Resize wxFrame according to
Replies: 5
Views: 4165

Re: Resize wxFrame according to

Hi,
Use stretch spacer/sizer on the left and right of the main frame sizer.

BTW, you calls to Fit() do not make much sense - SetSizerAndFit() already does what Fit() should do.

BTW2, why do you want the template frame?

Thank you.
by ONEEYEMAN
Wed Mar 06, 2024 2:52 pm
Forum: C++ Development
Topic: ToolTip boxes background color
Replies: 2
Views: 7558

Re: ToolTip boxes background color

Hi,
wxWidgets using native controls, whenever possible.
Try wxRichToolTip.

If not - you will need to code that yourself.

Thank you.
by ONEEYEMAN
Wed Mar 06, 2024 12:50 pm
Forum: C++ Development
Topic: wxStatusbar not updated with help text by wxMenu as popup.
Replies: 5
Views: 4150

Re: wxStatusbar not updated with help text by wxMenu as popup.

Hi,
Please open an issue at github.com/wxwidgets/wxwidgets.git.

Thank you.
by ONEEYEMAN
Tue Mar 05, 2024 1:42 pm
Forum: Platform Related Issues
Topic: Where is the library comes from
Replies: 6
Views: 3985

Re: Where is the library comes from

doublemax,
Prior to posting I completely remove the build directory and build the program from scratch.

Now, I want to know how to fix all this.

Thank you.