![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here. |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
GUI without GTK - Is it possible?
Is GUI programming without GTK possible? If so, how? Or what libraries should I #include? Google seems to tell me that GUI programming in C++ is much more popular then in C. I'm assuming because of the Object Orientedness (if that is even a word)?
Before you say things like "Search the forums", I know there have been threads on GUI programming before, but this focuses on without using GTK. Even if I lose features, I don't plan on using GUI programming that much. |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
Is this page useful?
http://www.geocities.com/SiliconVall...4/guitool.html I had a taste of Qt some time ago. The main concern is whether you want cross-platform: Qt and GTK+ has pretty high platform independence. I have seen people using FLTK too. |
|
#3
|
||||
|
||||
|
#4
|
|||
|
|||
|
Quote:
|
|
#5
|
|||
|
|||
|
Quote:
|
|
#6
|
|||
|
|||
|
[quote=Octal]Is GUI programming without GTK possible? If so, how?[quote]
#include <X11/Intrinsics.h> and use the Widgets. GUI on Unix is normally done with X11, this is a layered architecture with Xlib at the bottem, which gives you a raw C api to the protocol, then Intrinisics which give you Widgets which are basically object orientated constructs supporting windowing on X11. Start with 'man XtCreateWidget'. If you want a comparison using Xlib and Intrinsics is comparable to using the Win32 API without MFC. |
|||
| Google The UNIX and Linux Forums |