Search found 293 matches

by rocrail
Mon May 13, 2019 2:42 pm
Forum: Platform Related Issues
Topic: wxADJUST_MINSIZE in wx 3.1.3 (GIT master) error under Windows
Replies: 1
Views: 826

wxADJUST_MINSIZE in wx 3.1.3 (GIT master) error under Windows

Hi, I use the wxWidgets GIT master sources on both macOS and Windows 10. Compiling the same application under macOS and Windows 10 will end up under Windows 10 with an error that wxADJUST_MINSIZE is undefined. OK, but why only under Windows and not un der macOS. Is wxADJUST_MINSIZE obsolete? Should ...
by rocrail
Mon May 13, 2019 1:17 pm
Forum: Platform Related Issues
Topic: Windows 10 Dark Mode
Replies: 17
Views: 16838

Re: Windows 10 Dark Mode

Hi,

the Windows setting is found here:
win10dark.png
The File Explorer, Calendar, ... does change its color automatically, but other common Apps like Wordpad does not.
by rocrail
Mon May 13, 2019 12:17 pm
Forum: Platform Related Issues
Topic: Windows 10 Dark Mode
Replies: 17
Views: 16838

Windows 10 Dark Mode

Hi, under macOS the Desktop Dark Mode is also reflected in wxWidgets based applications. The same application remains 'Light mode' under Windows even if Windows has set Dark Mode. The diff between both builds is that under macOS the Git master is used, and under Windows wxWidgets release 3.0.3. Shou...
by rocrail
Wed May 08, 2019 8:11 am
Forum: C++ Development
Topic: Move Dialog or Frame on second monitor.
Replies: 3
Views: 601

Re: Move Dialog or Frame on second monitor.

Hi,

I'm developing under macOS 10.14 with wxWidget 3.1.3 (git master).

Yes, the Dialogs become in the constructor the parent.

Its no big deal to swap wxDialog to wxFrame for those few concerning Dialogs. In fact I already did. ;)
by rocrail
Wed May 08, 2019 6:26 am
Forum: C++ Development
Topic: Move Dialog or Frame on second monitor.
Replies: 3
Views: 601

Move Dialog or Frame on second monitor.

Hi, I'm experimenting with a second Monitor which increases the Desktop. My application saves Dialog and Frame positions, en move them to the previous position after restart. This works perfectly with AUI and Frames, but Dialogs always appear on the same monitor as the application. wxDialog and wxFr...
by rocrail
Wed Feb 13, 2019 2:38 pm
Forum: Compiler / Linking / IDE Related
Topic: macOS Compile error (git master 3.1.3) property 'effectiveAppearance' not found
Replies: 6
Views: 1837

Re: macOS Compile error (git master 3.1.3) property 'effectiveAppearance' not found

Thanks!
That did the trick.

So make clean and configure does not always get it straight.
by rocrail
Wed Feb 13, 2019 10:30 am
Forum: Compiler / Linking / IDE Related
Topic: macOS Compile error (git master 3.1.3) property 'effectiveAppearance' not found
Replies: 6
Views: 1837

Re: macOS Compile error (git master 3.1.3) property 'effectiveAppearance' not found

Yes, the stable version is OK.
The Git master was also OK until last week.
I use the master because of the Dark Theme support.
by rocrail
Tue Feb 12, 2019 12:25 pm
Forum: Compiler / Linking / IDE Related
Topic: macOS Compile error (git master 3.1.3) property 'effectiveAppearance' not found
Replies: 6
Views: 1837

macOS Compile error (git master 3.1.3) property 'effectiveAppearance' not found

Hi, after a git pull, and a new configure command: ../configure --enable-unicode --with-osx_cocoa --with-macosx-sdk=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk --with-macosx-version-min=10.14 --enable-graphics_ctx --enable-monolithic --enable-compat...
by rocrail
Thu Feb 07, 2019 5:32 pm
Forum: C++ Development
Topic: AUI CaptionVisible does not seem to show any effect.
Replies: 9
Views: 1135

Re: AUI CaptionVisible does not seem to show any effect.

It only works with docked panes.
OK, I noticed this by experimenting with the AUI sample.
But most of my panes are floating.
The idea was to hide the captions if all panes are in the wanted position.

The floating panes are wxMiniFrames? Could the title bar be hidden with those frames?
by rocrail
Thu Feb 07, 2019 3:11 pm
Forum: C++ Development
Topic: AUI CaptionVisible does not seem to show any effect.
Replies: 9
Views: 1135

Re: AUI CaptionVisible does not seem to show any effect.

Just for the record: I presume that Caption == Titlebar?
by rocrail
Thu Feb 07, 2019 1:49 pm
Forum: C++ Development
Topic: AUI CaptionVisible does not seem to show any effect.
Replies: 9
Views: 1135

Re: AUI CaptionVisible does not seem to show any effect.

Under macOS the caption options does do nothing; All captions remain horizontal and visible...
by rocrail
Thu Feb 07, 2019 1:37 pm
Forum: C++ Development
Topic: AUI CaptionVisible does not seem to show any effect.
Replies: 9
Views: 1135

Re: AUI CaptionVisible does not seem to show any effect.

Oh?
I will check the example first, and will report.
by rocrail
Thu Feb 07, 2019 11:37 am
Forum: C++ Development
Topic: AUI CaptionVisible does not seem to show any effect.
Replies: 9
Views: 1135

Re: AUI CaptionVisible does not seem to show any effect.

Hi,

OK, I corrected this, but no result either.
If I set this captionvisible flag to false on pane add, the caption is also showed...
by rocrail
Thu Feb 07, 2019 10:52 am
Forum: C++ Development
Topic: AUI CaptionVisible does not seem to show any effect.
Replies: 9
Views: 1135

AUI CaptionVisible does not seem to show any effect.

Hi, I'm using the AUI functions in my program. The documentation states: wxAuiPaneInfo& wxAuiPaneInfo::CaptionVisible ( bool visible = true ) CaptionVisible indicates that a pane caption should be visible. If false, no pane caption is drawn. But even if I Update the AUIManger after altering the ...
by rocrail
Tue Jan 22, 2019 3:43 pm
Forum: Platform Related Issues
Topic: How to detect the Mojave Dark Theme?
Replies: 4
Views: 1659

Re: How to detect the Mojave Dark Theme?

Thanks,

but I'm looking for a wxWidgets API call, not native macOS.