Top | ![]() |
![]() |
![]() |
![]() |
AgsPadAgsPad — A composite widget to visualize a bunch of AgsChannel |
void | ags_pad_set_channel () |
void | ags_pad_resize_lines () |
void | ags_pad_map_recall () |
GList * | ags_pad_find_port () |
void | ags_pad_play () |
AgsPad * | ags_pad_new () |
#define | AGS_IS_PAD() |
#define | AGS_PAD() |
#define | AGS_PAD_CLASS() |
#define | AGS_PAD_GET_CLASS() |
GType | ags_pad_get_type () |
gpointer | find-port | Run Last |
void | map-recall | Run Last |
void | resize-lines | Run Last |
void | set-channel | Run Last |
#define | AGS_PAD_DEFAULT_VERSION |
#define | AGS_PAD_DEFAULT_BUILD_ID |
enum | AgsPadFlags |
#define | AGS_TYPE_PAD |
struct | AgsPad |
struct | AgsPadClass |
GObject ╰── GInitiallyUnowned ╰── GtkObject ╰── GtkWidget ╰── GtkContainer ╰── GtkBox ╰── GtkVBox ╰── AgsPad ├── AgsDrumInputPad ├── AgsDrumOutputPad ├── AgsMixerInputPad ├── AgsPanelInputPad ╰── AgsSynthInputPad
AgsPad implements AtkImplementorIface, GtkBuildable, GtkOrientable, AgsConnectable and AgsPlugin.
AgsPad is a composite widget to visualize a bunch of AgsChannel. It should be packed by an AgsMachine.
void ags_pad_set_channel (AgsPad *pad
,AgsChannel *channel
);
Is emitted as channel gets modified.
Since: 0.3
void ags_pad_resize_lines (AgsPad *pad
,GType line_type
,guint audio_channels
,guint audio_channels_old
);
Resize the count of AgsLine packe by AgsPad.
pad |
the AgsPad to resize |
|
line_type |
channel type, either |
|
audio_channels |
count of lines |
|
audio_channels_old |
old count of lines |
Since: 0.3
void ags_pad_map_recall (AgsPad *pad
,guint output_pad_start
);
Start of output pad
Since: 0.4
GList *
ags_pad_find_port (AgsPad *pad
);
Lookup ports of assigned recalls.
Since: 0.4
#define AGS_PAD_CLASS(class) (G_TYPE_CHECK_CLASS_CAST((class), AGS_TYPE_PAD, AgsPadClass))
#define AGS_PAD_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), AGS_TYPE_PAD, AgsPadClass))
struct AgsPadClass { GtkVBoxClass vbox; void (*set_channel)(AgsPad *pad, AgsChannel *channel); void (*resize_lines)(AgsPad *pad, GType line_type, guint audio_channels, guint audio_channels_old); void (*map_recall)(AgsPad *pad, guint output_pad_start); GList* (*find_port)(AgsPad *pad); };
“channel”
property“channel” AgsChannel *
The start of a bunch of AgsChannel to visualize.
Flags: Read / Write
Since: 0.4
“map-recall”
signalvoid user_function (AgsPad *pad, guint output_pad_start, gpointer user_data)
The ::map-recall as recall should be mapped
pad |
the AgsPad to resize |
|
output_pad_start |
start of output pad |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run Last
“resize-lines”
signalvoid user_function (AgsPad *pad, gulong line_type, guint audio_channels, guint audio_channels_old, gpointer user_data)
The ::resize-lines is emitted as count of lines pack is modified.
pad |
the AgsPad to resize |
|
line_type |
the channel type |
|
audio_channels |
count of lines |
|
audio_channels_old |
old count of lines |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run Last
“set-channel”
signalvoid user_function (AgsPad *pad, GObject *channel, gpointer user_data)
The ::set-channel signal notifies about changed channel.
pad |
the AgsPad to modify |
|
channel |
the AgsChannel to set |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run Last