mirror of https://github.com/GNOME/gimp.git
106 lines
2.9 KiB
C
106 lines
2.9 KiB
C
/* GIMP - The GNU Image Manipulation Program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* gimpmenudock.c
|
|
* Copyright (C) 2001-2004 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include <gegl.h>
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "libgimpbase/gimpbase.h"
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
#include "widgets-types.h"
|
|
|
|
#include "core/gimp.h"
|
|
#include "core/gimpcontext.h"
|
|
#include "core/gimpimage.h"
|
|
#include "core/gimplist.h"
|
|
|
|
#include "gimpdialogfactory.h"
|
|
#include "gimpdockable.h"
|
|
#include "gimpdockbook.h"
|
|
#include "gimpmenudock.h"
|
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
#define DEFAULT_MINIMAL_WIDTH 200
|
|
|
|
struct _GimpMenuDockPrivate
|
|
{
|
|
gint make_sizeof_greater_than_zero;
|
|
};
|
|
|
|
|
|
static void gimp_menu_dock_style_set (GtkWidget *widget,
|
|
GtkStyle *prev_style);
|
|
|
|
|
|
G_DEFINE_TYPE (GimpMenuDock, gimp_menu_dock, GIMP_TYPE_DOCK)
|
|
|
|
#define parent_class gimp_menu_dock_parent_class
|
|
|
|
|
|
static void
|
|
gimp_menu_dock_class_init (GimpMenuDockClass *klass)
|
|
{
|
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
|
|
|
|
widget_class->style_set = gimp_menu_dock_style_set;
|
|
|
|
gtk_widget_class_install_style_property (widget_class,
|
|
g_param_spec_int ("minimal-width",
|
|
NULL, NULL,
|
|
0,
|
|
G_MAXINT,
|
|
DEFAULT_MINIMAL_WIDTH,
|
|
GIMP_PARAM_READABLE));
|
|
|
|
g_type_class_add_private (klass, sizeof (GimpMenuDockPrivate));
|
|
}
|
|
|
|
static void
|
|
gimp_menu_dock_init (GimpMenuDock *dock)
|
|
{
|
|
}
|
|
|
|
static void
|
|
gimp_menu_dock_style_set (GtkWidget *widget,
|
|
GtkStyle *prev_style)
|
|
{
|
|
gint minimal_width = -1;
|
|
|
|
GTK_WIDGET_CLASS (parent_class)->style_set (widget, prev_style);
|
|
|
|
gtk_widget_style_get (widget,
|
|
"minimal-width", &minimal_width,
|
|
NULL);
|
|
|
|
gtk_widget_set_size_request (widget, minimal_width, -1);
|
|
}
|
|
|
|
GtkWidget *
|
|
gimp_menu_dock_new (void)
|
|
{
|
|
return g_object_new (GIMP_TYPE_MENU_DOCK, NULL);
|
|
}
|