I have stubbornly decided to learn Xlib programming for Linux GUIs, just for fun & the gained experience. I'm young and have lots of time to read useless stuff. Nobody seems to want people to learn this, though, as everywhere I look, askers are being bombarded with suggestions of using a toolset instead - usually Qt or wxWidgets. This is kind of sad, if nobody learns Xlib, who will continue development of e.g. wxWidgets? I will learn wxWidgets too, though, when I feel comfortable with Xlib.

So - with that out of the way - my question is: Is there a recommended book (or other resources) for learning Xlib programming, preferably with C++, but C is OK too. Windows programming has its Petzold, I was wondering if Xlib had some sort of equivalent.

link|improve this question

Learning Xlib would be interesting, but XCB is more modern and better all around. – Zan Lynx Nov 1 '10 at 22:56
I'll take 'em both, thank you very much :) Hereby added to my list of things to learn. I'll start a new question on it - if needed - when I get that far. – Øystein Nov 1 '10 at 23:02
feedback

closed as not constructive by Bill the Lizard Sep 30 '11 at 12:17

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

4 Answers

up vote 5 down vote accepted

There used to be a whole series of books on X programming (they actually worked their way up to Xlib!) but the one you probably want is Xlib Programming Manual

link|improve this answer
Wow that series! Used be on every UNIX guy I worked with's desk in the 90s – Preet Sangha Nov 1 '10 at 20:32
Ah nice one, you got anything more on those series? Might be interesting! – Øystein Nov 1 '10 at 20:54
+1, That is the one that I used as well. The best I could find on he net – BЈовић Nov 1 '10 at 21:14
@oystein - I only now realized they were all published by O'Reilly, but they are long out of print. Last time I saw them all together was in a used bookstore 15 years ago. Unfortunately while there is a unifying X Window theme, with a common cover style and volumes numbered from low level topics to high level topics (I think 8 was Motif), I can't find a name for the whole series. I think they were all marked "The Definitive Guide to the X Window System" – Ben Jackson Nov 1 '10 at 21:34
1  
@Preet - I was one of those guys... a long time ago (yes, mid-90s). I've since lost the box of books, and they're probably out of date by now anyway. I totally respect oystein's fervor & desire to learn, but me personally, I appreciate the abstraction & cross-platform benefits of something like Qt nowadays. – Dan Nov 3 '10 at 15:30
show 3 more comments
feedback

I liked one by Levi Reiss and Joseph Radin, I think it was "X Window inside and out" (I read a translated version). Of course, it's really outdated, and predates Xutf8* functions, XRender, XFt and client side fonts, XCB, XRandr, Composite, etc...

link|improve this answer
Hah a cheapo! amazon.com/exec/obidos/ASIN/007881796X/acmorg-20 I might get this one – Øystein Nov 1 '10 at 22:45
feedback

I found this on amazon: Fundamentals of X Programming

link|improve this answer
Thanks! Looks good, but a little expensive, I'll keep it in mind – Øystein Nov 1 '10 at 20:56
You're right - it is - I didn't notice it. – Preet Sangha Nov 1 '10 at 20:58
feedback

Also found these books myself:

http://www.amazon.com/Introduction-Window-System-Oliver-Jones/dp/0134999975/ref=sr_1_4?s=books&ie=UTF8&qid=1288651669&sr=1-4 (old and expensive, but it's something)

http://www.amazon.com/Window-Programming-Scratch-Jesse-Libertys/dp/0789723727/ref=sr_1_25?s=books&ie=UTF8&qid=1288651711&sr=1-25 (this one is quite recent, compared to most other resources I could find, but it's got some bad reviews. Maybe worth the read)

http://www.amazon.com/Window-Toolkit-Complete-Programmers-Specification/dp/1555581781/ref=sr_1_44?s=books&ie=UTF8&qid=1288651754&sr=1-44 (supposedly good, actually on Xt, but I guess it might be worth the read)

And this website which seems to at least contain something usable: http://manuals.itc.virginia.edu/unixdocs/u014.xwindows.html

If anyone has read any of these, please leave a comment.

link|improve this answer
feedback

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