I have been using C a lot lately, and want to explore programming more than just console applications. However, most GUI libraries are object-oriented, and it is very difficult to program with them in programming languages which are not object-oriented such as C. Even object-oriented GUI libraries such as GTK+ that are designed for C require a lot of boilerplate. Because I am having difficulty with these object-oriented libraries I am wondering what GUI libraries are not object-oriented?
相关问题
- JFX scale image up and down to parent
- Relation between Function1 and Reader Monad
- scala passing function with underscore produces a
- Swing Font Rendering
- Combining n vectors into one vector of n-tuples
相关文章
- Is there something like the threading macro from C
- Algorithm for maximizing coverage of rectangular a
- Learning F#: What books using other programming la
- Creating a list of functions using a loop in R
- Is there a way to hide the new HTML5 spinbox contr
- Can keyboard of type UIKeyboardTypeNamePhonePad be
- PropertyGrid - Possible to have a file/directory s
- Programming a touch screen application with SWING
I don't know of any modern GUI toolkit that isn't object oriented. OO is simply a very useful programming technique, even in C.
The only toolkit I can mention that I think is not OO is Athena. I haven't really used it, but did have one short CS lab assignment a long time ago that used Athena.
I suppose you could use xlib directly, if you really want to avoid OO.