2003-02-27 21:59:41 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2004-08-26 06:31:44 +08:00
|
|
|
* gimpview-popup.c
|
2003-02-27 21:59:41 +08:00
|
|
|
* Copyright (C) 2001 Michael Natterer <mitch@gimp.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
|
|
|
#include "widgets-types.h"
|
|
|
|
|
|
|
|
#include "core/gimpviewable.h"
|
|
|
|
|
2004-08-25 01:16:46 +08:00
|
|
|
#include "gimpview.h"
|
2004-08-26 06:31:44 +08:00
|
|
|
#include "gimpviewrenderer.h"
|
|
|
|
#include "gimpview-popup.h"
|
2003-02-27 21:59:41 +08:00
|
|
|
|
|
|
|
|
2004-08-26 06:31:44 +08:00
|
|
|
#define VIEW_POPUP_DELAY 150
|
2003-02-27 21:59:41 +08:00
|
|
|
|
|
|
|
|
2004-08-26 06:31:44 +08:00
|
|
|
typedef struct _GimpViewPopup GimpViewPopup;
|
2003-02-27 21:59:41 +08:00
|
|
|
|
2004-08-26 06:31:44 +08:00
|
|
|
struct _GimpViewPopup
|
2003-02-27 21:59:41 +08:00
|
|
|
{
|
|
|
|
GtkWidget *widget;
|
|
|
|
GimpViewable *viewable;
|
|
|
|
|
|
|
|
gint popup_width;
|
|
|
|
gint popup_height;
|
|
|
|
gboolean dot_for_dot;
|
|
|
|
gint button;
|
|
|
|
gint button_x;
|
|
|
|
gint button_y;
|
|
|
|
|
|
|
|
guint timeout_id;
|
|
|
|
GtkWidget *popup;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* local function prototypes */
|
|
|
|
|
2004-08-26 06:31:44 +08:00
|
|
|
static void gimp_view_popup_hide (GimpViewPopup *popup);
|
|
|
|
static gboolean gimp_view_popup_button_release (GtkWidget *widget,
|
|
|
|
GdkEventButton *bevent,
|
|
|
|
GimpViewPopup *popup);
|
|
|
|
static void gimp_view_popup_unmap (GtkWidget *widget,
|
|
|
|
GimpViewPopup *popup);
|
|
|
|
static gboolean gimp_view_popup_timeout (GimpViewPopup *popup);
|
2003-02-27 21:59:41 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* public functions */
|
|
|
|
|
|
|
|
gboolean
|
2004-08-26 06:31:44 +08:00
|
|
|
gimp_view_popup_show (GtkWidget *widget,
|
|
|
|
GdkEventButton *bevent,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gint view_width,
|
|
|
|
gint view_height,
|
|
|
|
gboolean dot_for_dot)
|
2003-02-27 21:59:41 +08:00
|
|
|
{
|
2004-08-26 06:31:44 +08:00
|
|
|
GimpViewPopup *popup;
|
|
|
|
gint popup_width;
|
|
|
|
gint popup_height;
|
2003-02-27 21:59:41 +08:00
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
|
|
|
|
g_return_val_if_fail (bevent != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GIMP_IS_VIEWABLE (viewable), FALSE);
|
|
|
|
|
|
|
|
if (! gimp_viewable_get_popup_size (viewable,
|
2004-08-26 06:31:44 +08:00
|
|
|
view_width,
|
|
|
|
view_height,
|
2003-02-27 21:59:41 +08:00
|
|
|
dot_for_dot,
|
|
|
|
&popup_width,
|
|
|
|
&popup_height))
|
|
|
|
return FALSE;
|
|
|
|
|
2004-08-26 06:31:44 +08:00
|
|
|
popup = g_new0 (GimpViewPopup, 1);
|
2003-02-27 21:59:41 +08:00
|
|
|
|
|
|
|
popup->widget = widget;
|
|
|
|
popup->viewable = viewable;
|
|
|
|
popup->popup_width = popup_width;
|
|
|
|
popup->popup_height = popup_height;
|
|
|
|
popup->dot_for_dot = dot_for_dot;
|
|
|
|
popup->button = bevent->button;
|
|
|
|
popup->button_x = bevent->x;
|
|
|
|
popup->button_y = bevent->y;
|
|
|
|
|
2004-08-05 21:43:38 +08:00
|
|
|
if (GTK_WIDGET_NO_WINDOW (widget))
|
|
|
|
{
|
|
|
|
popup->button_x += widget->allocation.x;
|
|
|
|
popup->button_y += widget->allocation.y;
|
|
|
|
}
|
|
|
|
|
2005-05-28 00:51:39 +08:00
|
|
|
g_signal_connect (widget, "button-release-event",
|
2004-08-26 06:31:44 +08:00
|
|
|
G_CALLBACK (gimp_view_popup_button_release),
|
2003-02-27 21:59:41 +08:00
|
|
|
popup);
|
2003-08-14 07:28:26 +08:00
|
|
|
g_signal_connect (widget, "unmap",
|
2004-08-26 06:31:44 +08:00
|
|
|
G_CALLBACK (gimp_view_popup_unmap),
|
2003-08-14 07:28:26 +08:00
|
|
|
popup);
|
2003-02-27 21:59:41 +08:00
|
|
|
|
2004-08-26 06:31:44 +08:00
|
|
|
popup->timeout_id = g_timeout_add (VIEW_POPUP_DELAY,
|
|
|
|
(GSourceFunc) gimp_view_popup_timeout,
|
2004-08-25 01:16:46 +08:00
|
|
|
popup);
|
2003-02-27 21:59:41 +08:00
|
|
|
|
2004-08-26 06:31:44 +08:00
|
|
|
g_object_set_data_full (G_OBJECT (widget), "gimp-view-popup", popup,
|
|
|
|
(GDestroyNotify) gimp_view_popup_hide);
|
2003-02-27 21:59:41 +08:00
|
|
|
|
|
|
|
gtk_grab_add (widget);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* private functions */
|
|
|
|
|
|
|
|
static void
|
2004-08-26 06:31:44 +08:00
|
|
|
gimp_view_popup_hide (GimpViewPopup *popup)
|
2003-02-27 21:59:41 +08:00
|
|
|
{
|
|
|
|
if (popup->timeout_id)
|
|
|
|
g_source_remove (popup->timeout_id);
|
|
|
|
|
|
|
|
if (popup->popup)
|
|
|
|
gtk_widget_destroy (popup->popup);
|
|
|
|
|
|
|
|
g_signal_handlers_disconnect_by_func (popup->widget,
|
2004-08-26 06:31:44 +08:00
|
|
|
gimp_view_popup_button_release,
|
2003-02-27 21:59:41 +08:00
|
|
|
popup);
|
2003-08-14 07:28:26 +08:00
|
|
|
g_signal_handlers_disconnect_by_func (popup->widget,
|
2004-08-26 06:31:44 +08:00
|
|
|
gimp_view_popup_unmap,
|
2003-08-14 07:28:26 +08:00
|
|
|
popup);
|
2003-02-27 21:59:41 +08:00
|
|
|
|
|
|
|
gtk_grab_remove (popup->widget);
|
|
|
|
|
|
|
|
g_free (popup);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2004-08-26 06:31:44 +08:00
|
|
|
gimp_view_popup_button_release (GtkWidget *widget,
|
|
|
|
GdkEventButton *bevent,
|
|
|
|
GimpViewPopup *popup)
|
2003-02-27 21:59:41 +08:00
|
|
|
{
|
|
|
|
if (bevent->button == popup->button)
|
2004-08-26 06:31:44 +08:00
|
|
|
g_object_set_data (G_OBJECT (popup->widget), "gimp-view-popup", NULL);
|
2003-02-27 21:59:41 +08:00
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2003-08-14 07:28:26 +08:00
|
|
|
static void
|
2004-08-26 06:31:44 +08:00
|
|
|
gimp_view_popup_unmap (GtkWidget *widget,
|
|
|
|
GimpViewPopup *popup)
|
2003-08-14 07:28:26 +08:00
|
|
|
{
|
2004-08-26 06:31:44 +08:00
|
|
|
g_object_set_data (G_OBJECT (popup->widget), "gimp-view-popup", NULL);
|
2003-08-14 07:28:26 +08:00
|
|
|
}
|
|
|
|
|
2003-02-27 21:59:41 +08:00
|
|
|
static gboolean
|
2004-08-26 06:31:44 +08:00
|
|
|
gimp_view_popup_timeout (GimpViewPopup *popup)
|
2003-02-27 21:59:41 +08:00
|
|
|
{
|
2003-11-20 02:08:15 +08:00
|
|
|
GtkWidget *window;
|
|
|
|
GtkWidget *frame;
|
2004-08-25 01:16:46 +08:00
|
|
|
GtkWidget *view;
|
2003-11-20 02:08:15 +08:00
|
|
|
GdkScreen *screen;
|
|
|
|
GdkRectangle rect;
|
|
|
|
gint monitor;
|
|
|
|
gint x;
|
|
|
|
gint y;
|
2003-02-27 21:59:41 +08:00
|
|
|
|
|
|
|
popup->timeout_id = 0;
|
|
|
|
|
2003-11-08 23:32:38 +08:00
|
|
|
screen = gtk_widget_get_screen (popup->widget);
|
|
|
|
|
2003-02-27 21:59:41 +08:00
|
|
|
window = gtk_window_new (GTK_WINDOW_POPUP);
|
|
|
|
gtk_window_set_resizable (GTK_WINDOW (window), FALSE);
|
|
|
|
|
2003-11-08 23:32:38 +08:00
|
|
|
gtk_window_set_screen (GTK_WINDOW (window), screen);
|
|
|
|
|
2003-02-27 21:59:41 +08:00
|
|
|
frame = gtk_frame_new (NULL);
|
|
|
|
gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_OUT);
|
|
|
|
gtk_container_add (GTK_CONTAINER (window), frame);
|
|
|
|
gtk_widget_show (frame);
|
|
|
|
|
2004-08-25 01:16:46 +08:00
|
|
|
view = gimp_view_new_full (popup->viewable,
|
|
|
|
popup->popup_width,
|
|
|
|
popup->popup_height,
|
|
|
|
0, TRUE, FALSE, FALSE);
|
2004-08-26 06:31:44 +08:00
|
|
|
gimp_view_renderer_set_dot_for_dot (GIMP_VIEW (view)->renderer,
|
|
|
|
popup->dot_for_dot);
|
2004-08-25 01:16:46 +08:00
|
|
|
gtk_container_add (GTK_CONTAINER (frame), view);
|
|
|
|
gtk_widget_show (view);
|
2003-02-27 21:59:41 +08:00
|
|
|
|
2003-11-20 02:08:15 +08:00
|
|
|
gdk_window_get_origin (popup->widget->window, &x, &y);
|
2003-09-09 19:35:27 +08:00
|
|
|
|
2003-11-20 02:08:15 +08:00
|
|
|
x += popup->button_x - (popup->popup_width >> 1);
|
|
|
|
y += popup->button_y - (popup->popup_height >> 1);
|
2003-02-27 21:59:41 +08:00
|
|
|
|
2003-11-20 02:08:15 +08:00
|
|
|
monitor = gdk_screen_get_monitor_at_point (screen, x, y);
|
|
|
|
gdk_screen_get_monitor_geometry (screen, monitor, &rect);
|
2003-02-27 21:59:41 +08:00
|
|
|
|
2003-11-20 02:08:15 +08:00
|
|
|
x = CLAMP (x, rect.x, rect.x + rect.width - popup->popup_width);
|
|
|
|
y = CLAMP (y, rect.y, rect.y + rect.height - popup->popup_height);
|
2003-02-27 21:59:41 +08:00
|
|
|
|
|
|
|
gtk_window_move (GTK_WINDOW (window), x, y);
|
|
|
|
gtk_widget_show (window);
|
|
|
|
|
|
|
|
popup->popup = window;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|