| 710 } |
710 } |
| 711 |
711 |
| 712 gboolean |
712 gboolean |
| 713 pidgin_docklet_get_geometry(gint *x, gint *y, gint *w, gint *h) |
713 pidgin_docklet_get_geometry(gint *x, gint *y, gint *w, gint *h) |
| 714 { |
714 { |
| 715 if(visible && ui_ops && ui_ops->get_geometry) return ui_ops->get_geometry(x, y, w, h); |
715 if(visible && ui_ops && ui_ops->get_geometry) |
| |
716 return ui_ops->get_geometry(x, y, w, h); |
| 716 return FALSE; |
717 return FALSE; |
| 717 } |
718 } |
| 718 |
719 |
| 719 GObject * |
720 GObject * |
| 720 pidgin_docklet_get_gdk_screen() |
721 pidgin_docklet_get_gdk_screen() |
| 721 { |
722 { |
| 722 if(visible && ui_ops && ui_ops->get_gdk_screen) return ui_ops->get_gdk_screen(); |
723 if(visible && ui_ops && ui_ops->get_gdk_screen) |
| |
724 return ui_ops->get_gdk_screen(); |
| 723 return NULL; |
725 return NULL; |
| 724 } |
726 } |
| 725 |
727 |
| 726 void |
728 void |
| 727 pidgin_docklet_init() |
729 pidgin_docklet_init() |