Reputation:
I would like to have some advice from my linux programmer friends, on a gui toolkit that I should learn.
I would like to learn a gui toolkit where I can write a program for a gui application that can work both in linux and windows. I mean platform independent gui toolkit. It should be simple and easy to learn.
So that with little effort I can do gui programming for both the OS.
Another point is, that library should be less memory hungry. I mean lite one.
Upvotes: 1
Views: 917
Reputation: 88707
For cross-platform programming you might want to look into JVM based languages (most notably Java, but Scala, Groovy etc. might be fine) which provide the Swing gui framework.
Additionally there are other platform independent languages like Python etc.
As for C++ there GUI toolkits like Qt or GTK+.
Upvotes: 1