It's good that you're thinking of portability early on - it's vastly more difficult to "bolt it on" after the fact. There are various cross-platform kits available, but IMHO all of them fall a bit short of providing a "native" look and feel on all the supported platforms. On the Mac (what I use), proponents of such kits always want to mention that they're using native controls. That's a good start, but it's not the whole journey. Other issues addressed by [Apple's Human Interface Guidelines][1] include how the controls should be arranged, how button labels should be phrased, what standard shortcut keys should be used, etc. Even Microsoft had to [learn the hard way][2] about the dangers of trying to write a cross-platform GUI, with the ill-fated Word 6.0. IMHO, a better approach is to use an [MVC][3] design, with the model layer written in standard, portable C++, and the view and controller layers using the native toolkit for each platform. Your Mac version, for instance, could use Carbon and C++ throughout, or you could use Cocoa, using Objective-C in the view and Objective-C++ in your controllers to bridge the language gap. Your Windows version could likewise compile your model as "managed C++", and use any .NET language for controllers and views. [1]: http://developer.apple.com/documentation/UserExperience/Conceptual/AppleHIGuidelines/XHIGIntro/chapter_1_section_1.html [2]: http://blogs.msdn.com/rick_schaut/archive/2004/02/26/80193.aspx [3]: http://en.wikipedia.org/wiki/Model-view-controller