vote up 1 vote down star
1

Hi.

I want to use Cairo graphics library whith Qt, but I can't find any documenattion. I just want to make the GUI whith Qt and use Cairo for drawing graphics in a Qt window.

Thanks.

flag

3 Answers

vote up 1 vote down check

Recent version of cairo supports Qt by allowing to draw to a surface created with cairo_qt_surface_create(QPainter *painter): you can inspect the relevant header file here. There's no documentation because this feature is still experimental and disabled by default (you should compile cairo yourself explicitely enabling the Qt support with configure --enable-qt.

link|flag
I will surely try this, I really hope it work's because now I am trying GTK and It's not so good as Qt. – andreeib Oct 30 at 10:07
If you are using C++ I think you'll be more comfortable by using the [C++ bindings](library.gnome.org/devel/gtkmm-tutorial/…), not plain GTK+ itsself. Qt and QPainter, GTK+ and cairo, gtkmm and cairomm and any valid mix... depending on what you want they are all valid options. – ntd Oct 30 at 13:18
vote up 3 vote down

The Qt paint system is a very good drawing library and is vector based. And it's already there. If you pick Qt as your GUI toolkit, it can't get any easier.

link|flag
vote up 1 vote down

Caveat: This is not going to be the answer you are looking for.

Are you sure you want this? To what end? Is this about writing a QPaintDevice based on Cairo? Qt has its own graphics primitives implemented and so does Cairo. The only reason I can see is that you don't want the a heavy layer of Qt interfere with your system (embedded?). It's like you are trying to use the DirectFB backend of Cairo -- but then there's stuff like Qt-on-DirectFB. However, note such an implementation is costly and not free without its own set of quarks such as library-interop issues, printing from this Cairo based context etc. I'd suggest you do a regular search on Google to figure if such efforts are/ever were underway and weigh the pros and cons very heavily before even attempting the same.

link|flag
Thank's for the answer. I just want a simple graphics library and a GUI library that can work togheter very easly, and I don't want to use the GUI library functions for drawing, I like Cairo because it's simple to use and It's vector based. Maybe you can recomend me another GUI library. – andreeib Oct 28 at 21:09
This is the part I don't understand, why don't you want to use Qt? Maybe, we can suggest an alternative then. Qt is more than GUI. Graphics libraries are at a lower level of abstraction than GUI libraries. IMHO, You are taking a step back. GTK+ is another such GUI library (with a Cairo backend). – dirkgently Oct 29 at 3:48
I will try Qt graphic functions. I tried GTK but it's a pain to use in projects. – andreeib Oct 29 at 9:11

Your Answer

Get an OpenID
or

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