Search found 1281 matches
- Sat Feb 29, 2020 6:48 pm
- Forum: Open Discussion
- Topic: Developing for the Big 3
- Replies: 4
- Views: 3070
Re: Developing for the Big 3
However now VirtualBox have an option to install OSX inside VM, so I guess it is OK. This is because the macOS license does allow you to run macOS in a guest VM on macOS host machines (running on Apple hardware). I believe it's even licensed to run in a guest VM on a Windows 10 host, but only if th...
- Fri Dec 27, 2019 9:31 pm
- Forum: General Forum Issues
- Topic: Is https://trac.wxwidgets.org/ down?
- Replies: 5
- Views: 5740
Re: Is https://trac.wxwidgets.org/ down?
I've restarted the service, it's back up now.
- Mon Nov 18, 2019 2:15 am
- Forum: General Forum Issues
- Topic: Unable to post (Message seems to be spam)
- Replies: 6
- Views: 3236
Re: Unable to post (Message seems to be spam)
I've whitelisted your account from our spam filters.
- Mon Feb 18, 2019 9:28 pm
- Forum: Forum Announcements
- Topic: Forums Upgraded to 3.2.5
- Replies: 1
- Views: 10438
Forums Upgraded to 3.2.5
You might notice some changes to the look and feel of the forums today. We've upgraded from phpBB 3.1 to 3.2. There's lots of nifty new features , but let me just quickly point out some of the most relevant ones for you: Emoji 💯 A brand-new BBCode parser allows you to make use of the entire Emoji ke...
- Thu Jan 31, 2019 2:43 am
- Forum: Announcements and Discoveries
- Topic: ANN: New wxWidgets based app, Other World Mapper
- Replies: 3
- Views: 1860
Re: ANN: New wxWidgets based app, Other World Mapper
Nice work, you should consider opening a pull request to the wxWidgets website to add this to the screenshots page, similar to this one: https://github.com/wxWidgets/website/pull/2
- Fri Nov 09, 2018 3:11 pm
- Forum: General Forum Issues
- Topic: British English, but no American English
- Replies: 5
- Views: 5692
Re: British English, but no American English
We have a couple extensions installed that don't provide/support American English, mostly due to the fact that phpBB itself uses British English as it's source locale. Being that wxWidgets does the same, we've never really thought it might be a problem for anyone. Installing additional locales requi...
- Sun Nov 26, 2017 3:07 am
- Forum: Compiler / Linking / IDE Related
- Topic: Current status of wxWidgets with MinGW based compilers
- Replies: 5
- Views: 1590
Re: Current status of wxWidgets with MinGW based compilers
I'm not sure if you're aware of this, but wxWidgets has some AppVeyor CI builds setup that are constantly monitoring merged commits and pull requests for MinGW (32bit), MSYS2 (64bit), and Cygwin. Builds are found here: https://ci.appveyor.com/project/wxWidgets/wxwidgets Environment details here: htt...
- Tue Nov 17, 2015 2:12 pm
- Forum: C++ Development
- Topic: Show/Hide from parent element doens't completely hide children
- Replies: 3
- Views: 1703
Re: Show/Hide from parent element doens't completely hide children
If you don't have both panels in a sizer, you should only have *one* panel as a child of any top level window, regardless of whether one is hidden or not. wxWidgets does some magic sizing for a single child window that isn't in a sizer, and you're likely confusing it. I would second the recommendati...
- Thu Nov 12, 2015 2:36 pm
- Forum: Platform Related Issues
- Topic: Best Cross Platform Build Approach?
- Replies: 5
- Views: 2070
Re: Best Cross Platform Build Approach?
Atom CPU and virtualization? Ouch. Don't even bother with a virtual machine, your only option is to just dual boot. Using something like VirtualBox on an Atom CPU could easily take half a day just to compile wxWidgets. Even using VirtualBox / VMWare / or some other kind of virtual machine other than...
- Wed Nov 11, 2015 4:32 am
- Forum: Platform Related Issues
- Topic: Best Cross Platform Build Approach?
- Replies: 5
- Views: 2070
Re: Best Cross Platform Build Approach?
If you only have one computer, consider setting it up to dual-boot both Windows and Linux, and just use your VCS (i.e. git) to sync up your code. You'll want the extra CPU power necessary for compiling the code that you lose while compiling code inside of a virtual machine.
- Tue Nov 10, 2015 3:15 pm
- Forum: Compiler / Linking / IDE Related
- Topic: Visual C and Link-time Code Generation
- Replies: 2
- Views: 1336
Re: Visual C and Link-time Code Generation
As far as I understand it, if you're building and linking wxWidgets as a dynamic DLL library, it's likely not going to make a difference. It might if you're linking statically to wxWidgets, but really, don't bother unless you're you really are able to find a significant boost in performance. It is k...
- Tue Oct 20, 2015 3:01 am
- Forum: Forum Announcements
- Topic: Scheduled Server Maintenance on Oct 20th
- Replies: 1
- Views: 9304
Re: Scheduled Server Maintenance on Oct 20th
Maintenance has been completed, thanks for your patience.
- Sat Oct 17, 2015 9:49 pm
- Forum: Forum Announcements
- Topic: Scheduled Server Maintenance on Oct 20th
- Replies: 1
- Views: 9304
Scheduled Server Maintenance on Oct 20th
The server hosting our online documentation, wiki, and forums will be undergoing some critical security updates within a two hour window starting at: 2015-10-20 2:00:00 AM UTC Expected downtime should be no more than 20 to 30 minutes or so. This is in response to some Xen Security Advisories which w...
- Fri Oct 02, 2015 1:16 pm
- Forum: C++ Development
- Topic: Printing a logo in every page of a document
- Replies: 4
- Views: 1286
Re: Printing a logo in every page of a document
I don't think that's possible with wxRichTextPrinting. It's really designed to make printing ridiculously easy since it's extremely complicated to handle printing yourself using wxPrintout, but in this case, if you really want to power to make customizations like rendering images in headers or foote...
- Tue Sep 29, 2015 2:39 am
- Forum: C++ Development
- Topic: How to detect if Modal dialog is open within application
- Replies: 3
- Views: 2094
Re: How to detect if Modal dialog is open within application
The best idea I could maybe come up with is to use FindFocus(), and check if the containing top level window is a wxDialog, and checking that for wxDialog::IsModal(). That sounds like a fairly unreliable solution though (just because it's modal doesn't mean it necessarily has focus), and it would be...