Desktop

/* $Id: gsm.h,v 1.10 2010/04/27 02:58:33 khorben Exp $ */
/* Copyright (c) 2010 Pierre Pronchery <khorben@defora.org> */
/* This file is part of DeforaOS Desktop Phone */
/* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. */
#ifndef PHONE_GSM_H
# define PHONE_GSM_H
/* GSM */
/* types */
typedef enum _GSMCallType
{
GSM_CALL_TYPE_DATA, GSM_CALL_TYPE_VOICE
} GSMCallType;
typedef enum _GSMEventType
{
GSM_EVENT_TYPE_ERROR = 0,
GSM_EVENT_TYPE_SIGNAL_LEVEL,
GSM_EVENT_TYPE_STATUS
} GSMEventType;
typedef enum _GSMError
{
GSM_ERROR_UNKNOWN = 0
} GSMError;
typedef enum _GSMStatus
{
GSM_STATUS_INITIALIZED = 0, GSM_STATUS_REGISTERED
} GSMStatus;
typedef union _GSMEvent
{
GSMEventType type;
struct
{
GSMEventType type;
GSMError error;
char const * message;
} error;
struct
{
GSMEventType type;
gdouble level;
} signal_level;
struct
{
GSMEventType type;
GSMStatus status;
} status;
} GSMEvent;
typedef void (*GSMCallback)(GSMEvent * event, gpointer data);
typedef struct _GSM GSM;
/* functions */
GSM * gsm_new(char const * device, unsigned int baudrate);
void gsm_delete(GSM * gsm);
/* accessors */
void gsm_set_callback(GSM * gsm, GSMCallback callback, gpointer data);
unsigned int gsm_get_retry(GSM * gsm);
void gsm_set_retry(GSM * gsm, unsigned int retry);
/* useful */
int gsm_call(GSM * gsm, GSMCallType calltype, char const * number);
int gsm_hangup(GSM * gsm);
int gsm_report_contacts(GSM * gsm);
int gsm_report_messages(GSM * gsm);
int gsm_report_signal_level(GSM * gsm);
void gsm_reset(GSM * gsm, unsigned int delay);
#endif /* !PHONE_GSM_H */