]> err.no Git - mapper/blob - src/gps-browse.c
Use globaly set _GNU_SOURCE
[mapper] / src / gps-browse.c
1 /*
2  * This file is part of mapper
3  *
4  * Copyright (C) 2007 Kaj-Michael Lang
5  * Copyright (C) 2006-2007 John Costigan.
6  *
7  * POI and GPS-Info code originally written by Cezary Jackiewicz.
8  *
9  * Default map data provided by http://www.openstreetmap.org/
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License along
22  * with this program; if not, write to the Free Software Foundation, Inc.,
23  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24  */
25
26 #include <config.h>
27 #include <unistd.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <strings.h>
31 #include <stddef.h>
32 #include <errno.h>
33 #include <sys/wait.h>
34 #include <glib/gstdio.h>
35 #include <gtk/gtk.h>
36 #include <fcntl.h>
37 #include <gconf/gconf-client.h>
38
39 #include <libintl.h>
40 #include <locale.h>
41
42 #include <sqlite3.h>
43
44 #ifdef WITH_HILDON_DBUS_BT
45 #include <bt-dbus.h>
46 #endif
47
48 #include "utils.h"
49 #include "mapper-types.h"
50 #include "bt.h"
51
52 /**
53  * Scan for all bluetooth devices.  This method can take a few seconds,
54  * during which the UI will freeze.
55  */
56 gboolean scan_bluetooth(GtkWidget * widget, ScanInfo * scan_info)
57 {
58         GError *error = NULL;
59         GtkWidget *dialog;
60         GtkWidget *lst_devices;
61         GtkTreeViewColumn *column;
62         GtkCellRenderer *renderer;
63         printf("%s()\n", __PRETTY_FUNCTION__);
64
65         dialog = gtk_dialog_new_with_buttons(_("Select Bluetooth Device"),
66                                              GTK_WINDOW(scan_info->
67                                                         settings_dialog),
68                                              GTK_DIALOG_MODAL, GTK_STOCK_OK,
69                                              GTK_RESPONSE_ACCEPT,
70                                              GTK_STOCK_CANCEL,
71                                              GTK_RESPONSE_REJECT, NULL);
72
73         scan_info->scan_dialog = dialog;
74
75         scan_info->store = gtk_list_store_new(2, G_TYPE_STRING, G_TYPE_STRING);
76
77         gtk_window_set_default_size(GTK_WINDOW(dialog), 500, 300);
78
79         gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),
80                            lst_devices =
81                            gtk_tree_view_new_with_model(GTK_TREE_MODEL
82                                                         (scan_info->store)),
83                            TRUE, TRUE, 0);
84
85         g_object_unref(G_OBJECT(scan_info->store));
86
87         gtk_tree_selection_set_mode(gtk_tree_view_get_selection
88                                     (GTK_TREE_VIEW(lst_devices)),
89                                     GTK_SELECTION_SINGLE);
90         gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(lst_devices), TRUE);
91
92         renderer = gtk_cell_renderer_text_new();
93         column = gtk_tree_view_column_new_with_attributes(_("MAC"), renderer, "text",
94                                                      0, NULL);
95         gtk_tree_view_append_column(GTK_TREE_VIEW(lst_devices), column);
96
97         renderer = gtk_cell_renderer_text_new();
98         column = gtk_tree_view_column_new_with_attributes(_("Description"), renderer,
99                                                      "text", 1, NULL);
100         gtk_tree_view_append_column(GTK_TREE_VIEW(lst_devices), column);
101
102         gtk_widget_show_all(dialog);
103
104         scan_info->banner = hildon_banner_show_animation(dialog, NULL,
105                                                          _("Scanning for Bluetooth Devices"));
106
107         if (scan_start_search(scan_info)) {
108                 gtk_widget_destroy(scan_info->banner);
109                 popup_error(scan_info->settings_dialog,
110                             _("An error occurred while attempting to scan for "
111                               "bluetooth devices."));
112         } else
113                 while (GTK_RESPONSE_ACCEPT == gtk_dialog_run(GTK_DIALOG(dialog))) {
114                         GtkTreeIter iter;
115                         if (gtk_tree_selection_get_selected
116                             (gtk_tree_view_get_selection
117                              (GTK_TREE_VIEW(lst_devices)), NULL, &iter)) {
118                                 gchar *mac;
119                                 gtk_tree_model_get(GTK_TREE_MODEL
120                                                    (scan_info->store), &iter, 0,
121                                                    &mac, -1);
122                                 gtk_entry_set_text(GTK_ENTRY
123                                                    (scan_info->txt_rcvr_mac),
124                                                    mac);
125                                 break;
126                         } else
127                                 popup_error(dialog, _("Please select a bluetooth device from the list."));
128                 }
129
130         gtk_widget_destroy(dialog);
131
132 #ifdef WITH_HILDON_DBUS_BT
133         /* Clean up D-Bus. */
134         dbus_g_proxy_call(scan_info->req_proxy, BTSEARCH_STOP_SEARCH_REQ, &error, G_TYPE_INVALID, G_TYPE_INVALID);
135         g_object_unref(scan_info->req_proxy);
136         g_object_unref(scan_info->sig_proxy);
137 #endif
138
139         vprintf("%s(): return TRUE\n", __PRETTY_FUNCTION__);
140         return TRUE;
141 }