]> Pileus Git - aweather/blob - src/plugins/gps-plugin.h
Improve shutdown code
[aweather] / src / plugins / gps-plugin.h
1 /*
2  * Copyright (C) 2012 Adam Boggs <boggs@aircrafter.org>
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 #ifndef _GPS_PLUGIN_H
18 #define _GPS_PLUGIN_H
19
20 #define GRITS_TYPE_PLUGIN_GPS            (grits_plugin_gps_get_type ())
21 #define GRITS_PLUGIN_GPS(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),   GRITS_TYPE_PLUGIN_GPS, GritsPluginGps))
22 #define GRITS_IS_PLUGIN_GPS(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),   GRITS_TYPE_PLUGIN_GPS))
23 #define GRITS_PLUGIN_GPS_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST   ((klass), GRITS_TYPE_PLUGIN_GPS, GritsPluginGpsClass))
24 #define GRITS_IS_PLUGIN_GPS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE   ((klass), GRITS_TYPE_PLUGIN_GPS))
25 #define GRITS_PLUGIN_GPS_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),   GRITS_TYPE_PLUGIN_GPS, GritsPluginGpsClass))
26
27 typedef struct _GritsPluginGps      GritsPluginGps;
28 typedef struct _GritsPluginGpsClass GritsPluginGpsClass;
29
30 /* All the User Interface objects we need to keep track of. */
31 typedef struct {
32         /* gps info frame */
33         GtkWidget *gps_status_frame;
34         GtkWidget *gps_status_table;
35         GtkWidget *gps_status_label;
36         GtkWidget *gps_latitude_label;
37         GtkWidget *gps_longitude_label;
38         GtkWidget *gps_heading_label;
39         GtkWidget *gps_elevation_label;
40
41         GtkWidget *status_bar;
42
43         /* control frame */
44         GtkWidget *gps_follow_checkbox;
45         GtkWidget *gps_track_checkbox;
46         GtkWidget *gps_clear_button;
47
48         /* log frame */
49         GtkWidget *gps_log_checkbox;
50         GtkWidget *gps_log_filename_entry;
51         GtkWidget *gps_log_interval_slider;
52         guint      gps_log_timeout_id; /* id of timeout so we can delete it */
53         guint      gps_log_number;     /* sequential log number */
54 } GpsUi;
55
56 typedef struct {
57         /* track storage */
58         gboolean   active;  /* Display track history */
59         gdouble (**points)[3];
60         GritsLine *line;
61         guint      cur_point;
62         guint      num_points;
63         guint      cur_group;
64 } GpsTrack;
65
66 /* GPS private data */
67 struct _GritsPluginGps {
68         GObject parent_instance;
69
70         /* instance members */
71         GritsViewer *viewer;
72         GritsPrefs  *prefs;
73         GtkWidget   *config;
74         guint        tab_id;
75         GritsMarker *marker;
76
77         struct gps_data_t gps_data;
78
79         gboolean     follow_gps;
80         guint        gps_update_timeout_id; /* id of timeout so we can delete it */
81         gint         input_tag;
82
83         GpsTrack     track;
84         GpsUi        ui;
85 };
86
87 struct _GritsPluginGpsClass {
88         GObjectClass parent_class;
89 };
90
91 GType grits_plugin_gps_get_type();
92
93
94 #endif /* GPS_PLUGIN_H */
95