/usr/include/libinstpatch-1.0/libinstpatch/IpatchSF2GenItem.h is in libinstpatch-dev 1.0.0-3.
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 | /*
* libInstPatch
* Copyright (C) 1999-2010 Joshua "Element" Green <jgreen@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; version 2.1
* of the License only.
*
* 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser 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 or on the web at http://www.gnu.org.
*/
/**
* SECTION: IpatchSF2GenItem
* @short_description: SoundFont generator item interface
* @see_also: #IpatchSF2Preset, #IpatchSF2Inst, #IpatchSF2PZone, #IpatchSF2IZone
* @stability: Stable
*
* Provides an interface for items which have SoundFont generator properties.
* SoundFont generators are synthesis parameters used by #IpatchSF2Preset,
* #IpatchSF2Inst, #IpatchSF2PZone and #IpatchSF2IZone objects.
*/
#ifndef __IPATCH_SF2_GEN_ITEM_H__
#define __IPATCH_SF2_GEN_ITEM_H__
#include <glib.h>
#include <glib-object.h>
#include <libinstpatch/IpatchItem.h>
#include <libinstpatch/IpatchSF2Gen.h>
/* for generator properties (zones, instruments, and presets) */
#define IPATCH_SF2_GEN_ITEM_FIRST_PROP_ID 1 /* first gen prop */
#define IPATCH_SF2_GEN_ITEM_FIRST_PROP_SET_ID 80 /* first gen-set prop */
#define IPATCH_SF2_GEN_ITEM_FIRST_PROP_USER_ID 160 /* first ID usable for other properties */
/* forward type declarations */
typedef IpatchItem IpatchSF2GenItem;
typedef struct _IpatchSF2GenItemIface IpatchSF2GenItemIface;
#define IPATCH_TYPE_SF2_GEN_ITEM (ipatch_sf2_gen_item_get_type ())
#define IPATCH_SF2_GEN_ITEM(obj) \
(G_TYPE_CHECK_INSTANCE_CAST ((obj), IPATCH_TYPE_SF2_GEN_ITEM, \
IpatchSF2GenItem))
#define IPATCH_SF2_GEN_ITEM_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST ((klass), IPATCH_TYPE_SF2_GEN_ITEM, \
IpatchSF2GenItemIface))
#define IPATCH_IS_SF2_GEN_ITEM(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), IPATCH_TYPE_SF2_GEN_ITEM))
#define IPATCH_SF2_GEN_ITEM_GET_IFACE(obj) \
(G_TYPE_INSTANCE_GET_INTERFACE ((obj), IPATCH_TYPE_SF2_GEN_ITEM, \
IpatchSF2GenItemIface))
/* generator item interface */
struct _IpatchSF2GenItemIface
{
GTypeInterface parent_iface;
/*< public >*/
IpatchSF2GenPropsType propstype; /* gen properties type for this class */
guint genarray_ofs; /* offset in item instance to generator array pointer */
GParamSpec *specs[IPATCH_SF2_GEN_COUNT]; /* genid -> prop pspec array */
GParamSpec *setspecs[IPATCH_SF2_GEN_COUNT]; /* genid -> "-set" prop pspec array */
};
GType ipatch_sf2_gen_item_get_type (void);
gboolean ipatch_sf2_gen_item_get_amount (IpatchSF2GenItem *item, guint genid,
IpatchSF2GenAmount *out_amt);
void ipatch_sf2_gen_item_set_amount (IpatchSF2GenItem *item, guint genid,
IpatchSF2GenAmount *amt);
void ipatch_sf2_gen_item_set_gen_flag (IpatchSF2GenItem *item, guint genid,
gboolean setflag);
guint ipatch_sf2_gen_item_count_set (IpatchSF2GenItem *item);
void ipatch_sf2_gen_item_copy_all (IpatchSF2GenItem *item,
IpatchSF2GenArray *array);
void ipatch_sf2_gen_item_copy_set (IpatchSF2GenItem *item,
IpatchSF2GenArray *array);
void ipatch_sf2_gen_item_set_note_range (IpatchSF2GenItem *item, int low, int high);
void ipatch_sf2_gen_item_set_velocity_range (IpatchSF2GenItem *item, int low, int high);
gboolean ipatch_sf2_gen_item_in_range (IpatchSF2GenItem *item, int note, int velocity);
gboolean ipatch_sf2_gen_item_intersect_test (IpatchSF2GenItem *item,
const IpatchSF2GenArray *genarray);
GParamSpec *ipatch_sf2_gen_item_class_get_pspec (GObjectClass *klass, guint genid);
GParamSpec *ipatch_sf2_gen_item_class_get_pspec_set (GObjectClass *klass, guint genid);
void
ipatch_sf2_gen_item_iface_install_properties (GObjectClass *klass,
IpatchSF2GenPropsType propstype,
GParamSpec ***specs,
GParamSpec ***setspecs);
gboolean
ipatch_sf2_gen_item_iface_set_property (IpatchSF2GenItem *item,
guint property_id, const GValue *value);
gboolean
ipatch_sf2_gen_item_iface_get_property (IpatchSF2GenItem *item,
guint property_id, GValue *value);
#endif
|