/* $Id: phone.h,v 1.11 2010/04/29 16:09:15 khorben Exp $ */ /* Copyright (c) 2010 Pierre Pronchery */ /* 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 . */ #ifndef PHONE_PHONE_H # define PHONE_PHONE_H # include /* Phone */ /* types */ typedef struct _Phone Phone; typedef enum _PhoneCode { PHONE_CODE_SIM_PIN = 0 } PhoneCode; /* functions */ Phone * phone_new(char const * device, unsigned int baudrate, int retry); void phone_delete(Phone * phone); /* useful */ int phone_error(Phone * phone, char const * message, int ret); /* interface */ void phone_show_code(Phone * phone, gboolean show, ...); void phone_show_contacts(Phone * phone, gboolean show); void phone_show_dialer(Phone * phone, gboolean show); void phone_show_messages(Phone * phone, gboolean show); /* code */ int phone_code_append(Phone * phone, char character); void phone_code_clear(Phone * phone); void phone_code_enter(Phone * phone); /* contacts */ void phone_contacts_add(Phone * phone, unsigned int index, char const * name, char const * number); void phone_contacts_call_selected(Phone * phone); void phone_contacts_write_selected(Phone * phone); /* messages */ void phone_messages_write(Phone * phone, char const * number, char const * text); /* dialer */ void phone_call(Phone * phone, char const * number); void phone_hangup(Phone * phone); int phone_dialer_append(Phone * phone, char character); #endif /* !PHONE_PHONE_H */