/usr/include/gthumb-3.6/gthumb/gth-main.h is in gthumb-dev 3:3.6.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* GThumb
*
* Copyright (C) 2008-2009 Free Software Foundation, Inc.
*
* This program 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef GTH_MAIN_H
#define GTH_MAIN_H
#include <glib.h>
#include <glib-object.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include "gth-color-manager.h"
#include "gth-extensions.h"
#include "gth-file-data.h"
#include "gth-file-source.h"
#include "gth-filter-file.h"
#include "gth-hook.h"
#include "gth-image.h"
#include "gth-image-saver.h"
#include "gth-metadata-provider.h"
#include "gth-monitor.h"
#include "gth-tags-file.h"
#include "gth-test.h"
#include "pixbuf-io.h"
G_BEGIN_DECLS
#define GTH_TYPE_MAIN (gth_main_get_type ())
#define GTH_MAIN(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GTH_TYPE_MAIN, GthMain))
#define GTH_MAIN_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), GTH_TYPE_MAIN, GthMainClass))
#define GTH_IS_MAIN(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GTH_TYPE_MAIN))
#define GTH_IS_MAIN_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GTH_TYPE_MAIN))
#define GTH_MAIN_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS((o), GTH_TYPE_MAIN, GthMainClass))
typedef struct _GthMain GthMain;
typedef struct _GthMainPrivate GthMainPrivate;
typedef struct _GthMainClass GthMainClass;
struct _GthMain {
GObject __parent;
GthMainPrivate *priv;
};
struct _GthMainClass {
GObjectClass __parent_class;
};
GType gth_main_get_type (void) G_GNUC_CONST;
void gth_main_initialize (void);
void gth_main_release (void);
void gth_main_register_file_source (GType file_source_type);
GthFileSource * gth_main_get_file_source_for_uri (const char *uri);
GthFileSource * gth_main_get_file_source (GFile *file);
GList * gth_main_get_all_file_sources (void);
GList * gth_main_get_all_entry_points (void);
char * gth_main_get_gio_uri (const char *uri);
GFile * gth_main_get_gio_file (GFile *file);
void gth_main_register_metadata_category (GthMetadataCategory *metadata_category);
GthMetadataInfo * gth_main_register_metadata_info (GthMetadataInfo *metadata_info);
void gth_main_register_metadata_info_v (GthMetadataInfo metadata_info[]);
void gth_main_register_metadata_provider (GType metadata_provider_type);
GList * gth_main_get_all_metadata_providers (void);
char ** gth_main_get_metadata_attributes (const char *mask);
GthMetadataProvider * gth_main_get_metadata_reader (const char *id,
const char *mime_type);
GthMetadataProvider * gth_main_get_metadata_writer (const char *id,
const char *mime_type);
GthMetadataCategory * gth_main_get_metadata_category (const char *id);
GthMetadataInfo * gth_main_get_metadata_info (const char *id);
GList * gth_main_get_all_metadata_info (void);
void gth_main_register_sort_type (GthFileDataSort *sort_type);
GthFileDataSort * gth_main_get_sort_type (const char *name);
GList * gth_main_get_all_sort_types (void);
void gth_main_register_image_loader_func (GthImageLoaderFunc loader,
GthImageFormat native_format,
...) G_GNUC_NULL_TERMINATED;
void gth_main_register_image_loader_func_v (GthImageLoaderFunc loader,
GthImageFormat native_format,
const char **mime_types);
GthImageLoaderFunc gth_main_get_image_loader_func (const char *mime_type,
GthImageFormat preferred_format);
GthImageSaver * gth_main_get_image_saver (const char *mime_type);
GthTest * gth_main_get_general_filter (void);
GthTest * gth_main_add_general_filter (GthTest *filter);
void gth_main_register_object (GType superclass_type,
const char *object_id,
GType object_type,
...) G_GNUC_NULL_TERMINATED;
GList * gth_main_get_registered_objects (GType superclass_type);
GList * gth_main_get_registered_objects_id (GType superclass_type);
gpointer gth_main_get_registered_object (GType superclass_type,
const char *object_id);
void gth_main_register_type (const char *set_name,
GType object_type);
GArray * gth_main_get_type_set (const char *set_name);
GBookmarkFile * gth_main_get_default_bookmarks (void);
void gth_main_bookmarks_changed (void);
GthFilterFile * gth_main_get_default_filter_file (void);
GList * gth_main_get_all_filters (void);
void gth_main_filters_changed (void);
GthTagsFile * gth_main_get_default_tag_file (void);
char ** gth_main_get_all_tags (void);
void gth_main_tags_changed (void);
GthMonitor * gth_main_get_default_monitor (void);
GthExtensionManager * gth_main_get_default_extension_manager (void);
GthColorManager * gth_main_get_default_color_manager (void);
void gth_main_register_default_hooks (void);
void gth_main_register_default_tests (void);
void gth_main_register_default_types (void);
void gth_main_register_default_sort_types (void);
void gth_main_register_default_metadata (void);
void gth_main_activate_extensions (void);
gboolean gth_main_extension_is_active (const char *extension_name);
/* utilities */
gboolean attribute_list_reload_required (const char *old_attributes,
const char *new_attributes);
G_END_DECLS
#endif /* GTH_MAIN_H */
|