summaryrefslogtreecommitdiffstats
path: root/app/widgets/gimpmenudock.c
diff options
context:
space:
mode:
Diffstat (limited to 'app/widgets/gimpmenudock.c')
-rw-r--r--app/widgets/gimpmenudock.c103
1 files changed, 103 insertions, 0 deletions
diff --git a/app/widgets/gimpmenudock.c b/app/widgets/gimpmenudock.c
new file mode 100644
index 0000000..fac3994
--- /dev/null
+++ b/app/widgets/gimpmenudock.c
@@ -0,0 +1,103 @@
+/* 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 <https://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_WITH_PRIVATE (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));
+}
+
+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);
+}