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
|
/* base model for a client regions on an imageview
*/
/*
Copyright (C) 1991-2003 The National Gallery
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, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
*/
#define TYPE_IREGIONGROUP (iregiongroup_get_type())
#define IREGIONGROUP( obj ) \
(G_TYPE_CHECK_INSTANCE_CAST( (obj), TYPE_IREGIONGROUP, iRegiongroup ))
#define IREGIONGROUP_CLASS( klass ) \
(G_TYPE_CHECK_CLASS_CAST( (klass), \
TYPE_IREGIONGROUP, iRegiongroupClass))
#define IS_IREGIONGROUP( obj ) \
(G_TYPE_CHECK_INSTANCE_TYPE( (obj), TYPE_IREGIONGROUP ))
#define IS_IREGIONGROUP_CLASS( klass ) \
(G_TYPE_CHECK_CLASS_TYPE( (klass), TYPE_IREGIONGROUP ))
#define IREGIONGROUP_GET_CLASS( obj ) \
(G_TYPE_INSTANCE_GET_CLASS( (obj), \
TYPE_IREGIONGROUP, iRegiongroupClass ))
struct _iRegiongroup {
Classmodel parent_class;
};
typedef struct _iRegiongroupClass {
ClassmodelClass parent_class;
/* My methods.
*/
} iRegiongroupClass;
GType iregiongroup_get_type( void );
iRegiongroup *iregiongroup_new( Classmodel *classmodel );
|