Top | ![]() |
![]() |
![]() |
![]() |
AgsEffectLineAgsEffectLine — A composite widget to visualize a bunch of AgsChannel |
void | ags_effect_line_set_channel () |
GList * | ags_effect_line_add_effect () |
void | ags_effect_line_remove_effect () |
void | ags_effect_line_map_recall () |
GList * | ags_effect_line_find_port () |
GList * | ags_effect_line_find_next_grouped () |
gboolean | ags_effect_line_indicator_queue_draw_timeout () |
AgsEffectLine * | ags_effect_line_new () |
#define | AGS_EFFECT_LINE() |
#define | AGS_EFFECT_LINE_CLASS() |
#define | AGS_EFFECT_LINE_GET_CLASS() |
#define | AGS_IS_EFFECT_LINE() |
GType | ags_effect_line_get_type () |
gpointer | add-effect | Run Last |
gpointer | find-port | Run Last |
void | map-recall | Run Last |
void | remove-effect | Run Last |
#define | AGS_EFFECT_LINE_DEFAULT_VERSION |
#define | AGS_EFFECT_LINE_DEFAULT_BUILD_ID |
#define | AGS_EFFECT_LINE_COLUMNS_COUNT |
#define | AGS_EFFECT_LINE_SEPARATOR_FILENAME |
#define | AGS_EFFECT_LINE_SEPARATOR_EFFECT |
enum | AgsEffectLineFlags |
#define | AGS_TYPE_EFFECT_LINE |
struct | AgsEffectLine |
struct | AgsEffectLineClass |
GObject ╰── GInitiallyUnowned ╰── GtkObject ╰── GtkWidget ╰── GtkContainer ╰── GtkBox ╰── GtkVBox ╰── AgsEffectLine ╰── AgsFFPlayerInputLine
AgsEffectLine implements AtkImplementorIface, GtkBuildable, GtkOrientable, AgsConnectable and AgsPlugin.
AgsEffectLine is a composite widget to visualize one AgsChannel. It should be packed by an AgsEffectLine.
void ags_effect_line_set_channel (AgsEffectLine *effect_line
,AgsChannel *channel
);
GList * ags_effect_line_add_effect (AgsEffectLine *effect_line
,GList *control_type_name
,gchar *filename
,gchar *effect
);
Add an effect by its filename and effect specifier.
effect_line |
the AgsEffectLine to modify |
|
control_type_name |
the string representation of a GType |
|
filename |
the effect's filename |
|
effect |
the effect's name |
Since: 0.7.42
void ags_effect_line_remove_effect (AgsEffectLine *effect_line
,guint nth
);
Remove an effect by its position.
Since: 0.7.42
void ags_effect_line_map_recall (AgsEffectLine *effect_line
,guint output_pad_start
);
You may want the effect_line
to add its default recall. This function
may call ags_effect_line_find_port()
.
effect_line |
the AgsEffectLine to add its default recall. |
|
output_pad_start |
the start channel's index |
Since: 0.7.42
GList *
ags_effect_line_find_port (AgsEffectLine *effect_line
);
Lookup ports of associated recalls.
Since: 0.7.8
GList *
ags_effect_line_find_next_grouped (GList *line
);
Retrieve next grouped effect_line.
Since: 0.4
gboolean
ags_effect_line_indicator_queue_draw_timeout
(GtkWidget *widget
);
Queue draw widget
Since: 0.7.128
AgsEffectLine *
ags_effect_line_new (AgsChannel *channel
);
Creates an AgsEffectLine
Since: 0.4
#define AGS_EFFECT_LINE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), AGS_TYPE_EFFECT_LINE, AgsEffectLine))
#define AGS_EFFECT_LINE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST((class), AGS_TYPE_EFFECT_LINE, AgsEffectLineClass))
#define AGS_EFFECT_LINE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), AGS_TYPE_EFFECT_LINE, AgsEffectLineClass))
#define AGS_IS_EFFECT_LINE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), AGS_TYPE_EFFECT_LINE))
#define AGS_EFFECT_LINE_SEPARATOR_FILENAME "ags-effect-line-separator-filename\0"
#define AGS_EFFECT_LINE_SEPARATOR_EFFECT "ags-effect-line-separator-effect\0"
struct AgsEffectLineClass { GtkVBoxClass vbox; void (*set_channel)(AgsEffectLine *effect_line, AgsChannel *channel); GList* (*add_effect)(AgsEffectLine *effect_line, GList *control_type_name, gchar *filename, gchar *effect); void (*remove_effect)(AgsEffectLine *effect_line, guint nth); void (*map_recall)(AgsEffectLine *effect_line, guint output_pad_start); GList* (*find_port)(AgsEffectLine *effect_line); };
“channel”
property“channel” AgsChannel *
The start of a bunch of AgsChannel to visualize.
Flags: Read / Write
Since: 0.4
“add-effect”
signalgpointer user_function (AgsEffectLine *effect_line, gpointer control_type_name, gchar *filename, gchar *effect, gpointer user_data)
The ::add-effect signal notifies about added effect.
effect_line |
the AgsEffectLine to modify |
|
control_type_name |
the string representation of a GType |
|
filename |
the effect's filename |
|
effect |
the effect's name |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run Last
Since: 0.7.42
“find-port”
signalgpointer user_function (AgsEffectLine *effect_line, gpointer user_data)
effect_line |
the AgsEffectLine to resize |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run Last
Since: 0.7.8
“map-recall”
signalvoid user_function (AgsEffectLine *effect_line, guint output_pad_start, gpointer user_data)
The ::map-recall should be used to add the effect_line's default recall. This function
may call ags_effect_line_find_port()
.
effect_line |
the AgsEffectLine |
|
output_pad_start |
the channel's start pad |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run Last
Since: 0.7.42
“remove-effect”
signalvoid user_function (AgsEffectLine *effect_line, guint nth, gpointer user_data)
The ::remove-effect signal notifies about removed effect.
effect_line |
the AgsEffectLine to modify |
|
nth |
the nth effect |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run Last
Since: 0.7.42