Top | ![]() |
![]() |
![]() |
![]() |
#define | AGS_PLUGIN_PORT_GET_OBJ_MUTEX() |
pthread_mutex_t * | ags_plugin_port_get_class_mutex () |
gboolean | ags_plugin_port_test_flags () |
void | ags_plugin_port_set_flags () |
void | ags_plugin_port_unset_flags () |
GList * | ags_plugin_port_find_symbol () |
GList * | ags_plugin_port_find_port_index () |
AgsPluginPort * | ags_plugin_port_new () |
#define | AGS_IS_PLUGIN_PORT() |
#define | AGS_PLUGIN_PORT() |
#define | AGS_PLUGIN_PORT_CLASS() |
#define | AGS_PLUGIN_PORT_GET_CLASS() |
GType | ags_plugin_port_get_type () |
gpointer | default-value | Read / Write |
gpointer | lower-value | Read / Write |
guint | port-index | Read / Write |
gchar * | port-name | Read / Write |
gchar * | port-symbol | Read / Write |
gpointer | scale-point | Read |
gint | scale-steps | Read / Write |
gpointer | scale-value | Read |
gpointer | upper-value | Read / Write |
enum | AgsPluginPortFlags |
#define | AGS_TYPE_PLUGIN_PORT |
struct | AgsPluginPort |
struct | AgsPluginPortClass |
The AgsPluginPort describes a plugin's port. For real ports used by the processing tree please take a look at AgsPort.
#define AGS_PLUGIN_PORT_GET_OBJ_MUTEX(obj) (((AgsPluginPort *) obj)->obj_mutex)
pthread_mutex_t *
ags_plugin_port_get_class_mutex ();
Use this function's returned mutex to access mutex fields.
Since: 2.0.0
gboolean ags_plugin_port_test_flags (AgsPluginPort *plugin_port
,guint flags
);
Test flags
to be set on plugin_port
.
Since: 2.0.0
void ags_plugin_port_set_flags (AgsPluginPort *plugin_port
,guint flags
);
Set flags
on plugin_port
.
Since: 2.0.0
void ags_plugin_port_unset_flags (AgsPluginPort *plugin_port
,guint flags
);
Unset flags
on plugin_port
.
Since: 2.0.0
GList * ags_plugin_port_find_symbol (GList *plugin_port
,gchar *port_symbol
);
Find port_symbol
within plugin_port
.
Since: 2.0.0
GList * ags_plugin_port_find_port_index (GList *plugin_port
,guint port_index
);
Find port_index
within plugin_port
.
Since: 2.2.7
AgsPluginPort * ags_plugin_port_new ();
Creates an AgsPluginPort
Since: 2.0.0
#define AGS_IS_PLUGIN_PORT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), AGS_TYPE_PLUGIN_PORT))
#define AGS_PLUGIN_PORT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), AGS_TYPE_PLUGIN_PORT, AgsPluginPort))
#define AGS_PLUGIN_PORT_CLASS(class) (G_TYPE_CHECK_CLASS_CAST((class), AGS_TYPE_PLUGIN_PORT, AgsPluginPortClass))
#define AGS_PLUGIN_PORT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), AGS_TYPE_PLUGIN_PORT, AgsPluginPortClass))
Common port attributes.
“default-value”
property“default-value” gpointer
The default value.
Flags: Read / Write
Since: 2.0.0
“port-index”
property“port-index” guint
The assigned port-index.
Flags: Read / Write
Default value: 0
Since: 2.0.0
“port-name”
property“port-name” gchar *
The port's name.
Flags: Read / Write
Default value: NULL
Since: 2.0.0
“port-symbol”
property“port-symbol” gchar *
The port's symbol.
Flags: Read / Write
Default value: NULL
Since: 2.0.0
“scale-point”
property“scale-point” gpointer
The scale point string vector.
Flags: Read
Since: 2.0.0
“scale-steps”
property“scale-steps” gint
The number of scale steps.
Flags: Read / Write
Allowed values: >= -1
Default value: 0
Since: 2.0.0