| libmm-glib Reference Manual | ||||
|---|---|---|---|---|
| Top | Description | Object Hierarchy | Prerequisites | Known Implementations | Properties | Signals | ||||
MmGdbusCallMmGdbusCall — Generated C code for the org.freedesktop.ModemManager1.Call D-Bus interface |
MmGdbusCall; struct MmGdbusCallIface; gint mm_gdbus_call_get_direction (MmGdbusCall *object); const gchar * mm_gdbus_call_get_number (MmGdbusCall *object); gchar * mm_gdbus_call_dup_number (MmGdbusCall *object); gint mm_gdbus_call_get_state (MmGdbusCall *object); gint mm_gdbus_call_get_state_reason (MmGdbusCall *object); void mm_gdbus_call_emit_dtmf_received (MmGdbusCall *object,const gchar *arg_dtmf); void mm_gdbus_call_emit_state_changed (MmGdbusCall *object,gint arg_old,gint arg_new,guint arg_reason); void mm_gdbus_call_call_accept (MmGdbusCall *proxy,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data); gboolean mm_gdbus_call_call_accept_finish (MmGdbusCall *proxy,GAsyncResult *res,GError **error); gboolean mm_gdbus_call_call_accept_sync (MmGdbusCall *proxy,GCancellable *cancellable,GError **error); void mm_gdbus_call_call_start (MmGdbusCall *proxy,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data); gboolean mm_gdbus_call_call_start_finish (MmGdbusCall *proxy,GAsyncResult *res,GError **error); gboolean mm_gdbus_call_call_start_sync (MmGdbusCall *proxy,GCancellable *cancellable,GError **error); void mm_gdbus_call_call_hangup (MmGdbusCall *proxy,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data); gboolean mm_gdbus_call_call_hangup_finish (MmGdbusCall *proxy,GAsyncResult *res,GError **error); gboolean mm_gdbus_call_call_hangup_sync (MmGdbusCall *proxy,GCancellable *cancellable,GError **error); void mm_gdbus_call_call_send_dtmf (MmGdbusCall *proxy,const gchar *arg_dtmf,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data); gboolean mm_gdbus_call_call_send_dtmf_finish (MmGdbusCall *proxy,GAsyncResult *res,GError **error); gboolean mm_gdbus_call_call_send_dtmf_sync (MmGdbusCall *proxy,const gchar *arg_dtmf,GCancellable *cancellable,GError **error);
MmGdbusCall is implemented by MMCall, MmGdbusCallProxy and MmGdbusCallSkeleton.
"direction" gint : Read / Write "number" gchar* : Read / Write "state" gint : Read / Write "state-reason" gint : Read / Write
"dtmf-received" :Run Last"handle-accept" :Run Last"handle-hangup" :Run Last"handle-send-dtmf" :Run Last"handle-start" :Run Last"state-changed" :Run Last
This section contains code for working with the org.freedesktop.ModemManager1.Call D-Bus interface in C.
typedef struct _MmGdbusCall MmGdbusCall;
Abstract interface type for the D-Bus interface org.freedesktop.ModemManager1.Call.
struct MmGdbusCallIface {
GTypeInterface parent_iface;
gboolean (*handle_accept) (
MmGdbusCall *object,
GDBusMethodInvocation *invocation);
gboolean (*handle_hangup) (
MmGdbusCall *object,
GDBusMethodInvocation *invocation);
gboolean (*handle_send_dtmf) (
MmGdbusCall *object,
GDBusMethodInvocation *invocation,
const gchar *arg_dtmf);
gboolean (*handle_start) (
MmGdbusCall *object,
GDBusMethodInvocation *invocation);
gint (*get_direction) (MmGdbusCall *object);
const gchar * (*get_number) (MmGdbusCall *object);
gint (*get_state) (MmGdbusCall *object);
gint (*get_state_reason) (MmGdbusCall *object);
void (*dtmf_received) (
MmGdbusCall *object,
const gchar *arg_dtmf);
void (*state_changed) (
MmGdbusCall *object,
gint arg_old,
gint arg_new,
guint arg_reason);
};
Virtual table for the D-Bus interface org.freedesktop.ModemManager1.Call.
| The parent interface. | |
| Handler for the "handle-accept" signal. | |
| Handler for the "handle-hangup" signal. | |
| Handler for the "handle-send-dtmf" signal. | |
| Handler for the "handle-start" signal. | |
| Getter for the "direction" property. | |
| Getter for the "number" property. | |
| Getter for the "state" property. | |
| Getter for the "state-reason" property. | |
| Handler for the "dtmf-received" signal. | |
| Handler for the "state-changed" signal. |
gint mm_gdbus_call_get_direction (MmGdbusCall *object);
Gets the value of the "Direction" D-Bus property.
Since this D-Bus property is readable, it is meaningful to use this function on both the client- and service-side.
|
A MmGdbusCall. |
Returns : |
The property value. |
const gchar * mm_gdbus_call_get_number (MmGdbusCall *object);
Gets the value of the "Number" D-Bus property.
Since this D-Bus property is readable, it is meaningful to use this function on both the client- and service-side.
object was constructed. Use mm_gdbus_call_dup_number() if on another thread.
|
A MmGdbusCall. |
Returns : |
The property value or NULL if the property is not set. Do not free the returned value, it belongs to object. [transfer none]
|
gchar * mm_gdbus_call_dup_number (MmGdbusCall *object);
Gets a copy of the "Number" D-Bus property.
Since this D-Bus property is readable, it is meaningful to use this function on both the client- and service-side.
|
A MmGdbusCall. |
Returns : |
The property value or NULL if the property is not set. The returned value should be freed with g_free(). [transfer full]
|
gint mm_gdbus_call_get_state (MmGdbusCall *object);
Gets the value of the "State" D-Bus property.
Since this D-Bus property is readable, it is meaningful to use this function on both the client- and service-side.
|
A MmGdbusCall. |
Returns : |
The property value. |
gint mm_gdbus_call_get_state_reason (MmGdbusCall *object);
Gets the value of the "StateReason" D-Bus property.
Since this D-Bus property is readable, it is meaningful to use this function on both the client- and service-side.
|
A MmGdbusCall. |
Returns : |
The property value. |
void mm_gdbus_call_emit_dtmf_received (MmGdbusCall *object,const gchar *arg_dtmf);
Emits the "DtmfReceived" D-Bus signal.
|
A MmGdbusCall. |
|
Argument to pass with the signal. |
void mm_gdbus_call_emit_state_changed (MmGdbusCall *object,gint arg_old,gint arg_new,guint arg_reason);
Emits the "StateChanged" D-Bus signal.
|
A MmGdbusCall. |
|
Argument to pass with the signal. |
|
Argument to pass with the signal. |
|
Argument to pass with the signal. |
void mm_gdbus_call_call_accept (MmGdbusCall *proxy,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data);
Asynchronously invokes the Accept()proxy.
When the operation is finished, callback will be invoked in the thread-default main loop of the thread you are calling this method from.
You can then call mm_gdbus_call_call_accept_finish() to get the result of the operation.
See mm_gdbus_call_call_accept_sync() for the synchronous, blocking version of this method.
|
A MmGdbusCallProxy. |
|
A GCancellable or NULL. [allow-none]
|
|
A GAsyncReadyCallback to call when the request is satisfied or NULL. |
|
User data to pass to callback. |
gboolean mm_gdbus_call_call_accept_finish (MmGdbusCall *proxy,GAsyncResult *res,GError **error);
Finishes an operation started with mm_gdbus_call_call_accept().
|
A MmGdbusCallProxy. |
|
The GAsyncResult obtained from the GAsyncReadyCallback passed to mm_gdbus_call_call_accept(). |
|
Return location for error or NULL. |
Returns : |
TRUE if the call succeded, FALSE if error is set. [skip]
|
gboolean mm_gdbus_call_call_accept_sync (MmGdbusCall *proxy,GCancellable *cancellable,GError **error);
Synchronously invokes the Accept()proxy. The calling thread is blocked until a reply is received.
See mm_gdbus_call_call_accept() for the asynchronous version of this method.
|
A MmGdbusCallProxy. |
|
A GCancellable or NULL. [allow-none]
|
|
Return location for error or NULL. |
Returns : |
TRUE if the call succeded, FALSE if error is set. [skip]
|
void mm_gdbus_call_call_start (MmGdbusCall *proxy,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data);
Asynchronously invokes the Start()proxy.
When the operation is finished, callback will be invoked in the thread-default main loop of the thread you are calling this method from.
You can then call mm_gdbus_call_call_start_finish() to get the result of the operation.
See mm_gdbus_call_call_start_sync() for the synchronous, blocking version of this method.
|
A MmGdbusCallProxy. |
|
A GCancellable or NULL. [allow-none]
|
|
A GAsyncReadyCallback to call when the request is satisfied or NULL. |
|
User data to pass to callback. |
gboolean mm_gdbus_call_call_start_finish (MmGdbusCall *proxy,GAsyncResult *res,GError **error);
Finishes an operation started with mm_gdbus_call_call_start().
|
A MmGdbusCallProxy. |
|
The GAsyncResult obtained from the GAsyncReadyCallback passed to mm_gdbus_call_call_start(). |
|
Return location for error or NULL. |
Returns : |
TRUE if the call succeded, FALSE if error is set. [skip]
|
gboolean mm_gdbus_call_call_start_sync (MmGdbusCall *proxy,GCancellable *cancellable,GError **error);
Synchronously invokes the Start()proxy. The calling thread is blocked until a reply is received.
See mm_gdbus_call_call_start() for the asynchronous version of this method.
|
A MmGdbusCallProxy. |
|
A GCancellable or NULL. [allow-none]
|
|
Return location for error or NULL. |
Returns : |
TRUE if the call succeded, FALSE if error is set. [skip]
|
void mm_gdbus_call_call_hangup (MmGdbusCall *proxy,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data);
Asynchronously invokes the Hangup()proxy.
When the operation is finished, callback will be invoked in the thread-default main loop of the thread you are calling this method from.
You can then call mm_gdbus_call_call_hangup_finish() to get the result of the operation.
See mm_gdbus_call_call_hangup_sync() for the synchronous, blocking version of this method.
|
A MmGdbusCallProxy. |
|
A GCancellable or NULL. [allow-none]
|
|
A GAsyncReadyCallback to call when the request is satisfied or NULL. |
|
User data to pass to callback. |
gboolean mm_gdbus_call_call_hangup_finish (MmGdbusCall *proxy,GAsyncResult *res,GError **error);
Finishes an operation started with mm_gdbus_call_call_hangup().
|
A MmGdbusCallProxy. |
|
The GAsyncResult obtained from the GAsyncReadyCallback passed to mm_gdbus_call_call_hangup(). |
|
Return location for error or NULL. |
Returns : |
TRUE if the call succeded, FALSE if error is set. [skip]
|
gboolean mm_gdbus_call_call_hangup_sync (MmGdbusCall *proxy,GCancellable *cancellable,GError **error);
Synchronously invokes the Hangup()proxy. The calling thread is blocked until a reply is received.
See mm_gdbus_call_call_hangup() for the asynchronous version of this method.
|
A MmGdbusCallProxy. |
|
A GCancellable or NULL. [allow-none]
|
|
Return location for error or NULL. |
Returns : |
TRUE if the call succeded, FALSE if error is set. [skip]
|
void mm_gdbus_call_call_send_dtmf (MmGdbusCall *proxy,const gchar *arg_dtmf,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data);
Asynchronously invokes the SendDtmf()proxy.
When the operation is finished, callback will be invoked in the thread-default main loop of the thread you are calling this method from.
You can then call mm_gdbus_call_call_send_dtmf_finish() to get the result of the operation.
See mm_gdbus_call_call_send_dtmf_sync() for the synchronous, blocking version of this method.
|
A MmGdbusCallProxy. |
|
Argument to pass with the method invocation. |
|
A GCancellable or NULL. [allow-none]
|
|
A GAsyncReadyCallback to call when the request is satisfied or NULL. |
|
User data to pass to callback. |
gboolean mm_gdbus_call_call_send_dtmf_finish (MmGdbusCall *proxy,GAsyncResult *res,GError **error);
Finishes an operation started with mm_gdbus_call_call_send_dtmf().
|
A MmGdbusCallProxy. |
|
The GAsyncResult obtained from the GAsyncReadyCallback passed to mm_gdbus_call_call_send_dtmf(). |
|
Return location for error or NULL. |
Returns : |
TRUE if the call succeded, FALSE if error is set. [skip]
|
gboolean mm_gdbus_call_call_send_dtmf_sync (MmGdbusCall *proxy,const gchar *arg_dtmf,GCancellable *cancellable,GError **error);
Synchronously invokes the SendDtmf()proxy. The calling thread is blocked until a reply is received.
See mm_gdbus_call_call_send_dtmf() for the asynchronous version of this method.
|
A MmGdbusCallProxy. |
|
Argument to pass with the method invocation. |
|
A GCancellable or NULL. [allow-none]
|
|
Return location for error or NULL. |
Returns : |
TRUE if the call succeded, FALSE if error is set. [skip]
|
"direction" property "direction" gint : Read / Write
Represents the D-Bus property "Direction".
Since the D-Bus property for this GObject property is readable but not writable, it is meaningful to read from it on both the client- and service-side. It is only meaningful, however, to write to it on the service-side.
Default value: 0
"number" property "number" gchar* : Read / Write
Represents the D-Bus property "Number".
Since the D-Bus property for this GObject property is readable but not writable, it is meaningful to read from it on both the client- and service-side. It is only meaningful, however, to write to it on the service-side.
Default value: NULL
"state" property "state" gint : Read / Write
Represents the D-Bus property "State".
Since the D-Bus property for this GObject property is readable but not writable, it is meaningful to read from it on both the client- and service-side. It is only meaningful, however, to write to it on the service-side.
Default value: 0
"state-reason" property "state-reason" gint : Read / Write
Represents the D-Bus property "StateReason".
Since the D-Bus property for this GObject property is readable but not writable, it is meaningful to read from it on both the client- and service-side. It is only meaningful, however, to write to it on the service-side.
Default value: 0
"dtmf-received" signalvoid user_function (MmGdbusCall *object,
gchar *arg_dtmf,
gpointer user_data) : Run Last
On the client-side, this signal is emitted whenever the D-Bus signal "DtmfReceived" is received.
On the service-side, this signal can be used with e.g. g_signal_emit_by_name() to make the object emit the D-Bus signal.
|
A MmGdbusCall. |
|
Argument. |
|
user data set when the signal handler was connected. |
"handle-accept" signalgboolean user_function (MmGdbusCall *object,
GDBusMethodInvocation *invocation,
gpointer user_data) : Run Last
Signal emitted when a remote caller is invoking the Accept()
If a signal handler returns TRUE, it means the signal handler will handle the invocation (e.g. take a reference to invocation and eventually call mm_gdbus_call_complete_accept() or e.g. g_dbus_method_invocation_return_error() on it) and no order signal handlers will run. If no signal handler handles the invocation, the G_DBUS_ERROR_UNKNOWN_METHOD error is returned.
|
A MmGdbusCall. |
|
A GDBusMethodInvocation. |
|
user data set when the signal handler was connected. |
Returns : |
TRUE if the invocation was handled, FALSE to let other signal handlers run. |
"handle-hangup" signalgboolean user_function (MmGdbusCall *object,
GDBusMethodInvocation *invocation,
gpointer user_data) : Run Last
Signal emitted when a remote caller is invoking the Hangup()
If a signal handler returns TRUE, it means the signal handler will handle the invocation (e.g. take a reference to invocation and eventually call mm_gdbus_call_complete_hangup() or e.g. g_dbus_method_invocation_return_error() on it) and no order signal handlers will run. If no signal handler handles the invocation, the G_DBUS_ERROR_UNKNOWN_METHOD error is returned.
|
A MmGdbusCall. |
|
A GDBusMethodInvocation. |
|
user data set when the signal handler was connected. |
Returns : |
TRUE if the invocation was handled, FALSE to let other signal handlers run. |
"handle-send-dtmf" signalgboolean user_function (MmGdbusCall *object,
GDBusMethodInvocation *invocation,
gchar *arg_dtmf,
gpointer user_data) : Run Last
Signal emitted when a remote caller is invoking the SendDtmf()
If a signal handler returns TRUE, it means the signal handler will handle the invocation (e.g. take a reference to invocation and eventually call mm_gdbus_call_complete_send_dtmf() or e.g. g_dbus_method_invocation_return_error() on it) and no order signal handlers will run. If no signal handler handles the invocation, the G_DBUS_ERROR_UNKNOWN_METHOD error is returned.
|
A MmGdbusCall. |
|
A GDBusMethodInvocation. |
|
Argument passed by remote caller. |
|
user data set when the signal handler was connected. |
Returns : |
TRUE if the invocation was handled, FALSE to let other signal handlers run. |
"handle-start" signalgboolean user_function (MmGdbusCall *object,
GDBusMethodInvocation *invocation,
gpointer user_data) : Run Last
Signal emitted when a remote caller is invoking the Start()
If a signal handler returns TRUE, it means the signal handler will handle the invocation (e.g. take a reference to invocation and eventually call mm_gdbus_call_complete_start() or e.g. g_dbus_method_invocation_return_error() on it) and no order signal handlers will run. If no signal handler handles the invocation, the G_DBUS_ERROR_UNKNOWN_METHOD error is returned.
|
A MmGdbusCall. |
|
A GDBusMethodInvocation. |
|
user data set when the signal handler was connected. |
Returns : |
TRUE if the invocation was handled, FALSE to let other signal handlers run. |
"state-changed" signalvoid user_function (MmGdbusCall *object,
gint arg_old,
gint arg_new,
guint arg_reason,
gpointer user_data) : Run Last
On the client-side, this signal is emitted whenever the D-Bus signal "StateChanged" is received.
On the service-side, this signal can be used with e.g. g_signal_emit_by_name() to make the object emit the D-Bus signal.
|
A MmGdbusCall. |
|
Argument. |
|
Argument. |
|
Argument. |
|
user data set when the signal handler was connected. |