Top |
#define | AGS_LINE_PLUGIN() |
gboolean | ags_line_test_flags () |
void | ags_line_set_flags () |
void | ags_line_unset_flags () |
AgsLinePlugin * | ags_line_plugin_alloc () |
void | ags_line_plugin_free () |
void | ags_line_samplerate_changed () |
void | ags_line_buffer_size_changed () |
void | ags_line_format_changed () |
void | ags_line_set_channel () |
void | ags_line_group_changed () |
GList * | ags_line_get_line_member () |
void | ags_line_add_line_member () |
void | ags_line_remove_line_member () |
GList * | ags_line_get_effect_separator () |
void | ags_line_add_effect_separator () |
void | ags_line_remove_effect_separator () |
void | ags_line_add_plugin () |
void | ags_line_remove_plugin () |
void | ags_line_map_recall () |
GList * | ags_line_find_port () |
void | ags_line_refresh_port () |
void | ags_line_stop () |
GList * | ags_line_find_next_grouped () |
void | ags_line_check_message () |
gboolean | ags_line_indicator_refresh_timeout () |
AgsLine * | ags_line_new () |
#define | AGS_LINE_DEFAULT_VERSION |
#define | AGS_LINE_DEFAULT_BUILD_ID |
#define | AGS_LINE_COLUMNS_COUNT |
#define | AGS_LINE_SEPARATOR_FILENAME |
#define | AGS_LINE_SEPARATOR_EFFECT |
enum | AgsLineFlags |
struct | AgsLinePlugin |
AgsLine is a composite widget to visualize AgsChannel. It should be packed by an AgsPad. It may contain AgsLineMember to modify ports of AgsRecall.
gboolean ags_line_test_flags (AgsLine *line
,guint flags
);
Test flags
of line
.
Since: 4.5.0
void ags_line_set_flags (AgsLine *line
,guint flags
);
Set flags
of line
.
Since: 4.5.0
void ags_line_unset_flags (AgsLine *line
,guint flags
);
Unset flags
of line
.
Since: 4.5.0
AgsLinePlugin * ags_line_plugin_alloc (AgsRecallContainer *play_container
,AgsRecallContainer *recall_container
,gchar *plugin_name
,gchar *filename
,gchar *effect
);
Allocate AgsLinePlugin.
play_container |
the AgsRecallContainer |
|
recall_container |
the AgsRecallContainer |
|
plugin_name |
the plugin name |
|
filename |
the filename as string |
|
effect |
the effect as string |
Since: 3.3.0
void
ags_line_plugin_free (AgsLinePlugin *line_plugin
);
Free line_plugin
.
Since: 3.3.0
void ags_line_samplerate_changed (AgsLine *line
,guint samplerate
,guint old_samplerate
);
Notify about samplerate changed.
Since: 3.0.0
void ags_line_buffer_size_changed (AgsLine *line
,guint buffer_size
,guint old_buffer_size
);
Notify about buffer_size changed.
Since: 3.0.0
void ags_line_format_changed (AgsLine *line
,guint format
,guint old_format
);
Notify about format changed.
Since: 3.0.0
void ags_line_set_channel (AgsLine *line
,AgsChannel *channel
);
Is emitted as channel gets modified.
Since: 3.0.0
void
ags_line_group_changed (AgsLine *line
);
Is emitted as group is changed.
Since: 3.0.0
GList *
ags_line_get_line_member (AgsLine *line
);
Get line member of line
.
Since: 4.0.0
void ags_line_add_line_member (AgsLine *line
,AgsLineMember *line_member
,guint x
,guint y
,guint width
,guint height
);
Add line_member
to line
.
line |
the AgsLine |
|
line_member |
the AgsLineMember |
|
x |
the x position |
|
y |
the y position |
|
width |
the width |
|
height |
the height |
Since: 4.0.0
void ags_line_remove_line_member (AgsLine *line
,AgsLineMember *line_member
);
Remove line_member
from line
.
Since: 4.0.0
GList *
ags_line_get_effect_separator (AgsLine *line
);
Get line member of line
.
Since: 4.0.0
void ags_line_add_effect_separator (AgsLine *line
,AgsEffectSeparator *effect_separator
,guint x
,guint y
,guint width
,guint height
);
Add effect_separator
to line
.
line |
the AgsLine |
|
effect_separator |
the AgsEffectSeparator |
|
x |
the x position |
|
y |
the y position |
|
width |
the width |
|
height |
the height |
Since: 4.0.0
void ags_line_remove_effect_separator (AgsLine *line
,AgsEffectSeparator *effect_separator
);
Remove effect_separator
from line
.
Since: 4.0.0
void ags_line_add_plugin (AgsLine *line
,GList *control_type_name
,AgsRecallContainer *play_container
,AgsRecallContainer *recall_container
,gchar *plugin_name
,gchar *filename
,gchar *effect
,guint start_audio_channel
,guint stop_audio_channel
,guint start_pad
,guint stop_pad
,gint position
,guint create_flags
,guint recall_flags
);
Add an effect by its filename and effect specifier.
line |
the AgsLine to modify |
|
control_type_name |
the GList containing string representation of a GType |
|
play_container |
an AgsRecallContainer to indetify what recall to use |
|
recall_container |
an AgsRecallContainer to indetify what recall to use |
|
plugin_name |
the plugin identifier |
|
filename |
the effect's filename |
|
effect |
the effect's name |
|
start_audio_channel |
the first audio channel to apply |
|
stop_audio_channel |
the last audio channel to apply |
|
start_pad |
the first pad to apply |
|
stop_pad |
the last pad to apply |
|
position |
the position to insert the recall |
|
create_flags |
modify the behaviour of this function |
|
recall_flags |
flags to be set for AgsRecall |
Since: 3.0.0
void ags_line_remove_plugin (AgsLine *line
,guint nth
);
Remove an effect by its position.
Since: 3.0.0
void ags_line_map_recall (AgsLine *line
,guint output_pad_start
);
Is emitted as group is changed.
Since: 3.0.0
GList *
ags_line_find_port (AgsLine *line
);
Lookup ports of assigned recalls.
Since: 3.0.0
void
ags_line_refresh_port (AgsLine *line
);
Notify about to refresh ports.
Since: 4.2.2
void ags_line_stop (AgsLine *line
,GList *recall_id
,gint sound_scope
);
Notify about to stop playback of recall_id
.
Since: 3.0.0
GList *
ags_line_find_next_grouped (GList *line
);
Retrieve next grouped line.
Since: 3.0.0
void
ags_line_check_message (AgsLine *line
);
Check message queue for message envelopes.
Since: 3.0.0
gboolean
ags_line_indicator_refresh_timeout (GtkWidget *widget
);
AgsLine * ags_line_new (GtkWidget *parent_pad
,AgsChannel *channel
);
Create a new instance of AgsLine
Since: 3.0.0