2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
2003-03-25 00:11:06 +00:00
|
|
|
* gtkfilechooserentry.h: Entry with filename completion
|
|
|
|
* 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-25 00:11:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GTK_FILE_CHOOSER_ENTRY_H__
|
|
|
|
#define __GTK_FILE_CHOOSER_ENTRY_H__
|
|
|
|
|
2022-10-29 15:31:35 +00:00
|
|
|
#include "deprecated/gtkfilechooser.h"
|
2003-03-25 00:11:06 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GTK_TYPE_FILE_CHOOSER_ENTRY (_gtk_file_chooser_entry_get_type ())
|
|
|
|
#define GTK_FILE_CHOOSER_ENTRY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_FILE_CHOOSER_ENTRY, GtkFileChooserEntry))
|
|
|
|
#define GTK_IS_FILE_CHOOSER_ENTRY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_FILE_CHOOSER_ENTRY))
|
|
|
|
|
|
|
|
typedef struct _GtkFileChooserEntry GtkFileChooserEntry;
|
|
|
|
|
2004-11-28 07:02:27 +00:00
|
|
|
GType _gtk_file_chooser_entry_get_type (void) G_GNUC_CONST;
|
2015-06-27 05:40:04 +00:00
|
|
|
GtkWidget * _gtk_file_chooser_entry_new (gboolean eat_tab,
|
|
|
|
gboolean eat_escape);
|
2004-09-17 18:13:26 +00:00
|
|
|
void _gtk_file_chooser_entry_set_action (GtkFileChooserEntry *chooser_entry,
|
|
|
|
GtkFileChooserAction action);
|
|
|
|
GtkFileChooserAction _gtk_file_chooser_entry_get_action (GtkFileChooserEntry *chooser_entry);
|
2003-04-04 22:43:12 +00:00
|
|
|
void _gtk_file_chooser_entry_set_base_folder (GtkFileChooserEntry *chooser_entry,
|
2008-06-10 00:39:35 +00:00
|
|
|
GFile *folder);
|
|
|
|
GFile * _gtk_file_chooser_entry_get_current_folder (GtkFileChooserEntry *chooser_entry);
|
2020-07-24 18:40:36 +00:00
|
|
|
const char * _gtk_file_chooser_entry_get_file_part (GtkFileChooserEntry *chooser_entry);
|
2006-05-01 21:41:12 +00:00
|
|
|
gboolean _gtk_file_chooser_entry_get_is_folder (GtkFileChooserEntry *chooser_entry,
|
2008-06-10 00:39:35 +00:00
|
|
|
GFile *file);
|
2008-02-12 17:34:43 +00:00
|
|
|
void _gtk_file_chooser_entry_select_filename (GtkFileChooserEntry *chooser_entry);
|
2016-11-15 09:51:41 +00:00
|
|
|
void _gtk_file_chooser_entry_set_file_filter (GtkFileChooserEntry *chooser_entry,
|
|
|
|
GtkFileFilter *filter);
|
2022-10-12 04:05:44 +00:00
|
|
|
void gtk_file_chooser_entry_set_text (GtkFileChooserEntry *entry,
|
|
|
|
const char *text);
|
2003-03-25 00:11:06 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_FILE_CHOOSER_ENTRY_H__ */
|