1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
/* LIBGIMP - The GIMP Library
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
*
* gimpselectbutton.c
* Copyright (C) 2003 Sven Neumann <sven@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
* Library 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
* <https://www.gnu.org/licenses/>.
*/
#include "config.h"
#include <gtk/gtk.h>
#include "gimp.h"
#include "gimpuitypes.h"
#include "gimpselectbutton.h"
/**
* SECTION: gimpselectbutton
* @title: GimpSelectButton
* @short_description: The base class of the data select buttons.
*
* The base class of the brush, pattern, gradient, palette and font
* select buttons.
**/
/* local function prototypes */
static void gimp_select_button_dispose (GObject *object);
G_DEFINE_TYPE (GimpSelectButton, gimp_select_button, GTK_TYPE_BOX)
static void
gimp_select_button_class_init (GimpSelectButtonClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->dispose = gimp_select_button_dispose;
}
static void
gimp_select_button_init (GimpSelectButton *select_button)
{
gtk_orientable_set_orientation (GTK_ORIENTABLE (select_button),
GTK_ORIENTATION_HORIZONTAL);
select_button->temp_callback = NULL;
}
static void
gimp_select_button_dispose (GObject *object)
{
gimp_select_button_close_popup (GIMP_SELECT_BUTTON (object));
G_OBJECT_CLASS (gimp_select_button_parent_class)->dispose (object);
}
/**
* gimp_select_button_close_popup:
* @button: A #GimpSelectButton
*
* Closes the popup window associated with @button.
*
* Since: 2.4
*/
void
gimp_select_button_close_popup (GimpSelectButton *button)
{
g_return_if_fail (GIMP_IS_SELECT_BUTTON (button));
if (button->temp_callback)
{
GimpSelectButtonClass *klass = GIMP_SELECT_BUTTON_GET_CLASS (button);
klass->select_destroy (button->temp_callback);
button->temp_callback = NULL;
}
}
|