2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
2003-04-04 22:43:12 +00:00
|
|
|
* gtkfilechooserprivate.h: Interface definition for file selector GUIs
|
|
|
|
* 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-04-04 22:43:12 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GTK_FILE_CHOOSER_PRIVATE_H__
|
|
|
|
#define __GTK_FILE_CHOOSER_PRIVATE_H__
|
|
|
|
|
2022-10-29 15:31:35 +00:00
|
|
|
#include "deprecated/gtkfilechooser.h"
|
2005-09-15 21:51:31 +00:00
|
|
|
#include "gtkfilesystemmodel.h"
|
2022-10-07 21:47:28 +00:00
|
|
|
#include "deprecated/gtkliststore.h"
|
2007-05-11 19:26:32 +00:00
|
|
|
#include "gtkrecentmanager.h"
|
2021-08-29 04:10:31 +00:00
|
|
|
#include "gtksearchengineprivate.h"
|
2007-05-02 22:51:43 +00:00
|
|
|
#include "gtkquery.h"
|
2009-06-11 23:41:05 +00:00
|
|
|
#include "gtksizegroup.h"
|
2022-10-07 21:47:28 +00:00
|
|
|
#include "deprecated/gtktreemodelsort.h"
|
|
|
|
#include "deprecated/gtktreestore.h"
|
|
|
|
#include "deprecated/gtktreeview.h"
|
2011-06-07 22:36:57 +00:00
|
|
|
#include "gtkbox.h"
|
2003-04-04 22:43:12 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2015-07-02 21:47:30 +00:00
|
|
|
#define SETTINGS_KEY_LOCATION_MODE "location-mode"
|
|
|
|
#define SETTINGS_KEY_SHOW_HIDDEN "show-hidden"
|
|
|
|
#define SETTINGS_KEY_SHOW_SIZE_COLUMN "show-size-column"
|
2019-06-06 23:02:11 +00:00
|
|
|
#define SETTINGS_KEY_SHOW_TYPE_COLUMN "show-type-column"
|
2015-07-02 21:47:30 +00:00
|
|
|
#define SETTINGS_KEY_SORT_COLUMN "sort-column"
|
|
|
|
#define SETTINGS_KEY_SORT_ORDER "sort-order"
|
|
|
|
#define SETTINGS_KEY_WINDOW_SIZE "window-size"
|
|
|
|
#define SETTINGS_KEY_SIDEBAR_WIDTH "sidebar-width"
|
|
|
|
#define SETTINGS_KEY_STARTUP_MODE "startup-mode"
|
2013-12-03 17:10:29 +00:00
|
|
|
#define SETTINGS_KEY_SORT_DIRECTORIES_FIRST "sort-directories-first"
|
2015-07-02 21:47:30 +00:00
|
|
|
#define SETTINGS_KEY_CLOCK_FORMAT "clock-format"
|
|
|
|
#define SETTINGS_KEY_DATE_FORMAT "date-format"
|
2019-06-06 23:02:11 +00:00
|
|
|
#define SETTINGS_KEY_TYPE_FORMAT "type-format"
|
2013-01-26 17:29:00 +00:00
|
|
|
|
2003-04-04 22:43:12 +00:00
|
|
|
#define GTK_FILE_CHOOSER_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), GTK_TYPE_FILE_CHOOSER, GtkFileChooserIface))
|
|
|
|
|
|
|
|
typedef struct _GtkFileChooserIface GtkFileChooserIface;
|
|
|
|
|
|
|
|
struct _GtkFileChooserIface
|
|
|
|
{
|
|
|
|
GTypeInterface base_iface;
|
|
|
|
|
|
|
|
/* Methods
|
|
|
|
*/
|
2020-07-04 16:15:47 +00:00
|
|
|
gboolean (*set_current_folder) (GtkFileChooser *chooser,
|
|
|
|
GFile *file,
|
|
|
|
GError **error);
|
|
|
|
GFile * (*get_current_folder) (GtkFileChooser *chooser);
|
|
|
|
void (*set_current_name) (GtkFileChooser *chooser,
|
2020-07-24 18:40:36 +00:00
|
|
|
const char *name);
|
|
|
|
char * (*get_current_name) (GtkFileChooser *chooser);
|
2020-07-04 16:15:47 +00:00
|
|
|
gboolean (*select_file) (GtkFileChooser *chooser,
|
|
|
|
GFile *file,
|
|
|
|
GError **error);
|
|
|
|
void (*unselect_file) (GtkFileChooser *chooser,
|
|
|
|
GFile *file);
|
|
|
|
void (*select_all) (GtkFileChooser *chooser);
|
|
|
|
void (*unselect_all) (GtkFileChooser *chooser);
|
2020-07-09 05:29:20 +00:00
|
|
|
GListModel * (*get_files) (GtkFileChooser *chooser);
|
2020-07-04 16:15:47 +00:00
|
|
|
void (*add_filter) (GtkFileChooser *chooser,
|
|
|
|
GtkFileFilter *filter);
|
|
|
|
void (*remove_filter) (GtkFileChooser *chooser,
|
|
|
|
GtkFileFilter *filter);
|
|
|
|
GListModel * (*get_filters) (GtkFileChooser *chooser);
|
2003-10-18 04:29:40 +00:00
|
|
|
gboolean (*add_shortcut_folder) (GtkFileChooser *chooser,
|
2020-07-04 16:15:47 +00:00
|
|
|
GFile *file,
|
|
|
|
GError **error);
|
2003-10-18 04:29:40 +00:00
|
|
|
gboolean (*remove_shortcut_folder) (GtkFileChooser *chooser,
|
2020-07-04 16:15:47 +00:00
|
|
|
GFile *file,
|
|
|
|
GError **error);
|
2020-07-05 02:08:33 +00:00
|
|
|
GListModel * (*get_shortcut_folders) (GtkFileChooser *chooser);
|
2016-07-06 02:09:56 +00:00
|
|
|
|
2003-04-04 22:43:12 +00:00
|
|
|
/* Signals
|
|
|
|
*/
|
|
|
|
void (*current_folder_changed) (GtkFileChooser *chooser);
|
|
|
|
void (*selection_changed) (GtkFileChooser *chooser);
|
2003-07-23 22:30:32 +00:00
|
|
|
void (*update_preview) (GtkFileChooser *chooser);
|
2003-10-08 04:14:55 +00:00
|
|
|
void (*file_activated) (GtkFileChooser *chooser);
|
2016-07-06 02:09:56 +00:00
|
|
|
|
|
|
|
/* 3.22 additions */
|
|
|
|
void (*add_choice) (GtkFileChooser *chooser,
|
|
|
|
const char *id,
|
|
|
|
const char *label,
|
|
|
|
const char **options,
|
|
|
|
const char **option_labels);
|
|
|
|
void (*remove_choice) (GtkFileChooser *chooser,
|
|
|
|
const char *id);
|
|
|
|
void (*set_choice) (GtkFileChooser *chooser,
|
|
|
|
const char *id,
|
|
|
|
const char *option);
|
|
|
|
const char * (*get_choice) (GtkFileChooser *chooser,
|
|
|
|
const char *id);
|
2003-04-04 22:43:12 +00:00
|
|
|
};
|
|
|
|
|
2020-07-08 14:12:51 +00:00
|
|
|
void gtk_file_chooser_select_all (GtkFileChooser *chooser);
|
|
|
|
void gtk_file_chooser_unselect_all (GtkFileChooser *chooser);
|
2020-07-09 04:46:55 +00:00
|
|
|
gboolean gtk_file_chooser_select_file (GtkFileChooser *chooser,
|
|
|
|
GFile *file,
|
|
|
|
GError **error);
|
|
|
|
void gtk_file_chooser_unselect_file (GtkFileChooser *chooser,
|
|
|
|
GFile *file);
|
2003-04-04 22:43:12 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_FILE_CHOOSER_PRIVATE_H__ */
|