/* $Id: gps.c,v 1.1 2012/10/03 23:57:34 khorben Exp $ */ /* Copyright (c) 2012 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 . */ #include #include #include #include "Phone.h" #include "hayes.h" /* GPS */ /* private */ /* types */ typedef struct _PhonePlugin { PhonePluginHelper * helper; /* widgets */ GtkWidget * window; } GPS; /* prototypes */ /* plugins */ static GPS * _gps_init(PhonePluginHelper * helper); static void _gps_destroy(GPS * gps); static void _gps_settings(GPS * gps); static void _gps_queue(GPS * gps, char const * command); /* callbacks */ static void _gps_on_settings_close(gpointer data); static void _gps_on_settings_start(gpointer data); static void _gps_on_settings_stop(gpointer data); /* public */ /* variables */ PhonePluginDefinition plugin = { "GPS", NULL, NULL, _gps_init, _gps_destroy, NULL, _gps_settings }; /* private */ /* functions */ /* gps_init */ static GPS * _gps_init(PhonePluginHelper * helper) { GPS * gps; if((gps = object_new(sizeof(*gps))) == NULL) return NULL; gps->helper = helper; gps->window = NULL; return gps; } /* gps_destroy */ static void _gps_destroy(GPS * gps) { if(gps->window != NULL) gtk_widget_destroy(gps->window); object_delete(gps); } /* gps_settings */ static void _settings_window(GPS * gps); static void _gps_settings(GPS * gps) { if(gps->window == NULL) _settings_window(gps); gtk_window_present(GTK_WINDOW(gps->window)); } static void _settings_window(GPS * gps) { GtkSizeGroup * group; GtkWidget * vbox; GtkWidget * hbox; GtkWidget * widget; group = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); gps->window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_container_set_border_width(GTK_CONTAINER(gps->window), 4); gtk_window_set_default_size(GTK_WINDOW(gps->window), 200, 300); #if GTK_CHECK_VERSION(2, 6, 0) gtk_window_set_icon_name(GTK_WINDOW(gps->window), "gnome-settings"); #endif gtk_window_set_title(GTK_WINDOW(gps->window), "GPS"); g_signal_connect(gps->window, "delete-event", G_CALLBACK( gtk_widget_hide), NULL); vbox = gtk_vbox_new(FALSE, 4); /* controls */ hbox = gtk_hbutton_box_new(); widget = gtk_button_new_with_label("Start"); g_signal_connect_swapped(widget, "clicked", G_CALLBACK(_gps_on_settings_start), gps); gtk_container_add(GTK_CONTAINER(hbox), widget); widget = gtk_button_new_with_label("Stop"); g_signal_connect_swapped(widget, "clicked", G_CALLBACK(_gps_on_settings_stop), gps); gtk_container_add(GTK_CONTAINER(hbox), widget); gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, TRUE, 0); /* button box */ hbox = gtk_hbutton_box_new(); gtk_button_box_set_layout(GTK_BUTTON_BOX(hbox), GTK_BUTTONBOX_END); gtk_button_box_set_spacing(GTK_BUTTON_BOX(hbox), 4); widget = gtk_button_new_from_stock(GTK_STOCK_CLOSE); g_signal_connect_swapped(widget, "clicked", G_CALLBACK( _gps_on_settings_close), gps); gtk_container_add(GTK_CONTAINER(hbox), widget); gtk_box_pack_end(GTK_BOX(vbox), hbox, FALSE, TRUE, 0); gtk_container_add(GTK_CONTAINER(gps->window), vbox); gtk_widget_show_all(vbox); } /* gps_queue */ static void _gps_queue(GPS * gps, char const * command) { ModemRequest request; HayesRequest hrequest; request.type = MODEM_REQUEST_UNSUPPORTED; request.unsupported.modem = "Hayes"; request.unsupported.request_type = HAYES_REQUEST_COMMAND_QUEUE; request.unsupported.request = &hrequest; request.unsupported.size = sizeof(hrequest); hrequest.command_queue.command = command; gps->helper->request(gps->helper->phone, &request); } /* callbacks */ /* gps_on_settings_close */ static void _gps_on_settings_close(gpointer data) { GPS * gps = data; gtk_widget_hide(gps->window); } /* gps_on_settings_start */ static void _gps_on_settings_start(gpointer data) { GPS * gps = data; _gps_queue(gps, "AT^WPDGP"); } /* gps_on_settings_stop */ static void _gps_on_settings_stop(gpointer data) { GPS * gps = data; _gps_queue(gps, "AT^WPDEND"); }