diff options
author | Jasmine Hassan <[email protected]> | 2012-11-14 07:30:55 +0200 |
---|---|---|
committer | Jasmine Hassan <[email protected]> | 2012-11-14 09:42:33 +0200 |
commit | f9c3a1bd9499c47db2b32a0487ad3c91dbafeea9 (patch) | |
tree | bd6143e773b3c56339c0ef0ca9074dc3fb66c1fe /src/caja-sidebar-title.c | |
parent | e96bb83cdc1ed0753d2547463a4e6ec61f41de12 (diff) | |
download | caja-f9c3a1bd9499c47db2b32a0487ad3c91dbafeea9.tar.bz2 caja-f9c3a1bd9499c47db2b32a0487ad3c91dbafeea9.tar.xz |
[information-panel] don't use eel_point_in_widget()
nor in sidebar-title. the eel function is deprecated.
Diffstat (limited to 'src/caja-sidebar-title.c')
-rw-r--r-- | src/caja-sidebar-title.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/caja-sidebar-title.c b/src/caja-sidebar-title.c index beb30359..e02eaa9d 100644 --- a/src/caja-sidebar-title.c +++ b/src/caja-sidebar-title.c @@ -738,9 +738,21 @@ caja_sidebar_title_size_allocate (GtkWidget *widget, gboolean caja_sidebar_title_hit_test_icon (CajaSidebarTitle *sidebar_title, int x, int y) { + GtkAllocation *allocation; + gboolean icon_hit; + g_return_val_if_fail (CAJA_IS_SIDEBAR_TITLE (sidebar_title), FALSE); - return eel_point_in_widget (sidebar_title->details->icon, x, y); + allocation = g_new0 (GtkAllocation, 1); + gtk_widget_get_allocation (GTK_WIDGET (sidebar_title->details->icon), allocation); + g_return_val_if_fail (allocation != NULL, FALSE); + + icon_hit = x >= allocation->x && y >= allocation->y + && x < allocation->x + allocation->width + && y < allocation->y + allocation->height; + g_free (allocation); + + return icon_hit; } static GtkWidget * |