AgsOscStatusController

AgsOscStatusController — OSC status controller

Functions

Signals

Types and Values

Object Hierarchy

    GObject
    ╰── AgsOscController
        ╰── AgsOscStatusController

Includes

#include <ags/audio/osc/controller/ags_osc_status_controller.h>

Description

The AgsOscStatusController implements the OSC status controller.

Functions

ags_osc_status_controller_get_status ()

gpointer
ags_osc_status_controller_get_status (AgsOscStatusController *osc_status_controller,
                                      AgsOscConnection *osc_connection,
                                      guchar *message,
                                      guint message_size);

Get status.

Parameters

osc_status_controller

the AgsOscStatusController

 

osc_connection

the AgsOscConnection

 

message

the message received

 

message_size

the message size

 

Returns

the GList containing AgsOscResponse

Since: 3.0.0


ags_osc_status_controller_new ()

AgsOscStatusController *
ags_osc_status_controller_new ();

Instantiate new AgsOscStatusController

Since: 3.0.0


AGS_IS_OSC_STATUS_CONTROLLER()

#define AGS_IS_OSC_STATUS_CONTROLLER(obj)             (G_TYPE_CHECK_INSTANCE_TYPE ((obj), AGS_TYPE_OSC_STATUS_CONTROLLER))

AGS_IS_OSC_STATUS_CONTROLLER_CLASS()

#define AGS_IS_OSC_STATUS_CONTROLLER_CLASS(class)     (G_TYPE_CHECK_CLASS_TYPE ((class), AGS_TYPE_OSC_STATUS_CONTROLLER))

AGS_OSC_STATUS_CONTROLLER()

#define AGS_OSC_STATUS_CONTROLLER(obj)                (G_TYPE_CHECK_INSTANCE_CAST((obj), AGS_TYPE_OSC_STATUS_CONTROLLER, AgsOscStatusController))

AGS_OSC_STATUS_CONTROLLER_CLASS()

#define AGS_OSC_STATUS_CONTROLLER_CLASS(class)        (G_TYPE_CHECK_CLASS_CAST(class, AGS_TYPE_OSC_STATUS_CONTROLLER, AgsOscStatusControllerClass))

AGS_OSC_STATUS_CONTROLLER_GET_CLASS()

#define AGS_OSC_STATUS_CONTROLLER_GET_CLASS(obj)      (G_TYPE_INSTANCE_GET_CLASS(obj, AGS_TYPE_OSC_STATUS_CONTROLLER, AgsOscStatusControllerClass))

ags_osc_status_controller_get_type ()

GType
ags_osc_status_controller_get_type ();

Types and Values

AGS_TYPE_OSC_STATUS_CONTROLLER

#define AGS_TYPE_OSC_STATUS_CONTROLLER                (ags_osc_status_controller_get_type())

struct AgsOscStatusController

struct AgsOscStatusController;

struct AgsOscStatusControllerClass

struct AgsOscStatusControllerClass {
  AgsOscControllerClass osc_controller;

  gpointer (*get_status)(AgsOscStatusController *osc_status_controller,
			 AgsOscConnection *osc_connection,
			 guchar *message, guint message_size);
};

Signal Details

The “get-status” signal

gpointer
user_function (AgsOscStatusController *osc_status_controller,
               GObject                *osc_connection,
               gpointer                message,
               guint                   message_size,
               gpointer                user_data)

The ::get-status signal is emited during get status of status controller.

Parameters

osc_status_controller

the AgsOscStatusController

 

osc_connection

the AgsOscConnection

 

message

the message received

 

message_size

the message size

 

user_data

user data set when the signal handler was connected.

 

Returns

the AgsOscResponse

Flags: Run Last

Since: 3.0.0