wxWindows 2 for Mac FAQ

See also top-level FAQ page.


List of questions in this category


Where should I download wxMac from?

Please see the downloads page. The version of wxMac in CVS advances quickly so it is recommended that you download the the sources from the CVS trunk. There is also a wxMac 2.3.1 development snapshot.

The author of this port is Stefan Csomor.

Which Mac platforms are supported?

wxWindows 2 can be used to develop and deliver applications on Classic Mac OS (e.g. Mac OS 8.x/9.x) both as Carbon and non-Carbon applications.

A Mac OS X port is in progress in order to be able to build wxWindows applications using the Apple Developer Tools that are delivered with every copy of Mac OS X. The Mac OS X port is based on and, for the most part, merged with the Carbon code for Classic Mac OS.

How is the Mac OS X port different from the Classic Mac OS port?

wxMac for Mac OS X shares code both with wxMac for Mac OS and common Unix code in wxWindows. The aim is to use the same Mac OS Carbon code both for Classic Mac OS and for Mac OS X while leveraging the fact that Mac OS X is a BSD Unix.

This hybrid approach was suggested by Apple to the Fizzilla team working on Mozilla for Mac OS X.

How are improvements to the Classic Mac OS port integrated into the Mac OS X port?

Since the source code is shared between the two ports, any Carbon compliant improvements to wxMac for Classic Mac OS are automatically available in the Mac OS X port.

The following points should be considered when improving wxMac:

What compilers are supported?

Under Classic Mac OS, MetroWerks CodeWarrior Pro 5.3 or 6 are required to build wxMac.

Under Mac OS X, the Developer Tools are sufficient to build wxMac. CodeWarrior Pro 6 can also be used to build the Carbon targets.

How does CVS handle file types/creators under Mac OS 8.x/9.x?

Before checking out the wxWindows code using a CVS client under Mac OS 8.x/9.x, be sure your computer is set up to treat xpm and xbm images correctly:

How does CVS handle file types/creators under Mac OS X?

The Mac OS X CVS client does not handle file types and creators at all (just like every Unix command line CVS client). This is an issue only when the checked out files will also be used under Mac OS 8.x/9.x.

All files checked out under Mac OS X will be untyped and CodeWarrior will not recognize them correctly. To correct this, use the autotyper provided in the CVS sources:

What steps are required to build wxMac using CodeWarrior Pro 5.3?

The latest build for Carbon support lead to a few changes that you will have to follow in order to successfully compile the code. This is also necessary even if you don'want to build the Carbon targets.
  1. you need CodeWarrior Pro 5.3, i.e. 5.0 with all the upgrades
  2. you have to download the Universal Interfaces 3.3.2 or later from the Apple Developer web site, Universal Interfaces 3.4 is required for Carbon Printing support
  3. put the Universal folder into the MacOS Support folder and replace older versions
  4. remove from the MacOS Support folder the separate OpenTransport folder
  5. open the file MacOS Support:MacHeaders:MacHeaders.c and add the line
    #include <ControlDefinitions.h>
    after the line
    #include <Controls.h>
  6. rebuild all MacHeaders from the MacHeaders.mcp project in the same folder

Build the projects (makemac6.mcp for CodeWarrior Pro 6; makemac.mpc for CodeWarrior Pro 5) in the following five directories:

What steps are required to build wxMac under Mac OS X?

You need to have the Apple Developer Tools installed. The Developer Tools CD is one of the 3 CDs that are delivered with Mac OS X but must be installed in addition to the default Mac OS X installation.

Building wxMac completely without configure is not supported.

Building wxWindows directly in the CVS sandbox is not recommended. Instead, wxWindows should be built in a directory configured relatively to the CVS sandbox. For instance, to build wxMac with configure, start in the base wxWindows directory and type:

What important settings are required in the CodeWarrior Project Preferences?

For some reasons the CodeWarrior project settings may get changed and this may lead to the inability to compile a certain target. In order to verify the settings click on the target tab, double click on the respective target and then select the following items on the tree-view on the left. Here are the important checks:
  1. under Target/Access Paths, make sure the first user include does not have a folder icon for recursive search.
  2. under Language Settings/C/C++ Language, make sure that the only checked items are:
    • Enable C++ Exceptions
    • Enable RTTI
    • Enable bool Support
    • Enable wchar_t Support
    • Relaxed Pointer Type Rules
    • Use Unsigned Chars
  3. under Language Settings/C/C++ Warnings, make sure that the only checked items are:
    • Illegal Pragmas
    • Extended Error Checking
    • Inconsistent Use of 'class' and 'struct' Keywords
    • Hidden Virtual Functions but be aware that the framework itself has some of these beauty spots
  4. under Linker/PPC Linker, make sure that the following items are checked:
    • Dead-strip Static Initialization Code in order to avoid including libraries that are not needed, especially as things like OpenGL get added to the projects and sources

What are the smart preprocessing errors with the Apple Developer Tools?

Smart preprocessing is activated with the -cpp-precomp option and allows much faster preprocessing of the source files by loading precompiled Carbon header files. This option speeds up the compilation of wxMac by a factor of 2 at least. When compiling wxMac using the Apple Developer Tools, the following error is displayed for certain files: This error is due to the smart precompiler which does not fully understand C++ syntax and reverts to basic preprocessing when a smart preprocessing error occurs. This error can sometimes be corrected or avoided by modifying the source code. However, leaving these errors is not a problem since the preprocessor automatically switches to basic preprocessing if necessary.

How does wxMac support the standard Apple About menu item and Help menu?

Because wxWindows does not have a specific API for the About menu item or the Help menu, the Mac OS port uses some static variables to help the engine make the right decisions: