show/hide this revision's text 2 General cleaningness

For desktop applications, writing it in an interpreted language, and using the wxWidgets GUI a cross-platform UI toolkit would like wxWidgets will get you a long way towards platform independence (you just have to be careful not to use any other modules that aren't cross-platform, use things like Python's os.path module, in Python extensivly instead place of doing things like config_path = "/home/$USER")

That said, to make a good cross-platform application, you will have to do some things differently.differently on each platform..

For example, OS X is probably the most different - preferences are usually stored in ~/Library/Prefernces/ as .plists, UI's are generallly generally based around floating windows, with a single menu-bar docked at the top-of-screen.

I suppose this is where the modularity comes into play - play.. With the preferences example above, you could have a class UserConfig, of which you have OS-specific versions of- the . The Windows one stores config data in the appropriate Application Data folder, or the registry, the . The Mac OS one uses .plist files on ~/Library/Preferences/, and the unix'y one uses ~/.dotfiles or /etc/ etc./.dotfiles.

show/hide this revision's text 1

For desktop applications, writing it in an interpreted language, and using the wxWidgets GUI toolkit would get you a long way towards platform independence (you just have to be careful not to use any other modules that aren't cross-platform, use things like os.path in Python extensivly instead of doing config_path = "/home/$USER")

That said, to make a good cross-platform application, you will have to do some things differently..

For example, OS X is probably the most different - preferences are usually stored in ~/Library/Prefernces/ as .plists, UI's are generallly based around floating windows, with a single menu-bar docked at the top-of-screen.

I suppose this is where the modularity comes into play - you could have a class UserConfig, which you have OS-specific versions of - the Windows one stores config data in the appropriate Application Data folder or the registry, the Mac OS one uses .plist files, the unix'y one uses ~/.dotfiles or /etc/ etc.