| Top |
| #define | AGS_OSC_FRONT_CONTROLLER_MESSAGE() |
| gboolean | ags_osc_front_controller_test_flags () |
| void | ags_osc_front_controller_set_flags () |
| void | ags_osc_front_controller_unset_flags () |
| gint | ags_osc_front_controller_message_sort_func () |
| AgsOscFrontControllerMessage * | ags_osc_front_controller_message_alloc () |
| void | ags_osc_front_controller_message_free () |
| void | ags_osc_front_controller_add_message () |
| void | ags_osc_front_controller_remove_message () |
| void | ags_osc_front_controller_start_delegate () |
| void | ags_osc_front_controller_stop_delegate () |
| gpointer | ags_osc_front_controller_do_request () |
| AgsOscFrontController * | ags_osc_front_controller_new () |
| #define | AGS_IS_OSC_FRONT_CONTROLLER() |
| #define | AGS_OSC_FRONT_CONTROLLER() |
| #define | AGS_OSC_FRONT_CONTROLLER_CLASS() |
| #define | AGS_OSC_FRONT_CONTROLLER_GET_CLASS() |
| GType | ags_osc_front_controller_get_type () |
| enum | AgsOscFrontControllerFlags |
| struct | AgsOscFrontControllerMessage |
| #define | AGS_TYPE_OSC_FRONT_CONTROLLER |
| struct | AgsOscFrontController |
| struct | AgsOscFrontControllerClass |
#define AGS_OSC_FRONT_CONTROLLER_MESSAGE(ptr) ((AgsOscFrontControllerMessage *)(ptr))
gboolean ags_osc_front_controller_test_flags (AgsOscFrontController *osc_front_controller,guint flags);
Test flags
to be set on osc_front_controller
.
Since: 2.1.0
void ags_osc_front_controller_set_flags (AgsOscFrontController *osc_front_controller,guint flags);
Set flags.
Since: 2.1.0
void ags_osc_front_controller_unset_flags (AgsOscFrontController *osc_front_controller,guint flags);
Unset flags.
Since: 2.1.0
gint ags_osc_front_controller_message_sort_func (gconstpointer a,gconstpointer b);
Compare a
and b
in view of timing.
Since: 2.1.0
AgsOscFrontControllerMessage * ags_osc_front_controller_message_alloc ();
Allocate AgsOscFrontControllerMessage.
Since: 2.1.0
void
ags_osc_front_controller_message_free (AgsOscFrontControllerMessage *message);
Free message
.
Since: 2.1.0
void ags_osc_front_controller_add_message (AgsOscFrontController *osc_front_controller,AgsOscFrontControllerMessage *message);
Add message
to osc_front_contrller
.
Since: 2.1.0
void ags_osc_front_controller_remove_message (AgsOscFrontController *osc_front_controller,AgsOscFrontControllerMessage *message);
Remove message
from osc_front_contrller
.
Since: 2.1.0
void
ags_osc_front_controller_start_delegate
(AgsOscFrontController *osc_front_controller);
Start delegateing.
Since: 2.1.0
void
ags_osc_front_controller_stop_delegate
(AgsOscFrontController *osc_front_controller);
Stop delegateing.
Since: 2.1.0
gpointer ags_osc_front_controller_do_request (AgsOscFrontController *osc_front_controller,AgsOscConnection *osc_connection,unsigned char *packet,guint packet_size);
AgsOscFrontController * ags_osc_front_controller_new ();
Instantiate new AgsOscFrontController
Since: 2.1.0
#define AGS_IS_OSC_FRONT_CONTROLLER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), AGS_TYPE_OSC_FRONT_CONTROLLER))
#define AGS_OSC_FRONT_CONTROLLER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), AGS_TYPE_OSC_FRONT_CONTROLLER, AgsOscFrontController))
#define AGS_OSC_FRONT_CONTROLLER_CLASS(class) (G_TYPE_CHECK_CLASS_CAST(class, AGS_TYPE_OSC_FRONT_CONTROLLER, AgsOscFrontControllerClass))
#define AGS_OSC_FRONT_CONTROLLER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS(obj, AGS_TYPE_OSC_FRONT_CONTROLLER, AgsOscFrontControllerClass))
struct AgsOscFrontControllerMessage {
AgsOscConnection *osc_connection;
gint32 tv_sec;
gint32 tv_fraction;
gboolean immediately;
guint message_size;
unsigned char *message;
};
#define AGS_TYPE_OSC_FRONT_CONTROLLER (ags_osc_front_controller_get_type())
struct AgsOscFrontControllerClass {
AgsOscControllerClass osc_controller;
void (*start_delegate)(AgsOscFrontController *osc_front_controller);
void (*stop_delegate)(AgsOscFrontController *osc_front_controller);
gpointer (*do_request)(AgsOscFrontController *osc_front_controller,
AgsOscConnection *osc_connection,
unsigned char *packet, guint packet_size);
};
“do-request” signalgpointer user_function (AgsOscFrontController *osc_front_controller, GObject *osc_connection, gpointer packet, guint packet_size, gpointer user_data)
The ::do-request signal is emited during do request of front controller.
osc_front_controller |
||
osc_connection |
the AgsOscConnection |
|
packet |
the packet received |
|
packet_size |
the packet size |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run Last
Since: 2.1.0
“start-delegate” signalvoid user_function (AgsOscFrontController *osc_front_controller, gpointer user_data)
The ::start-delegate signal is emited during start of delegateing front.
Flags: Run Last
Since: 2.1.0
“stop-delegate” signalvoid user_function (AgsOscFrontController *osc_front_controller, gpointer user_data)
The ::stop-delegate signal is emited during stop of delegateing front.
Flags: Run Last
Since: 2.1.0