/usr/include/caja-actions/na-iduplicable.h is in caja-actions-dev 1.8.0+dfsg1-1build1.
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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 | /*
* Caja-Actions
* A Caja extension which offers configurable context menu actions.
*
* Copyright (C) 2005 The MATE Foundation
* Copyright (C) 2006-2008 Frederic Ruaudel and others (see AUTHORS)
* Copyright (C) 2009-2012 Pierre Wieser and others (see AUTHORS)
*
* Caja-Actions 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.
*
* Caja-Actions 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 Caja-Actions; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
* Authors:
* Frederic Ruaudel <grumz@grumz.net>
* Rodrigo Moya <rodrigo@mate-db.org>
* Pierre Wieser <pwieser@trychlos.org>
* ... and many others (see AUTHORS)
*/
#ifndef __CAJA_ACTIONS_API_NA_IDUPLICABLE_H__
#define __CAJA_ACTIONS_API_NA_IDUPLICABLE_H__
/**
* SECTION: iduplicable
* @title: NAIDuplicable
* @short_description: The Duplication Interface
* @include: caja-actions/private/na-iduplicable.h
*
* This interface is implemented by #NAObject in order to let
* #NAObject -derived instance duplication be easily tracked. This works
* by keeping a pointer on the original object at duplication time, and
* then only checking edition status when explicitely required.
*
* As the reference count of the original object is not incremented
* here, the caller has to garantee itself that the original object
* will stay in life at least as long as the duplicated one.
*
* <refsect2>
* <title>
* Modification status in Caja-Actions configuration tool
* </title>
* <itemizedlist>
* <listitem>
* <para>
* Objects whose origin is NULL are considered as modified ; this is
* in particular the case of new, pasted, imported and dropped
* objects.
* </para>
* </listitem>
* <listitem>
* <para>
* when a new object, whether is is really new or it has been pasted,
* imported or dropped, is inserted somewhere in the tree, its
* immediate parent is also marked as modified.
* </para>
* </listitem>
* <listitem>
* <para>
* Check for edition status, which positions modification and validity
* status, is not recursive ; it is the responsability of the
* implementation to check for edition status of children of object..
* </para>
* </listitem>
* </itemizedlist>
* </refsect2>
*
* <refsect2>
* <title>Versions historic</title>
* <table>
* <title>Historic of the versions of the #NAIDuplicable interface</title>
* <tgroup rowsep="1" colsep="1" align="center" cols="3">
* <colspec colname="na-version" />
* <colspec colname="api-version" />
* <colspec colname="current" />
* <thead>
* <row>
* <entry>&prodname; version</entry>
* <entry>#NAIDuplicable interface version</entry>
* <entry></entry>
* </row>
* </thead>
* <tbody>
* <row>
* <entry>since 2.30</entry>
* <entry>1</entry>
* <entry>current version</entry>
* </row>
* </tbody>
* </tgroup>
* </table>
* </refsect2>
*/
#include <glib-object.h>
G_BEGIN_DECLS
#define NA_TYPE_IDUPLICABLE ( na_iduplicable_get_type())
#define NA_IDUPLICABLE( instance ) ( G_TYPE_CHECK_INSTANCE_CAST( instance, NA_TYPE_IDUPLICABLE, NAIDuplicable ))
#define NA_IS_IDUPLICABLE( instance ) ( G_TYPE_CHECK_INSTANCE_TYPE( instance, NA_TYPE_IDUPLICABLE ))
#define NA_IDUPLICABLE_GET_INTERFACE( instance ) ( G_TYPE_INSTANCE_GET_INTERFACE(( instance ), NA_TYPE_IDUPLICABLE, NAIDuplicableInterface ))
typedef struct _NAIDuplicable NAIDuplicable;
typedef struct _NAIDuplicableInterfacePrivate NAIDuplicableInterfacePrivate;
/**
* NAIDuplicableInterface:
* @copy: copies one object to another.
* @are_equal: tests if two objects are equals.
* @is_valid: tests if one object is valid.
*
* This interface is implemented by #NAObject objects, in order to be able
* to keep the trace of all duplicated objects.
*/
typedef struct {
/*< private >*/
GTypeInterface parent;
NAIDuplicableInterfacePrivate *private;
/*< public >*/
/**
* copy:
* @target: the #NAIDuplicable target of the copy.
* @source: the #NAIDuplicable source of the copy.
* @mode: the duplication mode.
*
* Copies data from @source to @ŧarget, so that @target becomes an
* exact copy of @source.
*
* Each derived class of the implementation should define this
* function to copy its own data. The implementation should take
* care itself of calling each function in the class hierarchy,
* from topmost base class to most-derived one.
*
* Since: 2.30
*/
void ( *copy ) ( NAIDuplicable *target, const NAIDuplicable *source, guint mode );
/**
* are_equal:
* @a: a first #NAIDuplicable object.
* @b: a second #NAIDuplicable object to be compared to the first
* one.
*
* Compares the two objects.
*
* Each derived class of the implementation should define this
* function to compare its own data. The implementation should take
* care itself of calling each function in the class hierarchy,
* from topmost base class to most-derived one.
*
* When testing for the modification status of an object, @a stands for
* the original object, while @b stands for the duplicated one.
*
* Returns: TRUE if @a and @b are identical, FALSE else.
*
* Since: 2.30
*/
gboolean ( *are_equal ) ( const NAIDuplicable *a, const NAIDuplicable *b );
/**
* is_valid:
* @object: the NAIDuplicable object to be checked.
*
* Checks @object for validity.
*
* Each derived class of the implementation should define this
* function to compare its own data. The implementation should take
* care itself of calling each function in the class hierarchy,
* from topmost base class to most-derived one.
*
* Returns: TRUE if @object is valid, FALSE else.
*
* Since: 2.30
*/
gboolean ( *is_valid ) ( const NAIDuplicable *object );
}
NAIDuplicableInterface;
#define IDUPLICABLE_SIGNAL_MODIFIED_CHANGED "iduplicable-modified-changed"
#define IDUPLICABLE_SIGNAL_VALID_CHANGED "iduplicable-valid-changed"
/**
* DuplicateMode:
* @DUPLICATE_ONLY: only duplicates the provided object.
* @DUPLICATE_OBJECT: only duplicate a menu
* (a menu with some subitems is duplicated to an empty menu)
* @DUPLICATE_REC: recursively duplicates all the provided hierarchy.
*/
typedef enum {
DUPLICATE_ONLY = 1,
DUPLICATE_OBJECT,
DUPLICATE_REC
}
DuplicableMode;
GType na_iduplicable_get_type ( void );
void na_iduplicable_dispose ( const NAIDuplicable *object );
void na_iduplicable_dump ( const NAIDuplicable *object );
NAIDuplicable *na_iduplicable_duplicate ( const NAIDuplicable *object, guint mode );
void na_iduplicable_check_status ( const NAIDuplicable *object );
NAIDuplicable *na_iduplicable_get_origin ( const NAIDuplicable *object );
gboolean na_iduplicable_is_valid ( const NAIDuplicable *object );
gboolean na_iduplicable_is_modified ( const NAIDuplicable *object );
void na_iduplicable_set_origin ( NAIDuplicable *object, const NAIDuplicable *origin );
void na_iduplicable_register_consumer( GObject *consumer );
#ifdef NA_ENABLE_DEPRECATED
void na_iduplicable_set_modified( NAIDuplicable *object, gboolean modified );
#endif
G_END_DECLS
#endif /* __CAJA_ACTIONS_API_NA_IDUPLICABLE_H__ */
|