summaryrefslogtreecommitdiff
path: root/tools/glade/glade/gnome/gnomedruidpagestandard.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/glade/glade/gnome/gnomedruidpagestandard.c')
-rw-r--r--tools/glade/glade/gnome/gnomedruidpagestandard.c463
1 files changed, 463 insertions, 0 deletions
diff --git a/tools/glade/glade/gnome/gnomedruidpagestandard.c b/tools/glade/glade/gnome/gnomedruidpagestandard.c
new file mode 100644
index 00000000..97ec324d
--- /dev/null
+++ b/tools/glade/glade/gnome/gnomedruidpagestandard.c
@@ -0,0 +1,463 @@
+/* Gtk+ User Interface Builder
+ * Copyright (C) 1999 Damon Chaplin
+ *
+ * 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 <gnome.h>
+#include "../gb.h"
+
+/* Include the 21x21 icon pixmap for this widget, to be used in the palette */
+#include "../graphics/gnome-druid-page-standard.xpm"
+
+/*
+ * This is the GbWidget struct for this widget (see ../gbwidget.h).
+ * It is initialized in the init() function at the end of this file
+ */
+static GbWidget gbwidget;
+
+static gchar *BackgroundColor = "GnomeDruidPageStandard::background";
+static gchar *LogoBackgroundColor = "GnomeDruidPageStandard::logo_background";
+static gchar *ContentsBackgroundColor = "GnomeDruidPageStandard::contents_background";
+static gchar *TitleColor = "GnomeDruidPageStandard::title_foreground";
+static gchar *Title = "GnomeDruidPageStandard::title";
+static gchar *LogoImage = "GnomeDruidPageStandard::logo";
+static gchar *TopWatermark = "GnomeDruidPageStandard::top_watermark";
+
+
+
+/******
+ * NOTE: To use these functions you need to uncomment them AND add a pointer
+ * to the function in the GbWidget struct at the end of this file.
+ ******/
+
+/*
+ * Creates a new GtkWidget of class GnomeDruidPageStandard, performing any specialized
+ * initialization needed for the widget to work correctly in this environment.
+ * If a dialog box is used to initialize the widget, return NULL from this
+ * function, and call data->callback with your new widget when it is done.
+ */
+static GtkWidget*
+gb_gnome_druid_page_standard_new (GbWidgetNewData *data)
+{
+ GtkWidget *new_widget, *placeholder;
+
+ if (data->action == GB_CREATING)
+ {
+ new_widget = gnome_druid_page_standard_new_with_vals ("", NULL, NULL);
+ placeholder = editor_new_placeholder ();
+ gtk_box_pack_start (GTK_BOX (GNOME_DRUID_PAGE_STANDARD (new_widget)->vbox),
+ placeholder, TRUE, TRUE, 0);
+ }
+ else
+ {
+ new_widget = gnome_druid_page_standard_new_with_vals ("", NULL, NULL);
+ }
+ gb_widget_create_from (GNOME_DRUID_PAGE_STANDARD (new_widget)->vbox,
+ "druid-vbox");
+ gb_widget_set_child_name (GNOME_DRUID_PAGE_STANDARD (new_widget)->vbox,
+ GladeChildGnomeDruidVBox);
+ gtk_widget_show_all (new_widget);
+ return new_widget;
+}
+
+/*
+ * Creates the components needed to edit the extra properties of this widget.
+ */
+static void
+gb_gnome_druid_page_standard_create_properties (GtkWidget * widget,
+ GbWidgetCreateArgData * data)
+{
+ property_add_string (Title, _("Title:"),
+ _("The title of the page"));
+ property_add_color (TitleColor, _("Title Color:"),
+ _("The color of the title text"));
+ property_add_color (ContentsBackgroundColor, _("Contents Back. Color:"),
+ _("The background color around the title"));
+ property_add_color (BackgroundColor, _("Back. Color:"),
+ _("The background color of the page"));
+ property_add_color (LogoBackgroundColor, _("Logo Back. Color:"),
+ _("The background color around the logo"));
+ property_add_filename (LogoImage, _("Logo Image:"),
+ _("The logo to display in the top-right of the page"));
+ property_add_filename (TopWatermark, _("Top Watermark:"),
+ _("The image to display along the top of the page"));
+}
+
+
+
+/*
+ * Gets the properties of the widget. This is used for both displaying the
+ * properties in the property editor, and also for saving the properties.
+ */
+static void
+gb_gnome_druid_page_standard_get_properties (GtkWidget *widget,
+ GbWidgetGetArgData * data)
+{
+ GnomeDruidPageStandard *page;
+ GdkColor *title_color, *background_color, *logo_background_color;
+ gboolean title_color_set, background_color_set, logo_background_color_set;
+
+ page = GNOME_DRUID_PAGE_STANDARD (widget);
+
+ /* We do this to make sure the colors are set. */
+ gtk_widget_ensure_style (widget);
+
+ gb_widget_output_translatable_string (data, Title, page->title);
+
+ g_object_get (G_OBJECT (widget),
+ "title-foreground-set", &title_color_set,
+ "title-foreground-gdk", &title_color,
+ "background-set", &background_color_set,
+ "background-gdk", &background_color,
+ "logo-background-set", &logo_background_color_set,
+ "logo-background-gdk", &logo_background_color,
+ NULL);
+
+ if (data->action == GB_SHOWING || title_color_set)
+ gb_widget_output_color (data, TitleColor, title_color);
+
+ if (data->action == GB_SHOWING || background_color_set)
+ gb_widget_output_color (data, BackgroundColor, background_color);
+
+ if (data->action == GB_SHOWING || logo_background_color_set)
+ gb_widget_output_color (data, LogoBackgroundColor, logo_background_color);
+
+ gdk_color_free (title_color);
+ gdk_color_free (background_color);
+ gdk_color_free (logo_background_color);
+
+ /* FIXME: GNOME 2 bug workaround. It doesn't install the properties for
+ these, so we have to do it ourselves. */
+ if (data->action == GB_SHOWING
+ || gtk_object_get_data (GTK_OBJECT (widget), ContentsBackgroundColor))
+ gb_widget_output_color (data, ContentsBackgroundColor,
+ &page->contents_background);
+
+ gb_widget_output_pixmap_filename (data, LogoImage,
+ gtk_object_get_data (GTK_OBJECT (widget),
+ LogoImage));
+
+ gb_widget_output_pixmap_filename (data, TopWatermark,
+ gtk_object_get_data (GTK_OBJECT (widget),
+ TopWatermark));
+}
+
+
+/*
+ * Sets the properties of the widget. This is used for both applying the
+ * properties changed in the property editor, and also for loading.
+ */
+
+static void
+gb_gnome_druid_page_standard_set_properties (GtkWidget * widget,
+ GbWidgetSetArgData * data)
+{
+ GnomeDruidPageStandard *page;
+ gchar *string, *old_filename;
+ GdkColor *color;
+ GdkPixbuf *image;
+
+ page = GNOME_DRUID_PAGE_STANDARD (widget);
+
+ string = gb_widget_input_string (data, Title);
+ if (data->apply)
+ gnome_druid_page_standard_set_title (page, string);
+
+ color = gb_widget_input_color (data, BackgroundColor);
+ if (data->apply)
+ gnome_druid_page_standard_set_bg_color (page, color);
+
+ color = gb_widget_input_color (data, LogoBackgroundColor);
+ if (data->apply)
+ gnome_druid_page_standard_set_logo_bg_color (page, color);
+
+ color = gb_widget_input_color (data, TitleColor);
+ if (data->apply)
+ gnome_druid_page_standard_set_title_color (page, color);
+
+ color = gb_widget_input_color (data, ContentsBackgroundColor);
+ if (data->apply)
+ {
+ gtk_object_set_data (GTK_OBJECT (widget), ContentsBackgroundColor, "Y");
+ gnome_druid_page_standard_set_contents_background (page, color);
+ }
+
+ string = gb_widget_input_pixmap_filename (data, LogoImage);
+ if (data->apply)
+ {
+ if (string && string[0] == '\0')
+ string = NULL;
+ old_filename = gtk_object_get_data (GTK_OBJECT (widget), LogoImage);
+ glade_project_remove_pixmap (data->project, old_filename);
+ gtk_object_set_data_full (GTK_OBJECT (widget), LogoImage,
+ g_strdup (string), string ? g_free : NULL);
+ glade_project_add_pixmap (data->project, string);
+ image = string ? gdk_pixbuf_new_from_file (string, NULL) : NULL;
+ gnome_druid_page_standard_set_logo (page, image);
+ if (image)
+ gdk_pixbuf_unref (image);
+ }
+ if (data->action == GB_LOADING)
+ g_free (string);
+
+ string = gb_widget_input_pixmap_filename (data, TopWatermark);
+ if (data->apply)
+ {
+ if (string && string[0] == '\0')
+ string = NULL;
+ old_filename = gtk_object_get_data (GTK_OBJECT (widget), TopWatermark);
+ glade_project_remove_pixmap (data->project, old_filename);
+ gtk_object_set_data_full (GTK_OBJECT (widget), TopWatermark,
+ g_strdup (string), string ? g_free : NULL);
+ glade_project_add_pixmap (data->project, string);
+ image = string ? gdk_pixbuf_new_from_file (string, NULL) : NULL;
+ gnome_druid_page_standard_set_top_watermark (page, image);
+ if (image)
+ gdk_pixbuf_unref (image);
+ }
+ if (data->action == GB_LOADING)
+ g_free (string);
+}
+
+static GtkWidget *
+gb_gnome_druid_page_standard_get_child (GtkWidget * widget,
+ const gchar * child_name)
+{
+ if (!strcmp (child_name, GladeChildGnomeDruidVBox))
+ return GNOME_DRUID_PAGE_STANDARD (widget)->vbox;
+ else
+ return NULL;
+}
+
+
+/*
+ * Adds menu items to a context menu which is just about to appear!
+ * Add commands to aid in editing a GnomeDruidPageStandard, with signals pointing to
+ * other functions in this file.
+ */
+/*
+static void
+gb_gnome_druid_page_standard_create_popup_menu (GtkWidget * widget, GbWidgetCreateMenuData * data)
+{
+
+}
+*/
+
+
+
+/*
+ * Writes the source code needed to create this widget.
+ * You have to output everything necessary to create the widget here, though
+ * there are some convenience functions to help.
+ */
+static void
+gb_gnome_druid_page_standard_write_source (GtkWidget * widget,
+ GbWidgetWriteSourceData * data)
+{
+ GnomeDruidPageStandard *page;
+ gchar *filename, *title;
+ gchar *wname, *child_name;
+ GdkColor title_color, background_color, logo_background_color;
+ gboolean title_color_set, background_color_set, logo_background_color_set;
+
+ page = GNOME_DRUID_PAGE_STANDARD (widget);
+
+ /* We do this to make sure the colors are set. */
+ gtk_widget_ensure_style (widget);
+
+ if (data->create_widget)
+ {
+ source_add (data,
+ " %s = gnome_druid_page_standard_new ();\n",
+ data->wname);
+ }
+
+ gb_widget_write_standard_source (widget, data);
+
+ g_object_get (G_OBJECT (widget),
+ "title-foreground-set", &title_color_set,
+ "title-foreground-gdk", &title_color,
+ "background-set", &background_color_set,
+ "background-gdk", &background_color,
+ "logo-background-set", &logo_background_color_set,
+ "logo-background-gdk", &logo_background_color,
+ "title", &title,
+ NULL);
+
+ if (background_color_set)
+ {
+ source_add_decl (data,
+ " GdkColor %s_bg_color = { 0, %i, %i, %i };\n",
+ data->real_wname,
+ background_color.red, background_color.green, background_color.blue);
+ source_add (data,
+ " gnome_druid_page_standard_set_background (GNOME_DRUID_PAGE_STANDARD (%s), &%s_bg_color);\n",
+ data->wname, data->real_wname);
+ }
+
+ if (logo_background_color_set)
+ {
+ source_add_decl (data,
+ " GdkColor %s_logo_bg_color = { 0, %i, %i, %i };\n",
+ data->real_wname,
+ logo_background_color.red, logo_background_color.green, logo_background_color.blue);
+ source_add (data,
+ " gnome_druid_page_standard_set_logo_background (GNOME_DRUID_PAGE_STANDARD (%s), &%s_logo_bg_color);\n",
+ data->wname, data->real_wname);
+ }
+
+ if (title_color_set)
+ {
+ source_add_decl (data,
+ " GdkColor %s_title_color = { 0, %i, %i, %i };\n",
+ data->real_wname,
+ title_color.red, title_color.green, title_color.blue);
+ source_add (data,
+ " gnome_druid_page_standard_set_title_foreground (GNOME_DRUID_PAGE_STANDARD (%s), &%s_title_color);\n",
+ data->wname, data->real_wname);
+ }
+
+ if (gtk_object_get_data (GTK_OBJECT (widget), ContentsBackgroundColor))
+ {
+ GdkColor *color = &page->contents_background;
+ source_add_decl (data,
+ " GdkColor %s_contents_bg_color = { 0, %i, %i, %i };\n",
+ data->real_wname,
+ color->red, color->green, color->blue);
+ source_add (data,
+ " gnome_druid_page_standard_set_contents_background (GNOME_DRUID_PAGE_STANDARD (%s), &%s_contents_bg_color);\n",
+ data->wname, data->real_wname);
+ }
+
+ if (title && *title)
+ {
+ gboolean translatable, context;
+ gchar *comments;
+
+ glade_util_get_translation_properties (widget, Title, &translatable,
+ &comments, &context);
+ source_add_translator_comments (data, translatable, comments);
+
+ source_add (data,
+ " gnome_druid_page_standard_set_title (GNOME_DRUID_PAGE_STANDARD (%s), %s);\n",
+ data->wname,
+ source_make_string_full (title, data->use_gettext && translatable, context));
+ }
+ g_free (title);
+
+ filename = gtk_object_get_data (GTK_OBJECT (widget), LogoImage);
+ if (filename && filename[0])
+ {
+ source_ensure_decl (data, " GdkPixbuf *tmp_pixbuf;\n");
+
+ source_add (data,
+ " tmp_pixbuf = create_pixbuf (\"%s/%s\");\n"
+ " if (tmp_pixbuf)\n"
+ " {\n"
+ " gnome_druid_page_standard_set_logo (GNOME_DRUID_PAGE_STANDARD (%s),\n"
+ " tmp_pixbuf);\n"
+ " gdk_pixbuf_unref (tmp_pixbuf);\n"
+ " }\n",
+ data->program_name, g_basename (filename), data->wname);
+ }
+
+ filename = gtk_object_get_data (GTK_OBJECT (widget), TopWatermark);
+ if (filename && filename[0])
+ {
+ source_ensure_decl (data, " GdkPixbuf *tmp_pixbuf;\n");
+
+ source_add (data,
+ " tmp_pixbuf = create_pixbuf (\"%s/%s\");\n"
+ " if (tmp_pixbuf)\n"
+ " {\n"
+ " gnome_druid_page_standard_set_top_watermark (GNOME_DRUID_PAGE_STANDARD (%s),\n"
+ " tmp_pixbuf);\n"
+ " gdk_pixbuf_unref (tmp_pixbuf);\n"
+ " }\n",
+ data->program_name, g_basename (filename), data->wname);
+ }
+
+ /* We output the source code for the children here, since the code should
+ not include calls to create the widgets. We need to specify that the
+ names used are like: "GTK_COMBO (<combo-name>)->entry".
+ We need to remember the dialog's name since data->wname
+ will be overwritten. */
+ wname = g_strdup (data->wname);
+
+ source_add (data, "\n");
+ child_name = (char*) gtk_widget_get_name (GNOME_DRUID_PAGE_STANDARD (widget)->vbox);
+ child_name = source_create_valid_identifier (child_name);
+ source_add (data, " %s = GNOME_DRUID_PAGE_STANDARD (%s)->vbox;\n",
+ child_name, wname);
+ g_free (child_name);
+ data->create_widget = FALSE;
+ gb_widget_write_source (GNOME_DRUID_PAGE_STANDARD (widget)->vbox, data);
+
+ g_free (wname);
+ data->write_children = FALSE;
+}
+
+
+void
+gb_gnome_druid_page_standard_destroy (GtkWidget * widget,
+ GbWidgetDestroyData * data)
+{
+ gchar *filename;
+
+ filename = gtk_object_get_data (GTK_OBJECT (widget), LogoImage);
+ glade_project_remove_pixmap (data->project, filename);
+
+ filename = gtk_object_get_data (GTK_OBJECT (widget), TopWatermark);
+ glade_project_remove_pixmap (data->project, filename);
+}
+
+
+/*
+ * Initializes the GbWidget structure.
+ * I've placed this at the end of the file so we don't have to include
+ * declarations of all the functions.
+ */
+GbWidget*
+gb_gnome_druid_page_standard_init ()
+{
+ /* Initialise the GTK type */
+ volatile GtkType type;
+ type = gnome_druid_page_standard_get_type();
+
+ /* Initialize the GbWidget structure */
+ gb_widget_init_struct(&gbwidget);
+
+ /* Fill in the pixmap struct & tooltip */
+ gbwidget.pixmap_struct = gnome_druid_page_standard_xpm;
+ gbwidget.tooltip = _("Druid Standard Page");
+
+ /* Fill in any functions that this GbWidget has */
+ gbwidget.gb_widget_new = gb_gnome_druid_page_standard_new;
+ gbwidget.gb_widget_create_properties = gb_gnome_druid_page_standard_create_properties;
+ gbwidget.gb_widget_get_properties = gb_gnome_druid_page_standard_get_properties;
+ gbwidget.gb_widget_set_properties = gb_gnome_druid_page_standard_set_properties;
+ gbwidget.gb_widget_get_child = gb_gnome_druid_page_standard_get_child;
+ gbwidget.gb_widget_write_source = gb_gnome_druid_page_standard_write_source;
+ gbwidget.gb_widget_destroy = gb_gnome_druid_page_standard_destroy;
+/*
+ gbwidget.gb_widget_create_popup_menu = gb_gnome_druid_page_standard_create_popup_menu;
+*/
+
+ return &gbwidget;
+}
+