Search found 7467 matches

by ONEEYEMAN
Tue Apr 09, 2024 11:23 pm
Forum: C++ Development
Topic: Capturing keys
Replies: 7
Views: 133

Re: Capturing keys

Hi,
If you need traversal between different controls - put wxPanel on the TLW and use it as a parent for all controls.

Then you will not need to handle any keyboard events.

Thank you.
by ONEEYEMAN
Sun Apr 07, 2024 11:56 am
Forum: Compiler / Linking / IDE Related
Topic: Wx-GTK build fails on Cygwin_x64
Replies: 6
Views: 2307

Re: Wx-GTK build fails on Cygwin_x64

Hi,
What is your exact configure line and the error you received.
Please copy/paste it inside "code" tags.

Thank you.
by ONEEYEMAN
Fri Apr 05, 2024 4:01 am
Forum: C++ Development
Topic: wxListBox is not triggering events on custom pop up window
Replies: 22
Views: 4289

Re: wxListBox is not triggering events on custom pop up window

Hi,
Are you doing all thos for autocompletion?
Do you know that there is an autocompletion already available?

Thank you
by ONEEYEMAN
Thu Apr 04, 2024 8:48 am
Forum: Platform Related Issues
Topic: Wildcard Filter for files without extension like "crontab"
Replies: 9
Views: 4842

Re: Wildcard Filter for files without extension like "crontab"

Hi,
What OSX version do you test under?
Do you have permission to open the file?

Thank you.
by ONEEYEMAN
Wed Apr 03, 2024 7:27 pm
Forum: C++ Development
Topic: Automatically delete detached wxThread after Entry() call
Replies: 7
Views: 4570

Re: Automatically delete detached wxThread after Entry() call

Hi,
Did you look at the documentation and/or the "thread" sample?

Thank you.
by ONEEYEMAN
Sat Mar 30, 2024 7:40 pm
Forum: C++ Development
Topic: Easiest method to bind ENTER key to the action method/func for a button
Replies: 8
Views: 8754

Re: Easiest method to bind ENTER key to the action method/func for a button

Hi,
ALWAYS, ALWAYS try to find the answer from the official resources first (here, wx-users ML, wx chat) before going to some YouTube/ChatGPT/etc crap.

Remember - what works for one may not work for the other.

Thank you.
by ONEEYEMAN
Sat Mar 30, 2024 2:40 am
Forum: Platform Related Issues
Topic: GTK2 or GTK3? Please help me understaing and/or solving
Replies: 3
Views: 1619

Re: GTK2 or GTK3? Please help me understaing and/or solving

Hi,
Also keep in mind that GTK2 is not DPI aware (for you it doesn't mater anyway - just wanted to mention it just in case).

Thank you.
by ONEEYEMAN
Fri Mar 29, 2024 6:24 pm
Forum: Platform Related Issues
Topic: GTK2 or GTK3? Please help me understaing and/or solving
Replies: 3
Views: 1619

Re: GTK2 or GTK3? Please help me understaing and/or solving

Hi,
If your program works as expected - I wouldn't be worrying too much about such message.

Thank you.
by ONEEYEMAN
Thu Mar 28, 2024 3:38 pm
Forum: General Development
Topic: Porting wxWidgets to Rust?
Replies: 5
Views: 14324

Re: Porting wxWidgets to Rust?

Hi,
Follow evstevemd suggestion.

This is user forum made by users for users of the library and no core wx-devs are coming here.

Thank you.
by ONEEYEMAN
Thu Mar 28, 2024 3:36 am
Forum: C++ Development
Topic: Easiest method to bind ENTER key to the action method/func for a button
Replies: 8
Views: 8754

Re: Easiest method to bind ENTER key to the action method/func for a button

Hi
How do you create the button? I presume it is an object of wxButton class, right?

Is the window you place all this wxDialog or wxFrame?

Thank you.
by ONEEYEMAN
Wed Mar 27, 2024 7:36 pm
Forum: C++ Development
Topic: Main window shuts down on parent refresh
Replies: 2
Views: 1478

Re: Main window shuts down on parent refresh

Hi,
Yes, do Debug build and inspect a stack trace/backtrace.

More than likely you have a nullptr somewhere in your code. Or a variable shadowing (which is also essentially nullptr).

Thank you.
by ONEEYEMAN
Tue Mar 26, 2024 3:32 pm
Forum: Compiler / Linking / IDE Related
Topic: Compiling Latest wxWidgets in Windows with MinGW64: cannot compile Minimal example.
Replies: 7
Views: 9568

Re: Compiling Latest wxWidgets in Windows with MinGW64: cannot compile Minimal example.

Hi,
Exactly like this:

Code: Select all

mingw32-make -j8 -f makefile.gcc CXXFLAGS="-std=gnu++17" USE_XRC=1 SHARED=0 UNICODE=1 MONOLITHIC=0 BUILD=debug CFG=_MinGW1320x64_d
Thank you.
by ONEEYEMAN
Tue Mar 26, 2024 3:28 pm
Forum: C++ Development
Topic: Embed a frame within a wxPanel of a wxAuiNotebook
Replies: 4
Views: 8662

Re: Embed a frame within a wxPanel of a wxAuiNotebook

Hi,
Because from the compiler point of view everything is correct.

Its probably possible to have an ASSERT() sying such a thing and I think it was there at one point of time...

Thank you.
by ONEEYEMAN
Mon Mar 25, 2024 9:14 pm
Forum: Platform Related Issues
Topic: wxFileSelectorCombo not displaying File name
Replies: 2
Views: 1517

Re: wxFileSelectorCombo not displaying File name

Hi,
Is the sample works?

Thank you.