Details
struct GnomeIconEntryPrivate
struct GnomeIconEntryPrivate; |
gnome_icon_entry_new ()
Creates a new icon entry widget
gnome_icon_entry_construct ()
void gnome_icon_entry_construct (GnomeIconEntry *ientry,
const gchar *history_id,
const gchar *browse_dialog_title); |
For language bindings and subclassing, from C use
gnome_icon_entry_new
gnome_icon_entry_set_pixmap_subdir ()
void gnome_icon_entry_set_pixmap_subdir
(GnomeIconEntry *ientry,
const gchar *subdir); |
Sets the subdirectory below gnome's default
pixmap directory to use as the default path for the file
entry. The path can also be an absolute one. If NULL is passed
then the pixmap directory itself is used.
gnome_icon_entry_get_filename ()
gchar* gnome_icon_entry_get_filename (GnomeIconEntry *ientry); |
Gets the file name of the image if it was possible
to load it into the preview. That is, it will only return a filename
if the image exists and it was possible to load it as an image.
gnome_icon_entry_set_filename ()
gboolean gnome_icon_entry_set_filename (GnomeIconEntry *ientry,
const gchar *filename); |
Sets the icon of GnomeIconEntry to be the one pointed to by
filename (in the current subdirectory).
gnome_icon_entry_set_browse_dialog_title ()
void gnome_icon_entry_set_browse_dialog_title
(GnomeIconEntry *ientry,
const gchar *browse_dialog_title); |
Set the title of the browse dialog. It will not effect
an existing dialog.
gnome_icon_entry_set_history_id ()
void gnome_icon_entry_set_history_id (GnomeIconEntry *ientry,
const gchar *history_id); |
Set the history_id of the entry in the browse dialog
and reload the history
gnome_icon_entry_pick_dialog ()
GtkWidget* gnome_icon_entry_pick_dialog (GnomeIconEntry *ientry); |
If a pick dialog exists, return a pointer to it or
return NULL. This is if you need to do something with all dialogs.
You would use the browse signal with connect_after to get the
pick dialog when it is displayed.
gnome_icon_entry_gnome_file_entry ()
GtkWidget* gnome_icon_entry_gnome_file_entry
(GnomeIconEntry *ientry); |
Get the GnomeFileEntry widget that's part of the entry
DEPRECATED! Use the "changed" signal for getting changes
gnome_icon_entry_gnome_entry ()
GtkWidget* gnome_icon_entry_gnome_entry (GnomeIconEntry *ientry); |
Get the GnomeEntry widget that's part of the entry
DEPRECATED! Use the "changed" signal for getting changes
gnome_icon_entry_gtk_entry ()
GtkWidget* gnome_icon_entry_gtk_entry (GnomeIconEntry *ientry); |
Get the GtkEntry widget that's part of the entry.
DEPRECATED! Use the "changed" signal for getting changes