summaryrefslogtreecommitdiff
path: root/gtk/gtkfilechooserdialog.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@src.gnome.org>2003-03-21 20:34:02 +0000
committerOwen Taylor <otaylor@src.gnome.org>2003-03-21 20:34:02 +0000
commite3849905a9f6945ab664a026a2af78958d02641f (patch)
tree3c4d7df4785e8f01118f0bb4aad5cfa54431ba77 /gtk/gtkfilechooserdialog.c
parent250fd7cc43af62578cbcd58a90e1fe0fb706eed1 (diff)
downloadgtk+-e3849905a9f6945ab664a026a2af78958d02641f.tar.gz
Initial revision
Diffstat (limited to 'gtk/gtkfilechooserdialog.c')
-rw-r--r--gtk/gtkfilechooserdialog.c172
1 files changed, 172 insertions, 0 deletions
diff --git a/gtk/gtkfilechooserdialog.c b/gtk/gtkfilechooserdialog.c
new file mode 100644
index 0000000000..c540bb6d0f
--- /dev/null
+++ b/gtk/gtkfilechooserdialog.c
@@ -0,0 +1,172 @@
+/* GTK - The GIMP Toolkit
+ * gtkfilechooserdialog.c: File selector dialog
+ * Copyright (C) 2003, Red Hat, Inc.
+ *
+ * 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 2 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, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#include "gtkfilechooserdialog.h"
+#include "gtkfilechooserwidget.h"
+#include "gtkfilechooserenums.h"
+#include "gtkfilechooserutils.h"
+
+#include <stdarg.h>
+
+struct _GtkFileChooserDialogPrivate
+{
+ GtkWidget *widget;
+};
+
+#define GTK_FILE_CHOOSER_DIALOG_GET_PRIVATE(o) (GTK_FILE_CHOOSER_DIALOG (o)->priv)
+
+static void gtk_file_chooser_dialog_class_init (GtkFileChooserDialogClass *class);
+static void gtk_file_chooser_dialog_init (GtkFileChooserDialog *dialog);
+
+static void gtk_file_chooser_dialog_set_property (GObject *object,
+ guint prop_id,
+ const GValue *value,
+ GParamSpec *pspec);
+static void gtk_file_chooser_dialog_get_property (GObject *object,
+ guint prop_id,
+ GValue *value,
+ GParamSpec *pspec);
+
+GType
+gtk_file_chooser_dialog_get_type (void)
+{
+ static GType file_chooser_dialog_type = 0;
+
+ if (!file_chooser_dialog_type)
+ {
+ static const GTypeInfo file_chooser_dialog_info =
+ {
+ sizeof (GtkFileChooserDialogClass),
+ NULL, /* base_init */
+ NULL, /* base_finalize */
+ (GClassInitFunc) gtk_file_chooser_dialog_class_init,
+ NULL, /* class_finalize */
+ NULL, /* class_data */
+ sizeof (GtkFileChooserDialog),
+ 0, /* n_preallocs */
+ (GInstanceInitFunc) gtk_file_chooser_dialog_init,
+ };
+
+ static const GInterfaceInfo file_chooser_info =
+ {
+ (GInterfaceInitFunc) _gtk_file_chooser_delegate_iface_init, /* interface_init */
+ NULL, /* interface_finalize */
+ NULL /* interface_data */
+ };
+
+ file_chooser_dialog_type = g_type_register_static (GTK_TYPE_DIALOG, "GtkFileChooserDialog",
+ &file_chooser_dialog_info, 0);
+ g_type_add_interface_static (file_chooser_dialog_type,
+ GTK_TYPE_FILE_CHOOSER,
+ &file_chooser_info);
+ }
+
+ return file_chooser_dialog_type;
+}
+
+static void
+gtk_file_chooser_dialog_class_init (GtkFileChooserDialogClass *class)
+{
+ GObjectClass *gobject_class = G_OBJECT_CLASS (class);
+
+ gobject_class->set_property = gtk_file_chooser_dialog_set_property;
+ gobject_class->get_property = gtk_file_chooser_dialog_get_property;
+
+ _gtk_file_chooser_install_properties (gobject_class);
+
+ g_type_class_add_private (class, sizeof (GtkFileChooserDialogPrivate));
+}
+
+static void
+gtk_file_chooser_dialog_init (GtkFileChooserDialog *dialog)
+{
+ GtkFileChooserDialogPrivate *priv = G_TYPE_INSTANCE_GET_PRIVATE (dialog,
+ GTK_TYPE_FILE_CHOOSER_DIALOG,
+ GtkFileChooserDialogPrivate);
+ dialog->priv = priv;
+
+ gtk_widget_push_composite_child ();
+
+ priv->widget = g_object_new (GTK_TYPE_FILE_CHOOSER_WIDGET, NULL);
+ gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), priv->widget, TRUE, TRUE, 0);
+ gtk_widget_show (priv->widget);
+
+ _gtk_file_chooser_set_delegate (GTK_FILE_CHOOSER (dialog),
+ GTK_FILE_CHOOSER (priv->widget));
+
+ gtk_widget_pop_composite_child ();
+}
+
+static void
+gtk_file_chooser_dialog_set_property (GObject *object,
+ guint prop_id,
+ const GValue *value,
+ GParamSpec *pspec)
+
+{
+ GtkFileChooserDialogPrivate *priv = GTK_FILE_CHOOSER_DIALOG_GET_PRIVATE (object);
+
+ g_object_set_property (G_OBJECT (priv->widget), pspec->name, value);
+}
+
+static void
+gtk_file_chooser_dialog_get_property (GObject *object,
+ guint prop_id,
+ GValue *value,
+ GParamSpec *pspec)
+{
+ GtkFileChooserDialogPrivate *priv = GTK_FILE_CHOOSER_DIALOG_GET_PRIVATE (object);
+
+ g_object_get_property (G_OBJECT (priv->widget), pspec->name, value);
+}
+
+GtkWidget *
+gtk_file_chooser_dialog_new (const gchar *title,
+ GtkWindow *parent,
+ GtkFileChooserAction action,
+ const gchar *first_button_text,
+ ...)
+{
+ GtkWidget *result;
+ va_list varargs;
+ const char *button_text = first_button_text;
+ gint response_id;
+
+ result = g_object_new (GTK_TYPE_FILE_CHOOSER_DIALOG,
+ "title", title,
+ "action", action,
+ NULL);
+
+ if (parent)
+ gtk_window_set_transient_for (GTK_WINDOW (result), parent);
+
+ va_start (varargs, first_button_text);
+
+ while (button_text)
+ {
+ response_id = va_arg (varargs, gint);
+ gtk_dialog_add_button (GTK_DIALOG (result), button_text, response_id);
+ button_text = va_arg (varargs, const gchar *);
+ }
+
+ va_end (varargs);
+
+ return result;
+}