Create a cross platform Windows, Mac OS X application - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T00:41:41Z http://stackoverflow.com/feeds/question/252514 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application 10 Create a cross platform Windows, Mac OS X application armahg 2008-10-31T03:22:56Z 2009-02-03T19:24:12Z <p>Hello, I would like to build an application that runs on both Windows and Mac OS X. I would also like it to leverage the best of what the platform it runs on has to offer with regards to Frameworks, API's etc. Is there a way to do this without having to write Objective-C code and then C# code? I've been thinking of C++ as an alternative but I was wondering if there was anything else out there. The app will be GUI based (though I don't know exactly what it will do yet)</p> <p>-G.</p> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/252520#252520 3 Answer by Benji for Create a cross platform Windows, Mac OS X application Benji 2008-10-31T03:27:07Z 2008-10-31T03:27:07Z <p>For the GUI, I'd look into SDL or QT.</p> <p>Also, check out mono <a href="http://mono-project.com/Main_Page" rel="nofollow">http://mono-project.com/Main_Page</a></p> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/252527#252527 0 Answer by James Van Huis for Create a cross platform Windows, Mac OS X application James Van Huis 2008-10-31T03:32:10Z 2008-10-31T03:32:10Z <p>As long as you are not tied to languages, it looks like Java is a good candidate. Pair that up with SWT for the GUI, and you will have a native looking app on any OS you like.</p> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/252546#252546 12 Answer by Robert S. for Create a cross platform Windows, Mac OS X application Robert S. 2008-10-31T03:46:26Z 2008-10-31T03:46:26Z <p>Take a look at <a href="http://www.realsoftware.com/products/realbasic/index.php" rel="nofollow">RealBasic</a>. Seriously. You can write an app in RealBasic and deploy it on Windows, Mac OS X, and Linux.</p> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/252558#252558 24 Answer by Sherm Pendley for Create a cross platform Windows, Mac OS X application Sherm Pendley 2008-10-31T03:53:34Z 2008-10-31T04:07:59Z <p>It's good that you're thinking of portability early on - it's vastly more difficult to "bolt it on" after the fact.</p> <p>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 <a href="http://developer.apple.com/documentation/UserExperience/Conceptual/AppleHIGuidelines/XHIGIntro/chapter_1_section_1.html" rel="nofollow">Apple's Human Interface Guidelines</a> include how the controls should be arranged, how button labels should be phrased, what standard shortcut keys should be used, etc.</p> <p>Even Microsoft had to <a href="http://blogs.msdn.com/rick_schaut/archive/2004/02/26/80193.aspx" rel="nofollow">learn the hard way</a> about the dangers of trying to write a cross-platform GUI, with the ill-fated Word 6.0 for Mac.</p> <p>IMHO, a better approach is to use an <a href="http://en.wikipedia.org/wiki/Model-view-controller" rel="nofollow">MVC</a> 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.</p> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/252560#252560 2 Answer by Paul Betts for Create a cross platform Windows, Mac OS X application Paul Betts 2008-10-31T03:57:53Z 2008-10-31T03:57:53Z <p>If you're a Windows developer, use either Qt or C# Winforms; if you're a Mac developer, you could try Cocotron (<a href="http://www.cocotron.org/" rel="nofollow">http://www.cocotron.org/</a>), but it's not 100% finished yet, though commercial apps have been shipped with it.</p> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/252572#252572 5 Answer by Jamie Love for Create a cross platform Windows, Mac OS X application Jamie Love 2008-10-31T04:06:07Z 2008-10-31T04:06:07Z <p><a href="http://www.wxwidgets.org/" rel="nofollow">wxWidgets</a> is a cross platform C++ library, which is a practical choice. But I agree with Sherm - all cross platform libraries do create an inferior UI to native applications.</p> <p>It's made harder by each OS having different UI semantics (button orders etc), so while you may achieve a good look, getting the 'feel' right on each platform via one view layer is almost bound to be impossible.</p> <p>Depending on what you end up doing, you may find a web interface better (e.g. embed a web server in your app and serve HTTP pages to a browser). You avoid the L&amp;F issues then!</p> <p>Alternatively, you can decide you're just going to have a completely non-standard L&amp;F, and go for something like wxWidgets, or Tcl/Tk.</p> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/252616#252616 0 Answer by MusiGenesis for Create a cross platform Windows, Mac OS X application MusiGenesis 2008-10-31T04:46:28Z 2008-10-31T04:46:28Z <p>I'm planning to do a similar thing, and I'm considering creating a C#/.NET Windows application and then porting it to OS X using Mono. My application already has a completely (except for the title bar and corner buttons) custom-drawn user interface, so the cosmetic OS differences shouldn't affect me too much.</p> <p>I'm not sure what you mean by leveraging the best of each platform in terms of frameworks and APIs and so forth. In general, writing a cross-platform application means writing to a least common denominator, and thus means <em>not</em> getting the best out of each platform.</p> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/252699#252699 3 Answer by Jay for Create a cross platform Windows, Mac OS X application Jay 2008-10-31T05:54:05Z 2008-10-31T05:54:05Z <p>If you do decide to go with C++ there are a number of good cross-platform GUI libraries that will allow you to avoid having to duplicate the GUI code for each platform. For example: </p> <ul> <li><a href="http://www.rawmaterialsoftware.com/juce/" rel="nofollow">Juce</a></li> <li><a href="http://trolltech.com/products/appdev" rel="nofollow">QT</a></li> <li><a href="http://www.wxwidgets.org/" rel="nofollow">wxWidgets</a></li> </ul> <p>There are a number of other similar projects but those are some of the better and more well-known ones. For the remainder of your code, anything system-specific will of course have to be written using separate C++ code to interface with Win32 APIs or OS X's system API where necessary. That being said, you may find you're able to avoid much of the system-specific code by using extensive libraries like <a href="http://www.boost.org/" rel="nofollow">Boost</a>. </p> <p>Other suggestions would be things like using a configuration file instead of the Windows registry or a plist file on the mac. Instead, shoot for platform-agnostic approaches wherever possible to minimize the places where you have to write code using system APIs. </p> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/252728#252728 3 Answer by titaniumdecoy for Create a cross platform Windows, Mac OS X application titaniumdecoy 2008-10-31T06:13:15Z 2008-10-31T06:13:15Z <p>You should use the best tools available for each OS.</p> <p>C/C++ code can be separated from the GUI and used in each separately developed program.</p> <p>Before you make a decision, take a look at cross-platform apps that have been developed with portable toolkits such as Qt or wxWidgets. In my experience they are never as polished as their native counterparts, especially on the mac.</p> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/252739#252739 3 Answer by le dorfier for Create a cross platform Windows, Mac OS X application le dorfier 2008-10-31T06:27:04Z 2008-10-31T06:27:04Z <p>Adobe Flex, with the AIR libraries, does a good job of giving you a single, highlevel development environment for this sort of thing. I've written several utilities that people use on both platforms interchangeably.</p> <p>You also get reasonable portability to a browser thrown in, too, if that's of interest. But I think it's a pretty good solution without considering that benefit.</p> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/252740#252740 0 Answer by Gustavo Rubio for Create a cross platform Windows, Mac OS X application Gustavo Rubio 2008-10-31T06:28:20Z 2008-10-31T06:28:20Z <p>Java or Mono come to my mind. Some people may argue that java graphical toolkits are not the cuttest out there but it seems to be, at least to me, the easiest way to port your application to several platforms and avoid deployment difficulties.</p> <p>Mono, on the other hand, could be a little bit more difficult to port as you would have to write at least the gui twice if you plan to have native widgets (either winforms or GTK for windows and CocoaSharp for Max) but you could write the backend only once and develop a frontend for each platform.</p> <p>As I said, Java GUI toolkits might not feel "native" inside OSX or even on Windows but they sure work on both platforms, you could use either Swing or AWT.</p> <p>As for mono, you can use GTK or Winforms for both windows and OSX but they still will not feel native, you can, however use CocoaSharp which are bindings to the Cocoa framework but Im not sure about the status of the project (read: functionality support)</p> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/252759#252759 0 Answer by Atomiton for Create a cross platform Windows, Mac OS X application Atomiton 2008-10-31T06:57:56Z 2008-10-31T06:57:56Z <p>I second Java. It is designed as a cross-platform solution.</p> <p>Others have mentioned Adobe Air. </p> <p>Similar to Adobe Air is Silverlight. I believe it is (or will be) completely cross platform.</p> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/252791#252791 1 Answer by Malkocoglu for Create a cross platform Windows, Mac OS X application Malkocoglu 2008-10-31T07:21:20Z 2008-10-31T07:21:20Z <p>Also check out <a href="http://fltk.org" rel="nofollow">fltk</a> , wxWidgets is very good &amp; rich but also very big...</p> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/252812#252812 0 Answer by swapnonil for Create a cross platform Windows, Mac OS X application swapnonil 2008-10-31T07:37:33Z 2008-10-31T07:37:33Z <p>You can create fantastic looking cross platform applications with Java Swing. It just requires slightly more effort to learn to do so.</p> <p>Here, take a look at some of these links.</p> <ol> <li><a href="http://jidesoft.com/products/component.htm" rel="nofollow">http://jidesoft.com/products/component.htm</a></li> <li><a href="http://www.xerto.com/imagery.php" rel="nofollow">http://www.xerto.com/imagery.php</a></li> <li><a href="http://www.jgraph.com/screenshots.html" rel="nofollow">http://www.jgraph.com/screenshots.html</a></li> <li><a href="http://www.javootoo.com/" rel="nofollow">http://www.javootoo.com/</a></li> <li><a href="http://www.formdev.com/screenshots/" rel="nofollow">http://www.formdev.com/screenshots/</a></li> <li><a href="http://www.jidesoft.com/products/oss.htm" rel="nofollow">http://www.jidesoft.com/products/oss.htm</a></li> </ol> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/253306#253306 1 Answer by orj for Create a cross platform Windows, Mac OS X application orj 2008-10-31T12:18:40Z 2008-10-31T12:18:40Z <p>As others have mentioned is is definitely possible to create good looking cross platform GUI in Java on both Windows and Mac. However if you want your app to blend in and behave in a way that makes it "feel" like an application designed from the ground up for the platform it is running on, you really have to develop the GUI and user experience for each version of the application separately.</p> <p>If you analyze what your application is going to do and figure that there is a significant portion of code/logic that could be shared between platforms then write that portion in a portable way in a language that is available on both systems. C, C++, Java, Python, Ruby, etc. If there isn't a significant portion, ie most of the code is going to be for the GUI then there is less of a case for sharing any code at all.</p> <p>In the case that there is a significant portion of common code, I would suggest looking into Python and Ruby as implementation languages as there are Cocoa bindings for those languages on the Mac and on Windows with the use of IronPython and IronRuby you could use reuse that code in a .Net application as well. </p> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/253321#253321 3 Answer by TheMarko for Create a cross platform Windows, Mac OS X application TheMarko 2008-10-31T12:29:04Z 2008-10-31T12:29:04Z <p>The upcoming QT-Creator might be worth a look: <a href="http://trolltech.com/developer/qt-creator" rel="nofollow">link text</a></p> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/257549#257549 0 Answer by Dirk Stoop for Create a cross platform Windows, Mac OS X application Dirk Stoop 2008-11-02T23:07:23Z 2008-11-02T23:07:23Z <p>The guys at Magnetism Studios have a nice <a href="http://macdaddyworld.com/2008/10/27/adventures-in-cocotron/" rel="nofollow" title="cocotron">write up on using Cocotron</a> to build a Windows executable with Xcode.</p> <p>I have no experience with Cocotron, but if I needed to write a windows app —with a Mac development background— this would be the first thing I'd try.</p> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/383880#383880 2 Answer by armahg for Create a cross platform Windows, Mac OS X application armahg 2008-12-20T23:33:53Z 2008-12-20T23:33:53Z <p>thanks for all your answers. I've been doing some research and playing around with WPF and CAnimation etc. It looks like using a C/C++ model and doing the GUI individually for each platform is the best way to go. Thanks for all your help.</p> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/383949#383949 2 Answer by Jason Baker for Create a cross platform Windows, Mac OS X application Jason Baker 2008-12-21T00:57:11Z 2008-12-21T00:57:11Z <p>My suggestion, use Python. Python integrates with both Objective-C and C# (IronPython). Just avoid a lot of the brand new bleeding edge features of the language and you're ok.</p> <p>Granted, it won't be mindlessly easy. But I'd argue that it <em>shouldn't</em> be mindlessly easy. It becomes very apparent when designers don't take into consideration how their application will work when it gets ported to another platform.</p>