Tagged Questions
1
vote
1answer
34 views
Drawing Oval with Gdk Cairo Context
I want to draw only the circumference of an oval. I use this:
gc->save();
gc->translate( xc, yc );
gc->arc( 0.0, 0.0, 1.0, 0.0, 2.0*M_PI );
gc->scale( width*0.5, height*0.5 );
...
1
vote
2answers
202 views
How to copy Gdk.image?
Is it possible to make a copy of Gdk.image object using lablgtk2 for Ocaml?
I tried to find 'copy' or 'clone' methods but failed.
0
votes
1answer
20 views
Does GdkRectangle have an activate event?
I want to make a GdkRectangle clickable so that I can select it and get a dot in every corner of the rectangle, implying that the user can move or resize the rectangle.
Is there an event that ...