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
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
|
2004-08-17 16:06:39 +00:00
|
|
|
#ifndef __GTK_FILE_CHOOSER_BUTTON_H__
|
2004-08-17 16:52:04 +00:00
|
|
|
#define __GTK_FILE_CHOOSER_BUTTON_H__
|
2004-08-17 16:06:39 +00:00
|
|
|
|
2004-08-17 16:52:04 +00:00
|
|
|
#include <gtk/gtkhbox.h>
|
|
|
|
#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
|
|
|
|
{
|
|
|
|
GtkHBox parent;
|
|
|
|
|
2010-06-04 21:23:12 +00:00
|
|
|
/*< private >*/
|
|
|
|
GtkFileChooserButtonPrivate *priv;
|
2004-08-17 16:06:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GtkFileChooserButtonClass
|
|
|
|
{
|
2004-11-02 05:58:38 +00:00
|
|
|
/*< private >*/
|
2004-08-17 16:06:39 +00:00
|
|
|
GtkHBoxClass parent_class;
|
|
|
|
|
2006-12-26 22:20:06 +00:00
|
|
|
void (* file_set) (GtkFileChooserButton *fc);
|
|
|
|
|
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);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-08-17 16:52:04 +00:00
|
|
|
GType gtk_file_chooser_button_get_type (void) G_GNUC_CONST;
|
2004-12-15 14:58:39 +00:00
|
|
|
GtkWidget * gtk_file_chooser_button_new (const gchar *title,
|
|
|
|
GtkFileChooserAction action);
|
2004-08-17 16:52:04 +00:00
|
|
|
GtkWidget * gtk_file_chooser_button_new_with_dialog (GtkWidget *dialog);
|
|
|
|
G_CONST_RETURN gchar *gtk_file_chooser_button_get_title (GtkFileChooserButton *button);
|
|
|
|
void gtk_file_chooser_button_set_title (GtkFileChooserButton *button,
|
|
|
|
const gchar *title);
|
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);
|
|
|
|
void gtk_file_chooser_button_set_width_chars (GtkFileChooserButton *button,
|
|
|
|
gint n_chars);
|
2005-11-07 15:57:19 +00:00
|
|
|
gboolean gtk_file_chooser_button_get_focus_on_click (GtkFileChooserButton *button);
|
|
|
|
void gtk_file_chooser_button_set_focus_on_click (GtkFileChooserButton *button,
|
|
|
|
gboolean focus_on_click);
|
2004-08-17 16:06:39 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* !__GTK_FILE_CHOOSER_BUTTON_H__ */
|