AgsEffectLine

AgsEffectLine — A composite widget to visualize a bunch of AgsChannel

Functions

Properties

AgsChannel * channel Read / Write

Signals

Types and Values

Object Hierarchy

    GObject
    ╰── GInitiallyUnowned
        ╰── GtkObject
            ╰── GtkWidget
                ╰── GtkContainer
                    ╰── GtkBox
                        ╰── GtkVBox
                            ╰── AgsEffectLine
                                ╰── AgsFFPlayerInputLine

Implemented Interfaces

AgsEffectLine implements AtkImplementorIface, GtkBuildable, GtkOrientable, AgsConnectable and AgsPlugin.

Includes

#include <ags/X/ags_effect_line.h>

Description

AgsEffectLine is a composite widget to visualize one AgsChannel. It should be packed by an AgsEffectLine.

Functions

ags_effect_line_set_channel ()

void
ags_effect_line_set_channel (AgsEffectLine *effect_line,
                             AgsChannel *channel);


ags_effect_line_add_effect ()

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.

Parameters

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

 

Returns

the GList containing the AgsPort objects added

Since: 0.7.42


ags_effect_line_remove_effect ()

void
ags_effect_line_remove_effect (AgsEffectLine *effect_line,
                               guint nth);

Remove an effect by its position.

Parameters

effect_line

the AgsEffectLine to modify

 

nth

the nth effect to remove

 

Since: 0.7.42


ags_effect_line_map_recall ()

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().

Parameters

effect_line

the AgsEffectLine to add its default recall.

 

output_pad_start

the start channel's index

 

Since: 0.7.42


ags_effect_line_find_port ()

GList *
ags_effect_line_find_port (AgsEffectLine *effect_line);

Lookup ports of associated recalls.

Parameters

effect_line

the AgsEffectLine

 

Returns

an GList containing all related AgsPort

Since: 0.7.8


ags_effect_line_new ()

AgsEffectLine *
ags_effect_line_new (AgsChannel *channel);

Creates an AgsEffectLine

Parameters

channel

the AgsChannel to visualize

 

Returns

a new AgsEffectLine

Since: 0.4

Types and Values

AGS_EFFECT_LINE_DEFAULT_VERSION

#define AGS_EFFECT_LINE_DEFAULT_VERSION "0.7.8\0"


AGS_EFFECT_LINE_DEFAULT_BUILD_ID

#define AGS_EFFECT_LINE_DEFAULT_BUILD_ID "CEST 01-03-2016 00:23\0"


AGS_EFFECT_LINE_COLUMNS_COUNT

#define AGS_EFFECT_LINE_COLUMNS_COUNT (2)


enum AgsEffectLineFlags

Members

AGS_EFFECT_LINE_CONNECTED

   

AGS_EFFECT_LINE_MAPPED_RECALL

   

AGS_EFFECT_LINE_PREMAPPED_RECALL

   

Property Details

The “channel” property

  “channel”                  AgsChannel *

The channel it is assigned with.

Flags: Read / Write

Since: 0.4

Signal Details

The “add-effect” signal

gpointer
user_function (AgsEffectLine *effect_line,
               gpointer       control_type_name,
               gchar         *filename,
               gchar         *effect,
               gpointer       user_data)

Flags: Run Last

Since: 0.7.42


The “find-port” signal

gpointer
user_function (AgsEffectLine *effect_line,
               gpointer       user_data)

Flags: Run Last

Since: 0.7.8


The “map-recall” signal

void
user_function (AgsEffectLine *effect_line,
               guint          output_pad_start,
               gpointer       user_data)

Flags: Run Last

Since: 0.7.42


The “remove-effect” signal

void
user_function (AgsEffectLine *effect_line,
               guint          nth,
               gpointer       user_data)

Flags: Run Last

Since: 0.7.42