I want just know how Adobe makes Photoshop cross-platform? I know Photoshop is written completely in C++, but what about the GUI? Does Adobe use GUI toolkits?

link|improve this question

60% accept rate
I'm not entirely sure to be honest, but it if helps, it's worth looking up Nokia's Qt framework. I've seen it used in several cross platform graphics applications, like Nuke. (I wouldn't say Photoshop uses Qt, Adobe might roll they're own ) – George Profenza May 3 at 18:53
feedback

1 Answer

For any natively compiled, cross-platform project, the solution is typically to have small portions of the code called "wrappers" written exclusively for specific platforms. These wrappers do all the talking directly to the platform.

This makes an app like Photoshop multi-platform, but it wouldn't necessarily build on a platform that Adobe hasn't written wrappers for.

link|improve this answer
yes, your are right, i understand now, and i found here an example of "Wrapper function" en.wikipedia.org/wiki/Wrapper_function but i think Wrapper function is a very long and hard solution for making software cross-platform ! Thank You Shmoopty =) – Freeseif Oct 25 '10 at 0:10
feedback

Your Answer

 
or
required, but never shown

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