
and remove gimp_button_event_triggers_context_menu() again. Update all callers to use the new function.
115 lines
2.8 KiB
C
115 lines
2.8 KiB
C
/* LIBGIMP - The GIMP Library
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
*
|
|
* gimp3migration.c
|
|
* Copyright (C) 2011 Michael Natterer <mitch@gimp.org>
|
|
*
|
|
* This library is free software: you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "gimpwidgetstypes.h"
|
|
|
|
#include "gimp3migration.h"
|
|
|
|
|
|
GtkWidget *
|
|
gtk_box_new (GtkOrientation orientation,
|
|
gint spacing)
|
|
{
|
|
if (orientation == GTK_ORIENTATION_HORIZONTAL)
|
|
return gtk_hbox_new (FALSE, spacing);
|
|
else
|
|
return gtk_vbox_new (FALSE, spacing);
|
|
}
|
|
|
|
GtkWidget *
|
|
gtk_button_box_new (GtkOrientation orientation)
|
|
{
|
|
if (orientation == GTK_ORIENTATION_HORIZONTAL)
|
|
return gtk_hbutton_box_new ();
|
|
else
|
|
return gtk_vbutton_box_new ();
|
|
}
|
|
|
|
GtkWidget *
|
|
gtk_paned_new (GtkOrientation orientation)
|
|
{
|
|
if (orientation == GTK_ORIENTATION_HORIZONTAL)
|
|
return gtk_hpaned_new ();
|
|
else
|
|
return gtk_vpaned_new ();
|
|
}
|
|
|
|
GtkWidget *
|
|
gtk_scale_new (GtkOrientation orientation,
|
|
GtkAdjustment *adjustment)
|
|
{
|
|
if (orientation == GTK_ORIENTATION_HORIZONTAL)
|
|
return gtk_hscale_new (adjustment);
|
|
else
|
|
return gtk_vscale_new (adjustment);
|
|
}
|
|
|
|
GtkWidget *
|
|
gtk_scrollbar_new (GtkOrientation orientation,
|
|
GtkAdjustment *adjustment)
|
|
{
|
|
if (orientation == GTK_ORIENTATION_HORIZONTAL)
|
|
return gtk_hscrollbar_new (adjustment);
|
|
else
|
|
return gtk_vscrollbar_new (adjustment);
|
|
}
|
|
|
|
GtkWidget *
|
|
gtk_separator_new (GtkOrientation orientation)
|
|
{
|
|
if (orientation == GTK_ORIENTATION_HORIZONTAL)
|
|
return gtk_hseparator_new ();
|
|
else
|
|
return gtk_vseparator_new ();
|
|
}
|
|
|
|
#if ! GTK_CHECK_VERSION (3, 3, 0)
|
|
|
|
gboolean
|
|
gdk_event_triggers_context_menu (const GdkEvent *event)
|
|
{
|
|
g_return_val_if_fail (event != NULL, FALSE);
|
|
|
|
if (event->type == GDK_BUTTON_PRESS)
|
|
{
|
|
GdkEventButton *bevent = (GdkEventButton *) event;
|
|
|
|
if (bevent->button == 3 &&
|
|
! (bevent->state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK)))
|
|
return TRUE;
|
|
|
|
#ifdef GDK_WINDOWING_QUARTZ
|
|
if (bevent->button == 1 &&
|
|
! (bevent->state & (GDK_BUTTON2_MASK | GDK_BUTTON3_MASK)) &&
|
|
(bevent->state & GDK_CONTROL_MASK))
|
|
return TRUE;
|
|
#endif
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
#endif /* GTK+ 3.3 */
|