After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 347173 - wrap Widget::is_composited, Widget::input_shape_combine_mask, etc
wrap Widget::is_composited, Widget::input_shape_combine_mask, etc
Status: RESOLVED FIXED
Product: gtkmm
Classification: Bindings
Component: general
2.9.x
Other Linux
: Normal normal
: ---
Assigned To: gtkmm-forge
gtkmm-forge
Depends on:
Blocks:
 
 
Reported: 2006-07-11 03:02 UTC by Jonathon Jongsma
Modified: 2006-07-18 19:27 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
patch to wrap a couple Widget functions (3.16 KB, patch)
2006-07-11 03:03 UTC, Jonathon Jongsma
none Details | Review

Description Jonathon Jongsma 2006-07-11 03:02:30 UTC
Oddly, I've never actually wrapped any gtkmm functions before, so I thought I'd post the patch here for review before committing it.  I've wrapped the input_shape_mask functions and is_composited / composited_changed signal.  patch attached
Comment 1 Jonathon Jongsma 2006-07-11 03:03:22 UTC
Created attachment 68760 [details] [review]
patch to wrap a couple Widget functions
Comment 2 Murray Cumming 2006-07-12 16:42:50 UTC
Looks good to me. I notice that draw_insertion_cursor() needs fixing too. I hope that is new API we can change:

draw_insertion_cursor(Glib::RefPtr<Gdk::Drawable> drawable
should be
draw_insertion_cursor(const Glib::RefPtr<Gdk::Drawable>& drawable 

In fact, ywe should be able to use _WRAP_METHOD() for that one anyway.
Comment 3 Murray Cumming 2006-07-16 19:40:38 UTC
Applied. Thanks.

draw_insertion_cursor() was added in 2004, so we'll live with it.