view gntfilesel.h @ 1320:93fc8c41ded2

Fix incorrect Since tags. Anything on default-only would never have gone out in 2.8.0; update them to 3.0.0.
author Elliott Sales de Andrade <quantum.analyst@gmail.com>
date Sun, 19 May 2019 02:50:51 -0400
parents 2b331e084d56
children 8278895039b8
line wrap: on
line source

/*
 * GNT - The GLib Ncurses Toolkit
 *
 * GNT is the legal property of its developers, whose names are too numerous
 * to list here.  Please refer to the COPYRIGHT file distributed with this
 * source distribution.
 *
 * This library is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

#ifndef GNT_FILE_SEL_H
#define GNT_FILE_SEL_H
/**
 * SECTION:gntfilesel
 * @section_id: libgnt-gntfilesel
 * @title: GntFileSel
 * @short_description: A widget for selecting a file or directory
 */

#include "gnt.h"
#include "gntcolors.h"
#include "gntkeys.h"
#include "gntwindow.h"

#define GNT_TYPE_FILE_SEL gnt_file_sel_get_type()
#define GNT_TYPE_FILE gnt_file_get_type()

#ifndef GNT_DISABLE_DEPRECATED
/**
 * GntFileType:
 *
 * Deprecated: 2.14.0: This is an internal implementation detail. Use #GFile
 * from GIO for a similar abstraction.
 */
typedef enum
{
	GNT_FILE_REGULAR,
	GNT_FILE_DIR
} GntFileType;

/**
 * GntFile:
 *
 * Deprecated: 2.14.0: This is an internal implementation detail. Use #GFile
 * from GIO for a similar abstraction.
 */
typedef struct
{
	char *fullpath;
	char *basename;
	GntFileType type;
	unsigned long size;
} GntFile;
#endif

G_BEGIN_DECLS

/**
 * gnt_file_sel_get_type:
 *
 * Returns: GType for GntFileSel.
 */
G_DECLARE_DERIVABLE_TYPE(GntFileSel, gnt_file_sel, GNT, FILE_SEL, GntWindow)

struct _GntFileSelClass
{
	GntWindowClass parent;

	void (*file_selected)(GntFileSel *sel, const char *path,
	                      const char *filename);
	void (*cancelled)(GntFileSel *sel);

	/*< private >*/
	void (*gnt_reserved1)(void);
	void (*gnt_reserved2)(void);
	void (*gnt_reserved3)(void);
	void (*gnt_reserved4)(void);
};

#ifndef GNT_DISABLE_DEPRECATED
/**
 * gnt_file_get_type:
 *
 * Returns: The #GType for the #GntFile boxed structure.
 *
 * Deprecated: 2.14.0: This is an internal implementation detail.
 */
GType gnt_file_get_type(void);
#endif

/**
 * gnt_file_sel_new:
 *
 * Create a new file selector.
 *
 * Returns:  The newly created file selector.
 */
GntWidget * gnt_file_sel_new(void);

/**
 * gnt_file_sel_set_current_location:
 * @sel:   The file selector.
 * @path:  The current path of the selector.
 *
 * Set the current location of the file selector.
 *
 * Returns: %TRUE if the current location was successfully changed, %FALSE otherwise.
 */
gboolean gnt_file_sel_set_current_location(GntFileSel *sel, const char *path);

/**
 * gnt_file_sel_set_dirs_only:
 * @sel:    The file selector.
 * @dirs:   %TRUE if only directories can be selected, %FALSE if files
 *               can also be selected.
 *
 * Set wheter to only allow selecting directories.
 */
void gnt_file_sel_set_dirs_only(GntFileSel *sel, gboolean dirs);

/**
 * gnt_file_sel_get_dirs_only:
 * @sel:  The file selector.
 *
 * Check whether the file selector allows only selecting directories.
 *
 * Returns:  %TRUE if only directories can be selected.
 */
gboolean gnt_file_sel_get_dirs_only(GntFileSel *sel);

/**
 * gnt_file_sel_set_must_exist:
 * @sel:   The file selector.
 * @must:  %TRUE if the selected file must exist.
 *
 * Set whether a selected file must exist.
 */
void gnt_file_sel_set_must_exist(GntFileSel *sel, gboolean must);

/**
 * gnt_file_sel_get_must_exist:
 * @sel:  The file selector.
 *
 * Check whether the selector allows selecting non-existent files.
 *
 * Returns:  %TRUE if the selected file must exist, %FALSE if a non-existent
 *          file can be selected.
 */
gboolean gnt_file_sel_get_must_exist(GntFileSel *sel);

/**
 * gnt_file_sel_get_selected_file:
 * @sel:  The file selector.
 *
 * Get the selected file in the selector.
 *
 * Returns: The path of the selected file. The caller should g_free the returned
 *         string.
 */
char * gnt_file_sel_get_selected_file(GntFileSel *sel);

/**
 * gnt_file_sel_get_selected_multi_files:
 * @sel:  The file selector.
 *
 * Get the list of selected files in the selector.
 *
 * Returns: (transfer full) (element-type filename): A list of paths for the
 *          selected files. The caller must g_free() the contents of the list,
 *          and g_list_free() the list.
 */
GList * gnt_file_sel_get_selected_multi_files(GntFileSel *sel);

/**
 * gnt_file_sel_set_multi_select:
 * @sel:  The file selector.
 * @set:  %TRUE if selecting multiple files should be allowed.
 *
 * Allow selecting multiple files.
 */
void gnt_file_sel_set_multi_select(GntFileSel *sel, gboolean set);

/**
 * gnt_file_sel_set_suggested_filename:
 * @sel:      The file selector.
 * @suggest:  The suggested filename.
 *
 * Set the suggested file to have selected at startup.
 */
void gnt_file_sel_set_suggested_filename(GntFileSel *sel, const char *suggest);

#ifndef GNT_DISABLE_DEPRECATED
/**
 * gnt_file_sel_set_read_fn:
 * @sel:      The file selector.
 * @read_fn:  The custom read function.
 *
 * Set custom functions to read the names of files.
 *
 * Deprecated: 2.14.0: This is an internal implementation detail.
 */
void gnt_file_sel_set_read_fn(GntFileSel *sel, gboolean (*read_fn)(const char *path, GList **files, GError **error));

/**
 * gnt_file_new:
 * @name:   The name of the file.
 * @size:   The size of the file.
 *
 * Create a new GntFile.
 *
 * Returns:  The newly created GntFile.
 *
 * Deprecated: 2.14.0: This is an internal implementation detail.
 */
GntFile* gnt_file_new(const char *name, unsigned long size);

/**
 * gnt_file_new_dir:
 * @name:  The name of the directory.
 *
 * Create a new GntFile for a directory.
 *
 * Returns:  The newly created GntFile.
 *
 * Deprecated: 2.14.0: This is an internal implementation detail.
 */
GntFile* gnt_file_new_dir(const char *name);
#endif

G_END_DECLS

#endif /* GNT_FILE_SEL_H */