Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In the wikipedia article on Cocoa it says:

There are also open source implementations of major parts of the Cocoa framework that allows cross-platform (including Microsoft Windows) Cocoa application development, such as GNUstep, Cappuccino, and Cocotron.

Yet when I looked into whether Mac application Tweetie was available for windows the developer had ruled it out:

Windows doesn't have Cocoa, the programming environment that Tweetie is made in, as such, it seems like a poor possibility.

I'd like to have an answer to point the Tweetie developers (and as a resource for other cocoa developers) which would tell them:

  • Which implementation is the most suitable for getting a cocoa app running on windows?
  • How much work is it likely to take to get the app running under windows?
  • How easy/hard is it to maintain a common code base for Mac and Windows?
  • (any other considerations I've missed?)

Of course if it would be too much work I'd like to know that too before suggesting it and potentially sending someone else on a fruitless search.

share|improve this question
5  
Why the downvotes? It's a valid question, even if the answer is no. – Sam Hasler Apr 26 '09 at 15:09
6  
Seriously, this question is getting a lashing for no reason. – John Leidegren Apr 26 '09 at 15:16
1  
+1 I was wondering the same thing. – Zifre Apr 26 '09 at 15:16
I think it might have been because I started by talking about Tweetie, which would have appeared in the questions list. I've reworded it so the "above the fold" content is more on topic. – Sam Hasler Apr 26 '09 at 15:23

3 Answers

Don't forget:

  1. “Major parts of the Cocoa frameworks” is not the same as “the entirety of the Cocoa frameworks”. Tweetie could be using something that's missing.
  2. Tweetie could be (very probably is) using APIs from the non-Cocoa frameworks, such as Core Foundation, Core Services, Core Graphics, and Core Animation. A port of the Cocoa frameworks alone won't include any of these APIs, and even a more complete Mac-API-emulation framework will not include all of them.
  3. These frameworks are eternally chasing Apple. Even if they catch up, they'll be instantly behind again as of the next Mac OS X release. Mac developers already put off using new APIs in new Mac OS X releases while they wait for users to upgrade to those new releases; now you're asking atebits to also wait for the other-framework developer to catch up to Apple again.
  4. Any second implementation of an existing API will have bugs that the first implementation doesn't, and vice versa. These differences will cause development and support problems.
  5. You're asking atebits to add a third platform to an application that already exists on two. Supporting one platform is a lot of work. Supporting two platforms is a hell of a lot of work. Supporting three? Now you're getting into big-company territory.

So, even with these Cocoa-like frameworks, the answer is: Hard.

share|improve this answer
RE: point 2. Cocotron says "This includes the AppKit, Foundation, Objective-C runtime and support APIs such as CoreGraphics and CoreFoundation" – Sam Hasler Aug 14 '09 at 13:35
It falls under the latter half of the latter sentence, then, as it's still missing important frameworks such as Core Services (which includes Launch Services, among other things) and Address Book. – Peter Hosey Aug 14 '09 at 16:38

Among GNUstep, Cappuccino and Cocotron, Cocotron is only possible choice to port a Mac application to windows. Cappuccino is for web and GNUstep only runs on top of cygwin or mingw, which means the GUI looks nothing like native windows apps.

It is theoretically possible to build cocoa windows apps using Cocotron. However, the reality is that it is still very hard to use, and it is still quite limited in the Cocoa API.

Therefore, two possible solutions:

  • Try hard to remove the codes that are not supported by Cocotron in the original code base and do the cross compilation. Maintaining common code base will be painful.
  • Start a new GUI at all, no common code base. two choices here
    • Start a cross platform project with cross application framework such as Qt, or Java.
    • Start a windows only project. There are a lot of choices here, .Net WinForm application, MFC, etc.
share|improve this answer
sounds like the wikipedia page is incorrect and needs editing. – Sam Hasler Apr 26 '09 at 14:47
Third option would be to implement the needed pieces in Cocotron and contribute them to the project, it is open source. Of course this may vary in complexity, but people have already been doing it for reasonable pieces. The more people do it, the less everyone has to do. If you're familiar with Cocoa and have an app written already, the amount of work switching away from it and the features you'd sacrifice for another GUI framework may be more work than just implementing the pieces you need in Cocotron. Something to keep in mind, YMMV of course. – Christopher Lloyd Apr 28 '09 at 15:36

There are Windows compilers for Objective-C (the programming language used to write cocoa apps). However, Cocoa includes the frameworks for presenting the GUI. These visual frameworks are specific to Mac OS X because they use OS X only windows and other controls. So someone would need to re-implement the controls in Cocoa to use Windows controls.

Also, I am fairly certain that Tweetie uses Mac OS X only technologies like Core Animation. This does not exist on Windows, so the nice animation effects present in the apps would have to be implemented in a completely different way.

share|improve this answer
What about the implementations of the cocoa framework from the wikipedia quote in my question? – Sam Hasler Apr 26 '09 at 14:40
And if there are Objective-C compilers for windows what are they? please provide links. – Sam Hasler Apr 26 '09 at 14:43
added a link for more info about compiling objective c on windows – zpesk Apr 26 '09 at 14:46
gcc compiler suite has Objective-C as one of the supported languages, also for Windows. The best approach to have a look would possibly be via GnuSTEP. I tried that a few years back, on both Linux and Windows. But if you're coding from scratch for multiplatform, Qt would possibly be a better approach. It's truly open source now, and has scriptability (using JavaScript) built in. – akauppi Apr 26 '09 at 14:55
The O'Reilly article is old as it doesn't mention Cocotron. Cocotron maintains a branch of gcc which has more of the recent Apple additions to Objective-C than the baseline, includes an Objective-C runtime which has an API closer to Apple's than the GNU one and has functional implementations of Foundation, AppKit and CoreGraphics. It is a work in progress but a number of people have ported commercial and in-house apps with it already. As for Tweetie it obviously uses CoreAnimation. There is no reason CA couldn't be done on Windows, it's just a lot of work, probably more than Tweetie itself. – Christopher Lloyd Apr 29 '09 at 0:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.