2000-02-26 03:41:06 +00:00
|
|
|
/* LIBGIMP - The GIMP Library
|
2003-11-21 15:53:57 +00:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
1999-03-13 23:03:11 +00:00
|
|
|
*
|
2003-11-21 15:53:57 +00:00
|
|
|
* gimpfileentry.h
|
2004-02-27 22:01:00 +00:00
|
|
|
* Copyright (C) 1999-2004 Michael Natterer <mitch@gimp.org>
|
1999-03-13 23:03:11 +00:00
|
|
|
*
|
2009-01-17 22:28:01 +00:00
|
|
|
* This library is free software: you can redistribute it and/or
|
1999-11-17 21:13:50 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1999-03-13 23:03:11 +00:00
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-17 22:28:01 +00:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2003-11-21 15:53:57 +00:00
|
|
|
*
|
|
|
|
* 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
|
1999-12-26 07:54:39 +00:00
|
|
|
* Lesser General Public License for more details.
|
1999-03-13 23:03:11 +00:00
|
|
|
*
|
1999-11-17 21:13:50 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-17 22:28:01 +00:00
|
|
|
* License along with this library. If not, see
|
2018-07-11 23:27:07 +02:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
1999-03-13 23:03:11 +00:00
|
|
|
*/
|
|
|
|
|
2006-06-09 07:12:33 +00:00
|
|
|
#ifndef GIMP_DISABLE_DEPRECATED
|
|
|
|
|
2011-04-28 14:30:41 +02:00
|
|
|
#if !defined (__GIMP_WIDGETS_H_INSIDE__) && !defined (GIMP_WIDGETS_COMPILATION)
|
|
|
|
#error "Only <libgimpwidgets/gimpwidgets.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2003-11-21 15:53:57 +00:00
|
|
|
#ifndef __GIMP_FILE_ENTRY_H__
|
|
|
|
#define __GIMP_FILE_ENTRY_H__
|
1999-03-13 23:03:11 +00:00
|
|
|
|
2001-11-22 23:46:13 +00:00
|
|
|
G_BEGIN_DECLS
|
1999-03-13 23:03:11 +00:00
|
|
|
|
2000-05-30 23:38:46 +00:00
|
|
|
/* For information look into the C source or the html documentation */
|
|
|
|
|
2024-10-31 19:51:15 +01:00
|
|
|
/* The whole GimpFileEntry widget was deprecated in 2006 (commit
|
|
|
|
* 99f979e1189) apparently to be replaced by GtkFileChooserButton, yet
|
|
|
|
* it is still used in the GimpPathEditor. For GIMP 3.0, we removed the
|
|
|
|
* header from installed headers and made the class and all functions
|
|
|
|
* internal, though we still use it.
|
|
|
|
*
|
|
|
|
* TODO: eventually we want either this widget fully removed and
|
|
|
|
* replaced by a generic GTK widget or reimplemented and made public
|
|
|
|
* again.
|
|
|
|
*/
|
2000-05-30 23:38:46 +00:00
|
|
|
|
2024-10-31 19:51:15 +01:00
|
|
|
#define GIMP_TYPE_FILE_ENTRY (_gimp_file_entry_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE (GimpFileEntry, _gimp_file_entry, GIMP, FILE_ENTRY, GtkBox)
|
1999-03-13 23:03:11 +00:00
|
|
|
|
|
|
|
|
2024-10-31 19:51:15 +01:00
|
|
|
G_GNUC_INTERNAL GtkWidget * _gimp_file_entry_new (const gchar *title,
|
|
|
|
const gchar *filename,
|
|
|
|
gboolean dir_only,
|
|
|
|
gboolean check_valid);
|
1999-03-13 23:03:11 +00:00
|
|
|
|
2024-10-31 19:51:15 +01:00
|
|
|
G_GNUC_INTERNAL gchar * _gimp_file_entry_get_filename (GimpFileEntry *entry);
|
|
|
|
G_GNUC_INTERNAL void _gimp_file_entry_set_filename (GimpFileEntry *entry,
|
|
|
|
const gchar *filename);
|
1999-03-13 23:03:11 +00:00
|
|
|
|
2024-10-31 19:51:15 +01:00
|
|
|
G_GNUC_INTERNAL GtkWidget * _gimp_file_entry_get_entry (GimpFileEntry *entry);
|
2020-10-27 12:42:52 +01:00
|
|
|
|
2000-05-30 23:38:46 +00:00
|
|
|
|
2001-11-22 23:46:13 +00:00
|
|
|
G_END_DECLS
|
1999-03-13 23:03:11 +00:00
|
|
|
|
2003-11-21 15:53:57 +00:00
|
|
|
#endif /* __GIMP_FILE_ENTRY_H__ */
|
2006-06-09 07:12:33 +00:00
|
|
|
|
|
|
|
#endif /* GIMP_DISABLE_DEPRECATED */
|