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
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2003-03-21 20:34:02 +00:00
|
|
|
*/
|
|
|
|
|
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"
|
2011-06-07 22:36:22 +00:00
|
|
|
#include "gtkorientable.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.
|
|
|
|
*/
|
|
|
|
|
2013-04-12 01:50:57 +00:00
|
|
|
struct _GtkFileChooserWidgetPrivate
|
|
|
|
{
|
|
|
|
GtkWidget *impl;
|
|
|
|
};
|
2011-04-11 02:09:38 +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);
|
|
|
|
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);
|
|
|
|
|
2011-06-07 22:36:22 +00:00
|
|
|
G_DEFINE_TYPE_WITH_CODE (GtkFileChooserWidget, gtk_file_chooser_widget, GTK_TYPE_BOX,
|
2013-06-27 19:02:52 +00:00
|
|
|
G_ADD_PRIVATE (GtkFileChooserWidget)
|
2006-05-02 23:56:43 +00:00
|
|
|
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;
|
|
|
|
|
|
|
|
_gtk_file_chooser_install_properties (gobject_class);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-06-27 19:02:52 +00:00
|
|
|
gtk_file_chooser_widget_init (GtkFileChooserWidget *self)
|
2003-03-21 20:34:02 +00:00
|
|
|
{
|
2013-06-27 19:02:52 +00:00
|
|
|
self->priv = gtk_file_chooser_widget_get_instance_private (self);
|
|
|
|
|
|
|
|
gtk_orientable_set_orientation (GTK_ORIENTABLE (self),
|
2011-06-07 22:36:22 +00:00
|
|
|
GTK_ORIENTATION_VERTICAL);
|
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);
|
2013-06-27 19:02:52 +00:00
|
|
|
priv = gtk_file_chooser_widget_get_instance_private (GTK_FILE_CHOOSER_WIDGET (object));
|
2003-03-26 17:09:26 +00:00
|
|
|
|
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-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)
|
|
|
|
{
|
2013-06-27 19:02:52 +00:00
|
|
|
GtkFileChooserWidgetPrivate *priv;
|
|
|
|
|
|
|
|
priv = gtk_file_chooser_widget_get_instance_private (GTK_FILE_CHOOSER_WIDGET (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)
|
|
|
|
{
|
2013-06-27 19:02:52 +00:00
|
|
|
GtkFileChooserWidgetPrivate *priv;
|
|
|
|
|
|
|
|
priv = gtk_file_chooser_widget_get_instance_private (GTK_FILE_CHOOSER_WIDGET (object));
|
2003-03-21 20:34:02 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|