2004-08-17 16:06:39 +00:00
|
|
|
/* GTK+: gtkfilechooserbutton.h
|
2008-05-05 13:40:29 +00:00
|
|
|
*
|
2004-08-17 16:06:39 +00:00
|
|
|
* Copyright (c) 2004 James M. Cape <jcape@ignore-your.tv>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2004-08-17 16:06:39 +00:00
|
|
|
*/
|
|
|
|
|
2012-12-28 14:57:34 +00:00
|
|
|
#ifndef __GTK_FILE_CHOOSER_BUTTON_H__
|
|
|
|
#define __GTK_FILE_CHOOSER_BUTTON_H__
|
|
|
|
|
2009-10-21 18:30:04 +00:00
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
2008-05-28 15:07:04 +00:00
|
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2011-06-07 23:54:40 +00:00
|
|
|
#include <gtk/gtkbox.h>
|
2004-08-17 16:52:04 +00:00
|
|
|
#include <gtk/gtkfilechooser.h>
|
2004-08-17 16:06:39 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2008-05-05 13:40:29 +00:00
|
|
|
#define GTK_TYPE_FILE_CHOOSER_BUTTON (gtk_file_chooser_button_get_type ())
|
|
|
|
#define GTK_FILE_CHOOSER_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_FILE_CHOOSER_BUTTON, GtkFileChooserButton))
|
|
|
|
#define GTK_FILE_CHOOSER_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_FILE_CHOOSER_BUTTON, GtkFileChooserButtonClass))
|
|
|
|
#define GTK_IS_FILE_CHOOSER_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_FILE_CHOOSER_BUTTON))
|
|
|
|
#define GTK_IS_FILE_CHOOSER_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_FILE_CHOOSER_BUTTON))
|
|
|
|
#define GTK_FILE_CHOOSER_BUTTON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_FILE_CHOOSER_BUTTON, GtkFileChooserButtonClass))
|
2004-08-17 16:06:39 +00:00
|
|
|
|
2008-05-05 13:40:29 +00:00
|
|
|
typedef struct _GtkFileChooserButton GtkFileChooserButton;
|
2004-08-17 16:06:39 +00:00
|
|
|
typedef struct _GtkFileChooserButtonPrivate GtkFileChooserButtonPrivate;
|
2008-05-05 13:40:29 +00:00
|
|
|
typedef struct _GtkFileChooserButtonClass GtkFileChooserButtonClass;
|
2004-08-17 16:06:39 +00:00
|
|
|
|
|
|
|
struct _GtkFileChooserButton
|
|
|
|
{
|
2017-01-18 21:21:42 +00:00
|
|
|
GtkWidget parent;
|
2004-08-17 16:06:39 +00:00
|
|
|
|
2010-06-04 21:23:12 +00:00
|
|
|
/*< private >*/
|
|
|
|
GtkFileChooserButtonPrivate *priv;
|
2004-08-17 16:06:39 +00:00
|
|
|
};
|
|
|
|
|
2014-01-17 20:17:45 +00:00
|
|
|
/**
|
|
|
|
* GtkFileChooserButtonClass:
|
|
|
|
* @parent_class: The parent class.
|
|
|
|
* @file_set: Signal emitted when the user selects a file.
|
|
|
|
*/
|
2004-08-17 16:06:39 +00:00
|
|
|
struct _GtkFileChooserButtonClass
|
|
|
|
{
|
2017-01-18 21:21:42 +00:00
|
|
|
GtkWidgetClass parent_class;
|
2004-08-17 16:06:39 +00:00
|
|
|
|
2014-01-17 20:17:45 +00:00
|
|
|
/*< public >*/
|
|
|
|
|
2006-12-26 22:20:06 +00:00
|
|
|
void (* file_set) (GtkFileChooserButton *fc);
|
|
|
|
|
2014-01-17 20:17:45 +00:00
|
|
|
/*< private >*/
|
|
|
|
|
2010-10-19 17:07:36 +00:00
|
|
|
/* Padding for future expansion */
|
2004-08-17 16:06:39 +00:00
|
|
|
void (*__gtk_reserved1);
|
|
|
|
void (*__gtk_reserved2);
|
|
|
|
void (*__gtk_reserved3);
|
|
|
|
void (*__gtk_reserved4);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2004-08-17 16:52:04 +00:00
|
|
|
GType gtk_file_chooser_button_get_type (void) G_GNUC_CONST;
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2004-12-15 14:58:39 +00:00
|
|
|
GtkWidget * gtk_file_chooser_button_new (const gchar *title,
|
|
|
|
GtkFileChooserAction action);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2004-08-17 16:52:04 +00:00
|
|
|
GtkWidget * gtk_file_chooser_button_new_with_dialog (GtkWidget *dialog);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-06-06 18:13:44 +00:00
|
|
|
const gchar * gtk_file_chooser_button_get_title (GtkFileChooserButton *button);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2004-08-17 16:52:04 +00:00
|
|
|
void gtk_file_chooser_button_set_title (GtkFileChooserButton *button,
|
|
|
|
const gchar *title);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
Rework of GtkFileChooserButton, some cleanups. Fixes #154388, #154390,
2004-10-25 James M. Cape <jcape@ignore-your.tv>
Rework of GtkFileChooserButton, some cleanups. Fixes #154388,
#154390, #154390, #156272.
* docs/reference/gtk/gtk-docs.sgml: Moved GtkFileChooserButton
below GtkFileChooser.
* docs/reference/gtk/gtk-sections.txt: Added
gtk_file_chooser_button_get_width_chars(),
gtk_file_chooser_button_set_width_chars(),
gtk_label_set_width_chars(), gtk_label_get_width_chars().
* docs/reference/gtk/gtk.types: Added
gtk_cell_renderer_combo_get_type,
gtk_cell_view_get_type,
gtk_text_iter_get_type.
* docs/reference/gtk/tmpl/gtkaboutdialog.sgml: Add
"logo-icon-name" property.
* docs/reference/gtk/tmpl/gtkcellview.sgml: Updates for
properties
(b/c of get_type() inclusion above).
* docs/reference/gtk/tmpl/gtkfilechooserbutton.sgml:
* docs/reference/gtk/tmpl/gtklabel.sgml: Add "width-chars"
property,
getters/setters.
* docs/reference/gtk/tmpl/gtkcellrenderercombo.sgml: Added.
* gtk/gtkentrycompletion.c:
(_gtk_entry_completion_popdown): Don't show if the entry isn't
mapped.
* gtk/gtkfilechooserbutton.[c,h]: (*): About 45%
rewritten, adds "width-chars" property, icons, working save
modes, volume/Home/Desktop friendly-naming support.
* gtk/gtklabel.[c,h]:
(gtk_label_class_init), (gtk_label_init),
(gtk_label_get_property), (gtk_label_set_property),
(gtk_label_get_width_chars), (gtk_label_set_width_chars),
(gtk_label_size_request): Add "width-chars" property.
* tests/testfilechooserbutton.c: Update, use 4 different buttons
for the different ACTIONs.
* gtk/.cvsignore: Ignore gtk-update-icon-cache.
* tests/.cvsignore: Ignore testimage.
2004-10-26 04:29:56 +00:00
|
|
|
gint gtk_file_chooser_button_get_width_chars (GtkFileChooserButton *button);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
Rework of GtkFileChooserButton, some cleanups. Fixes #154388, #154390,
2004-10-25 James M. Cape <jcape@ignore-your.tv>
Rework of GtkFileChooserButton, some cleanups. Fixes #154388,
#154390, #154390, #156272.
* docs/reference/gtk/gtk-docs.sgml: Moved GtkFileChooserButton
below GtkFileChooser.
* docs/reference/gtk/gtk-sections.txt: Added
gtk_file_chooser_button_get_width_chars(),
gtk_file_chooser_button_set_width_chars(),
gtk_label_set_width_chars(), gtk_label_get_width_chars().
* docs/reference/gtk/gtk.types: Added
gtk_cell_renderer_combo_get_type,
gtk_cell_view_get_type,
gtk_text_iter_get_type.
* docs/reference/gtk/tmpl/gtkaboutdialog.sgml: Add
"logo-icon-name" property.
* docs/reference/gtk/tmpl/gtkcellview.sgml: Updates for
properties
(b/c of get_type() inclusion above).
* docs/reference/gtk/tmpl/gtkfilechooserbutton.sgml:
* docs/reference/gtk/tmpl/gtklabel.sgml: Add "width-chars"
property,
getters/setters.
* docs/reference/gtk/tmpl/gtkcellrenderercombo.sgml: Added.
* gtk/gtkentrycompletion.c:
(_gtk_entry_completion_popdown): Don't show if the entry isn't
mapped.
* gtk/gtkfilechooserbutton.[c,h]: (*): About 45%
rewritten, adds "width-chars" property, icons, working save
modes, volume/Home/Desktop friendly-naming support.
* gtk/gtklabel.[c,h]:
(gtk_label_class_init), (gtk_label_init),
(gtk_label_get_property), (gtk_label_set_property),
(gtk_label_get_width_chars), (gtk_label_set_width_chars),
(gtk_label_size_request): Add "width-chars" property.
* tests/testfilechooserbutton.c: Update, use 4 different buttons
for the different ACTIONs.
* gtk/.cvsignore: Ignore gtk-update-icon-cache.
* tests/.cvsignore: Ignore testimage.
2004-10-26 04:29:56 +00:00
|
|
|
void gtk_file_chooser_button_set_width_chars (GtkFileChooserButton *button,
|
|
|
|
gint n_chars);
|
2004-08-17 16:06:39 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* !__GTK_FILE_CHOOSER_BUTTON_H__ */
|