/usr/include/libinstpatch-1.0/libinstpatch/IpatchVBankRegion.h is in libinstpatch-dev 1.0.0-6.
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 | /*
* 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: IpatchVBankRegion
* @short_description: Virtual bank instrument region
* @see_also: #IpatchVBankInst, #IpatchVBank
* @stability: Stable
*
* Virtual bank regions are children to #IpatchVBankInst objects and reference
* synthesizable #IpatchItem objects from other files. This object forms the
* bases for constructing new instruments from one or more items in other
* instrument bank files.
*/
#ifndef __IPATCH_VBANK_REGION_H__
#define __IPATCH_VBANK_REGION_H__
#include <glib.h>
#include <glib-object.h>
#include <libinstpatch/IpatchItem.h>
#include <libinstpatch/IpatchRange.h>
/* forward type declarations */
typedef struct _IpatchVBankRegion IpatchVBankRegion;
typedef struct _IpatchVBankRegionClass IpatchVBankRegionClass;
#define IPATCH_TYPE_VBANK_REGION (ipatch_vbank_region_get_type ())
#define IPATCH_VBANK_REGION(obj) \
(G_TYPE_CHECK_INSTANCE_CAST ((obj), IPATCH_TYPE_VBANK_REGION, \
IpatchVBankRegion))
#define IPATCH_VBANK_REGION_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST ((klass), IPATCH_TYPE_VBANK_REGION, \
IpatchVBankRegionClass))
#define IPATCH_IS_VBANK_REGION(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), IPATCH_TYPE_VBANK_REGION))
#define IPATCH_IS_VBANK_REGION_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE ((klass), IPATCH_TYPE_VBANK_REGION))
#define IPATCH_VBANK_REGION_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS ((obj), IPATCH_TYPE_VBANK_REGION, \
IpatchVBankRegionClass))
/* Virtual bank region */
struct _IpatchVBankRegion
{
IpatchItem parent_instance;
/*< private >*/
IpatchItem *item; /* Referenced item or NULL (if unresolved) */
char **id_props; /* prop/val pairs which ID item or NULL (if resolved) */
guint file_index; /* Index of file in IpatchVBank parent (if unresolved) */
IpatchRange note_range; /* MIDI note range of this region */
guint8 note_range_mode; /* #IpatchVBankRegionNoteRangeMode */
gint8 root_note; /* MIDI root note value */
guint8 root_note_mode; /* #IpatchVBankRegionRootNoteMode */
};
struct _IpatchVBankRegionClass
{
IpatchItemClass parent_class;
};
/**
* IpatchVBankNoteRangeMode:
* @IPATCH_VBANK_REGION_NOTE_RANGE_MODE_INTERSECT: Note range is applied as an
* intersection with existing voice note ranges (only those notes shared by
* both ranges will become the final range, a logic AND operation).
* @IPATCH_VBANK_REGION_NOTE_RANGE_MODE_ASSIGN: Note range of all voices is
* overridden by new range.
*
* Determines mode in which a virtual bank region's note range is applied to the
* affected synthesis voices.
*/
typedef enum
{
IPATCH_VBANK_REGION_NOTE_RANGE_MODE_INTERSECT = 0,
IPATCH_VBANK_REGION_NOTE_RANGE_MODE_OVERRIDE = 1
} IpatchVBankRegionNoteRangeMode;
/**
* IpatchVBankRootNoteMode:
* @IPATCH_VBANK_REGION_ROOT_NOTE_MODE_OFFSET: Offset the root note parameters of
* affected synthesis voices by a given signed integer amount.
* @IPATCH_VBANK_REGION_ROOT_NOTE_MODE_OVERRIDE: Override root note parameters of
* affected synthesis voices.
*/
typedef enum
{
IPATCH_VBANK_REGION_ROOT_NOTE_MODE_OFFSET = 0,
IPATCH_VBANK_REGION_ROOT_NOTE_MODE_OVERRIDE = 1
} IpatchVBankRegionRootNoteMode;
GType ipatch_vbank_region_get_type (void);
IpatchVBankRegion *ipatch_vbank_region_new (void);
IpatchVBankRegion *ipatch_vbank_region_first (IpatchIter *iter);
IpatchVBankRegion *ipatch_vbank_region_next (IpatchIter *iter);
void ipatch_vbank_region_set_id_props (IpatchVBankRegion *region,
char **id_props);
char **ipatch_vbank_region_get_id_props (IpatchVBankRegion *region,
guint *n_elements);
#endif
|