2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
2003-03-21 20:34:02 +00:00
|
|
|
* gtkfilechooserwidget.c: Embeddable file selector widget
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
2005-09-15 21:51:31 +00:00
|
|
|
#include "gtkfilechooserprivate.h"
|
2006-05-02 23:56:43 +00:00
|
|
|
|
2003-03-21 20:34:02 +00:00
|
|
|
#include "gtkfilechooserwidget.h"
|
2003-10-23 04:22:32 +00:00
|
|
|
#include "gtkfilechooserdefault.h"
|
2003-03-21 20:34:02 +00:00
|
|
|
#include "gtkfilechooserutils.h"
|
2003-12-16 22:58:58 +00:00
|
|
|
#include "gtktypebuiltins.h"
|
2004-02-27 23:51:16 +00:00
|
|
|
#include "gtkfilechooserembed.h"
|
2005-09-01 05:11:46 +00:00
|
|
|
#include "gtkintl.h"
|
2003-12-16 22:58:58 +00:00
|
|
|
|
2011-04-11 02:09:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:gtkfilechooserwidget
|
|
|
|
* @Short_description: File chooser widget that can be embedded in other widgets
|
|
|
|
* @Title: GtkFileChooserWidget
|
|
|
|
* @See_also: #GtkFileChooser, #GtkFileChooserDialog
|
|
|
|
*
|
|
|
|
* #GtkFileChooserWidget is a widget suitable for selecting files.
|
|
|
|
* It is the main building block of a #GtkFileChooserDialog. Most
|
|
|
|
* applications will only need to use the latter; you can use
|
|
|
|
* #GtkFileChooserWidget as part of a larger window if you have
|
|
|
|
* special needs.
|
|
|
|
*
|
|
|
|
* Note that #GtkFileChooserWidget does not have any methods of its
|
|
|
|
* own. Instead, you should use the functions that work on a
|
|
|
|
* #GtkFileChooser.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2003-03-21 20:34:02 +00:00
|
|
|
#define GTK_FILE_CHOOSER_WIDGET_GET_PRIVATE(o) (GTK_FILE_CHOOSER_WIDGET (o)->priv)
|
|
|
|
|
2004-02-19 07:43:39 +00:00
|
|
|
static void gtk_file_chooser_widget_finalize (GObject *object);
|
2003-03-26 17:09:26 +00:00
|
|
|
|
|
|
|
static GObject* gtk_file_chooser_widget_constructor (GType type,
|
|
|
|
guint n_construct_properties,
|
|
|
|
GObjectConstructParam *construct_params);
|
|
|
|
static void gtk_file_chooser_widget_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gtk_file_chooser_widget_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
G_DEFINE_TYPE_WITH_CODE (GtkFileChooserWidget, gtk_file_chooser_widget, GTK_TYPE_VBOX,
|
|
|
|
G_IMPLEMENT_INTERFACE (GTK_TYPE_FILE_CHOOSER,
|
|
|
|
_gtk_file_chooser_delegate_iface_init)
|
|
|
|
G_IMPLEMENT_INTERFACE (GTK_TYPE_FILE_CHOOSER_EMBED,
|
2006-05-14 04:25:34 +00:00
|
|
|
_gtk_file_chooser_embed_delegate_iface_init))
|
2003-03-21 20:34:02 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_file_chooser_widget_class_init (GtkFileChooserWidgetClass *class)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (class);
|
|
|
|
|
2003-03-26 17:09:26 +00:00
|
|
|
gobject_class->constructor = gtk_file_chooser_widget_constructor;
|
2003-03-21 20:34:02 +00:00
|
|
|
gobject_class->set_property = gtk_file_chooser_widget_set_property;
|
|
|
|
gobject_class->get_property = gtk_file_chooser_widget_get_property;
|
2004-02-19 07:43:39 +00:00
|
|
|
gobject_class->finalize = gtk_file_chooser_widget_finalize;
|
2003-03-21 20:34:02 +00:00
|
|
|
|
|
|
|
_gtk_file_chooser_install_properties (gobject_class);
|
|
|
|
|
|
|
|
g_type_class_add_private (class, sizeof (GtkFileChooserWidgetPrivate));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_file_chooser_widget_init (GtkFileChooserWidget *chooser_widget)
|
|
|
|
{
|
|
|
|
GtkFileChooserWidgetPrivate *priv = G_TYPE_INSTANCE_GET_PRIVATE (chooser_widget,
|
|
|
|
GTK_TYPE_FILE_CHOOSER_WIDGET,
|
|
|
|
GtkFileChooserWidgetPrivate);
|
2003-03-26 17:09:26 +00:00
|
|
|
chooser_widget->priv = priv;
|
|
|
|
}
|
|
|
|
|
2004-02-19 07:43:39 +00:00
|
|
|
static void
|
|
|
|
gtk_file_chooser_widget_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GtkFileChooserWidget *chooser = GTK_FILE_CHOOSER_WIDGET (object);
|
|
|
|
|
|
|
|
g_free (chooser->priv->file_system);
|
2004-02-22 02:06:49 +00:00
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
G_OBJECT_CLASS (gtk_file_chooser_widget_parent_class)->finalize (object);
|
2004-02-19 07:43:39 +00:00
|
|
|
}
|
|
|
|
|
2003-03-26 17:09:26 +00:00
|
|
|
static GObject*
|
|
|
|
gtk_file_chooser_widget_constructor (GType type,
|
|
|
|
guint n_construct_properties,
|
|
|
|
GObjectConstructParam *construct_params)
|
|
|
|
{
|
|
|
|
GtkFileChooserWidgetPrivate *priv;
|
|
|
|
GObject *object;
|
2003-03-21 20:34:02 +00:00
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
object = G_OBJECT_CLASS (gtk_file_chooser_widget_parent_class)->constructor (type,
|
|
|
|
n_construct_properties,
|
|
|
|
construct_params);
|
2003-03-26 17:09:26 +00:00
|
|
|
priv = GTK_FILE_CHOOSER_WIDGET_GET_PRIVATE (object);
|
|
|
|
|
2003-03-21 20:34:02 +00:00
|
|
|
gtk_widget_push_composite_child ();
|
|
|
|
|
2008-08-04 14:43:53 +00:00
|
|
|
priv->impl = _gtk_file_chooser_default_new ();
|
2004-02-19 07:43:39 +00:00
|
|
|
|
2003-03-26 17:09:26 +00:00
|
|
|
gtk_box_pack_start (GTK_BOX (object), priv->impl, TRUE, TRUE, 0);
|
2003-03-21 20:34:02 +00:00
|
|
|
gtk_widget_show (priv->impl);
|
|
|
|
|
2003-03-26 17:09:26 +00:00
|
|
|
_gtk_file_chooser_set_delegate (GTK_FILE_CHOOSER (object),
|
2003-03-21 20:34:02 +00:00
|
|
|
GTK_FILE_CHOOSER (priv->impl));
|
2004-02-27 23:51:16 +00:00
|
|
|
|
2004-03-02 02:59:02 +00:00
|
|
|
_gtk_file_chooser_embed_set_delegate (GTK_FILE_CHOOSER_EMBED (object),
|
|
|
|
GTK_FILE_CHOOSER_EMBED (priv->impl));
|
2003-03-21 20:34:02 +00:00
|
|
|
|
|
|
|
gtk_widget_pop_composite_child ();
|
2003-03-26 17:09:26 +00:00
|
|
|
|
|
|
|
return object;
|
2003-03-21 20:34:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_file_chooser_widget_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkFileChooserWidgetPrivate *priv = GTK_FILE_CHOOSER_WIDGET_GET_PRIVATE (object);
|
2003-03-26 17:09:26 +00:00
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
g_object_set_property (G_OBJECT (priv->impl), pspec->name, value);
|
|
|
|
break;
|
|
|
|
}
|
2003-03-21 20:34:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_file_chooser_widget_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkFileChooserWidgetPrivate *priv = GTK_FILE_CHOOSER_WIDGET_GET_PRIVATE (object);
|
|
|
|
|
|
|
|
g_object_get_property (G_OBJECT (priv->impl), pspec->name, value);
|
|
|
|
}
|
|
|
|
|
2003-10-23 23:02:38 +00:00
|
|
|
/**
|
|
|
|
* gtk_file_chooser_widget_new:
|
|
|
|
* @action: Open or save mode for the widget
|
|
|
|
*
|
|
|
|
* Creates a new #GtkFileChooserWidget. This is a file chooser widget that can
|
|
|
|
* be embedded in custom windows, and it is the same widget that is used by
|
|
|
|
* #GtkFileChooserDialog.
|
|
|
|
*
|
|
|
|
* Return value: a new #GtkFileChooserWidget
|
2003-11-08 00:51:10 +00:00
|
|
|
*
|
|
|
|
* Since: 2.4
|
2003-10-23 23:02:38 +00:00
|
|
|
**/
|
2003-03-21 20:34:02 +00:00
|
|
|
GtkWidget *
|
|
|
|
gtk_file_chooser_widget_new (GtkFileChooserAction action)
|
|
|
|
{
|
|
|
|
return g_object_new (GTK_TYPE_FILE_CHOOSER_WIDGET,
|
|
|
|
"action", action,
|
|
|
|
NULL);
|
|
|
|
}
|