Top | ![]() |
![]() |
![]() |
![]() |
AgsEffectBridgeAgsEffectBridge — A composite widget to visualize a bunch of AgsChannel |
void | ags_effect_bridge_resize_audio_channels () |
void | ags_effect_bridge_resize_pads () |
void | ags_effect_bridge_map_recall () |
GList * | ags_effect_bridge_find_port () |
AgsEffectBridge * | ags_effect_bridge_new () |
#define | AGS_EFFECT_BRIDGE() |
#define | AGS_EFFECT_BRIDGE_CLASS() |
#define | AGS_EFFECT_BRIDGE_GET_CLASS() |
#define | AGS_IS_EFFECT_BRIDGE() |
GType | ags_effect_bridge_get_type () |
gpointer | find-port | Run Last |
void | map-recall | Run Last |
void | resize-audio-channels | Run Last |
void | resize-pads | Run Last |
#define | AGS_EFFECT_BRIDGE_DEFAULT_VERSION |
#define | AGS_EFFECT_BRIDGE_DEFAULT_BUILD_ID |
#define | AGS_EFFECT_BRIDGE_MAX_COLUMNS |
enum | AgsEffectBridgeFlags |
#define | AGS_TYPE_EFFECT_BRIDGE |
struct | AgsEffectBridge |
struct | AgsEffectBridgeClass |
GObject ╰── GInitiallyUnowned ╰── GtkObject ╰── GtkWidget ╰── GtkContainer ╰── GtkBox ╰── GtkVBox ╰── AgsEffectBridge ├── AgsFFPlayerBridge ╰── AgsMatrixBridge
AgsEffectBridge implements AtkImplementorIface, GtkBuildable, GtkOrientable, AgsConnectable and AgsPlugin.
AgsEffectBridge is a composite widget containing AgsEffectBulk or AgsEffectPad. It should be packed by an AgsMachine.
void ags_effect_bridge_resize_audio_channels (AgsEffectBridge *effect_bridge
,guint new_size
,guint old_size
);
Resize audio channel allocation.
Since: 0.7.0
void ags_effect_bridge_resize_pads (AgsEffectBridge *effect_bridge
,GType channel_type
,guint new_size
,guint old_size
);
Resize pad allocation.
effect_bridge |
the AgsEffectBridge |
|
channel_type |
the channel GType |
|
new_size |
new allocation |
|
old_size |
old allocation |
Since: 0.7.0
void
ags_effect_bridge_map_recall (AgsEffectBridge *effect_bridge
);
You may want the effect_bridge
to add its default recall.
GList *
ags_effect_bridge_find_port (AgsEffectBridge *effect_bridge
);
Since: 0.7.8
AgsEffectBridge *
ags_effect_bridge_new (AgsAudio *audio
);
Creates an AgsEffectBridge
Since: 0.7.0
#define AGS_EFFECT_BRIDGE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), AGS_TYPE_EFFECT_BRIDGE, AgsEffectBridge))
#define AGS_EFFECT_BRIDGE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST((class), AGS_TYPE_EFFECT_BRIDGE, AgsEffectBridgeClass))
#define AGS_EFFECT_BRIDGE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), AGS_TYPE_EFFECT_BRIDGE, AgsEffectBridgeClass))
#define AGS_IS_EFFECT_BRIDGE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), AGS_TYPE_EFFECT_BRIDGE))
#define AGS_EFFECT_BRIDGE_DEFAULT_BUILD_ID "CEST 01-03-2016 00:23\0"
struct AgsEffectBridgeClass { GtkVBoxClass vbox; void (*resize_audio_channels)(AgsEffectBridge *effect_bridge, guint new_size, guint old_size); void (*resize_pads)(AgsEffectBridge *effect_bridge, GType channel_type, guint new_size, guint old_size); void (*map_recall)(AgsEffectBridge *effect_bridge); GList* (*find_port)(AgsEffectBridge *effect_bridge); };
“find-port”
signalgpointer user_function (AgsEffectBridge *effect_bridge, gpointer user_data)
effect_bridge |
the AgsEffectBridge to resize |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run Last
“map-recall”
signalvoid user_function (AgsEffectBridge *effect_bridge, gpointer user_data)
The ::map-recall should be used to add the effect_bridge's default recall.
effect_bridge |
the AgsEffectBridge |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run Last
“resize-audio-channels”
signalvoid user_function (AgsEffectBridge *effect_bridge, guint channel, guint new_size, gpointer user_data)
The ::resize-audio-channels signal notifies about changed channel allocation within audio.
effect_bridge |
the AgsEffectBridge to modify |
|
channel |
the AgsChannel to set |
|
new_size |
the new size |
|
old_size |
the old size |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run Last
“resize-pads”
signalvoid user_function (AgsEffectBridge *effect_bridge, gulong channel, guint channel_type, guint new_size, gpointer user_data)
The ::resize-pads signal notifies about changed channel allocation within audio.
effect_bridge |
the AgsEffectBridge to modify |
|
channel |
the AgsChannel to set |
|
channel_type |
either |
|
new_size |
the new size |
|
old_size |
the old size |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run Last