1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
|
/***************************************************************************
* mainwindow.c
*
* Copyright 2005 Ian McIntosh
* ian_mcintosh@linuxadvocate.org
****************************************************************************/
/*
* 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; either version 2 of the License, or
* (at your option) any later version.
*
* 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 Library General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <gnome.h>
#include "search_road.h"
#include "gui.h"
#include "util.h"
#include "gotowindow.h"
#include "db.h"
#include "map.h"
#include "importwindow.h"
#include "datasetwindow.h"
#include "welcomewindow.h"
#include "locationset.h"
#include "gpsclient.h"
#include "databasewindow.h"
#include "mainwindow.h"
#include "glyph.h"
#include <gdk/gdkx.h>
#include <cairo.h>
#ifdef HAVE_CAIRO_0_2_0
# include <cairo-xlib.h>
#endif
#define PROGRAM_NAME "Roadster"
#define PROGRAM_COPYRIGHT "Copyright (c) 2005 Ian McIntosh"
#define PROGRAM_DESCRIPTION "Mapping for everyone!"
// Layerlist columns
#define LAYERLIST_COLUMN_ENABLED (0)
#define LAYERLIST_COLUMN_NAME (1)
// Limits
#define MAX_SEARCH_TEXT_LENGTH (100)
#define SPEED_LABEL_FORMAT ("<span font_desc='32'>%.0f</span>")
// Settings
#define TIMER_GPS_REDRAW_INTERVAL_MS (2500) // lower this (to 1?) when it's faster to redraw track
// Types
typedef struct {
GdkCursorType m_CursorType;
GdkCursor* m_pGdkCursor;
} cursor_t;
typedef struct {
char* m_szName;
cursor_t m_Cursor;
} toolsettings_t;
typedef enum {
kToolPointer = 0,
kToolZoom = 1,
} EToolType;
// Prototypes
static gboolean mainwindow_on_mouse_button_click(GtkWidget* w, GdkEventButton *event);
static gboolean mainwindow_on_expose_event(GtkWidget *pDrawingArea, GdkEventExpose *event, gpointer data);
static gint mainwindow_on_configure_event(GtkWidget *pDrawingArea, GdkEventConfigure *event);
static gboolean mainwindow_callback_on_gps_redraw_timeout(gpointer pData);
static void mainwindow_setup_selected_tool(void);
struct {
GtkWindow* m_pWindow;
GtkTooltips* m_pTooltips;
GtkMenu* m_pMapPopupMenu;
screenpoint_t m_ptClickLocation;
// Toolbar
GtkToolbar* m_pToolbar;
GtkToolButton* m_pPointerToolButton;
GtkToolButton* m_pZoomToolButton;
GtkHScale* m_pZoomScale;
GtkEntry* m_pSearchBox;
GtkImage* m_pStatusbarGPSIcon;
GtkWidget *m_pSidebox;
// Sidebar
// "Draw" Sidebar
GtkTreeView* m_pLayersListTreeView;
GtkTreeView* m_pLocationSetsTreeView;
// "GPS" sidebar
GtkLabel* m_pSpeedLabel;
GtkProgressBar* m_pGPSSignalStrengthProgressBar;
// Statusbar
GtkVBox* m_pStatusbar;
GtkLabel* m_pPositionLabel;
GtkLabel* m_pZoomScaleLabel;
GtkProgressBar* m_pProgressBar;
// Boxes
GtkHBox* m_pContentBox;
// Drawing area
// GtkWidget* m_pDrawWidget;
GtkDrawingArea* m_pDrawingArea;
map_t* m_pMap;
EToolType m_eSelectedTool;
gint m_nCurrentGPSPath;
gint m_nGPSLocationGlyph;
} g_MainWindow = {0};
// Data
toolsettings_t g_Tools[] = {
{"Pointer Tool", {GDK_LEFT_PTR, NULL}},
{"Zoom Tool", {GDK_CIRCLE, NULL}},
};
void cursor_init()
{
int i;
for(i=0 ; i<NUM_ELEMS(g_Tools) ; i++) {
g_Tools[i].m_Cursor.m_pGdkCursor = gdk_cursor_new(g_Tools[i].m_Cursor.m_CursorType);
}
}
static void util_set_image_to_stock(GtkImage* pImage, gchar* pszStockIconID, GtkIconSize nSize)
{
GdkPixbuf* pPixbuf = gtk_widget_render_icon(GTK_WIDGET(g_MainWindow.m_pStatusbarGPSIcon),pszStockIconID, nSize, "name");
gtk_image_set_from_pixbuf(pImage, pPixbuf);
gdk_pixbuf_unref(pPixbuf);
}
static void mainwindow_set_statusbar_position(gchar* pMessage)
{
gtk_label_set_text(GTK_LABEL(g_MainWindow.m_pPositionLabel), pMessage);
}
static void mainwindow_set_statusbar_zoomscale(gchar* pMessage)
{
gtk_label_set_text(GTK_LABEL(g_MainWindow.m_pZoomScaleLabel), pMessage);
}
void* mainwindow_set_busy(void)
{
GdkCursor* pCursor = gdk_cursor_new(GDK_WATCH);
// set it for the whole window
gdk_window_set_cursor(GTK_WIDGET(g_MainWindow.m_pWindow)->window, pCursor);
// HACK: children with their own cursors set need to be set manually and restored later :/
gdk_window_set_cursor(GTK_WIDGET(g_MainWindow.m_pDrawingArea)->window, pCursor);
gdk_flush();
return pCursor;
}
void mainwindow_set_not_busy(void** ppCursor)
{
gdk_window_set_cursor(GTK_WIDGET(g_MainWindow.m_pWindow)->window, NULL);
gdk_cursor_unref(*ppCursor);
gdk_flush();
// HACK: manually restore the cursor for selected tool :/
mainwindow_setup_selected_tool();
}
/*
** Status bar
*/
void mainwindow_load_locationset_list(void);
void mainwindow_init(GladeXML* pGladeXML)
{
g_MainWindow.m_pWindow = GTK_WINDOW(glade_xml_get_widget(pGladeXML, "mainwindow")); g_return_if_fail(g_MainWindow.m_pWindow != NULL);
g_MainWindow.m_pMapPopupMenu = GTK_MENU(glade_xml_get_widget(pGladeXML, "mappopupmenu")); g_return_if_fail(g_MainWindow.m_pMapPopupMenu != NULL);
g_MainWindow.m_pPointerToolButton = GTK_TOOL_BUTTON(glade_xml_get_widget(pGladeXML, "pointertoolbutton"));g_return_if_fail(g_MainWindow.m_pPointerToolButton != NULL);
g_MainWindow.m_pZoomToolButton = GTK_TOOL_BUTTON(glade_xml_get_widget(pGladeXML, "zoomtoolbutton")); g_return_if_fail(g_MainWindow.m_pZoomToolButton != NULL);
g_MainWindow.m_pContentBox = GTK_HBOX(glade_xml_get_widget(pGladeXML, "mainwindowcontentsbox")); g_return_if_fail(g_MainWindow.m_pContentBox != NULL);
g_MainWindow.m_pLocationSetsTreeView= GTK_TREE_VIEW(glade_xml_get_widget(pGladeXML, "locationsetstreeview")); g_return_if_fail(g_MainWindow.m_pLocationSetsTreeView != NULL);
g_MainWindow.m_pLayersListTreeView = GTK_TREE_VIEW(glade_xml_get_widget(pGladeXML, "layerstreeview")); g_return_if_fail(g_MainWindow.m_pLayersListTreeView != NULL);
g_MainWindow.m_pZoomScale = GTK_HSCALE(glade_xml_get_widget(pGladeXML, "zoomscale")); g_return_if_fail(g_MainWindow.m_pZoomScale != NULL);
g_MainWindow.m_pPositionLabel = GTK_LABEL(glade_xml_get_widget(pGladeXML, "positionlabel")); g_return_if_fail(g_MainWindow.m_pPositionLabel != NULL);
g_MainWindow.m_pStatusbarGPSIcon = GTK_IMAGE(glade_xml_get_widget(pGladeXML, "statusbargpsicon")); g_return_if_fail(g_MainWindow.m_pStatusbarGPSIcon != NULL);
g_MainWindow.m_pZoomScaleLabel = GTK_LABEL(glade_xml_get_widget(pGladeXML, "zoomscalelabel")); g_return_if_fail(g_MainWindow.m_pZoomScaleLabel != NULL);
g_MainWindow.m_pToolbar = GTK_TOOLBAR(glade_xml_get_widget(pGladeXML, "maintoolbar")); g_return_if_fail(g_MainWindow.m_pToolbar != NULL);
g_MainWindow.m_pStatusbar = GTK_VBOX(glade_xml_get_widget(pGladeXML, "statusbar")); g_return_if_fail(g_MainWindow.m_pStatusbar != NULL);
g_MainWindow.m_pSidebox = GTK_WIDGET(glade_xml_get_widget(pGladeXML, "mainwindowsidebox")); g_return_if_fail(g_MainWindow.m_pSidebox != NULL);
// g_MainWindow.m_pSearchBox = GTK_ENTRY(glade_xml_get_widget(pGladeXML, "searchbox")); g_return_if_fail(g_MainWindow.m_pSearchBox != NULL);
// g_MainWindow.m_pProgressBar = GTK_PROGRESS_BAR(glade_xml_get_widget(pGladeXML, "mainwindowprogressbar")); g_return_if_fail(g_MainWindow.m_pProgressBar != NULL);
g_MainWindow.m_pTooltips = gtk_tooltips_new();
g_MainWindow.m_pSpeedLabel = GTK_LABEL(glade_xml_get_widget(pGladeXML, "speedlabel")); g_return_if_fail(g_MainWindow.m_pSpeedLabel != NULL);
g_MainWindow.m_pGPSSignalStrengthProgressBar = GTK_PROGRESS_BAR(glade_xml_get_widget(pGladeXML, "gpssignalprogressbar")); g_return_if_fail(g_MainWindow.m_pGPSSignalStrengthProgressBar != NULL);
// create drawing area
g_MainWindow.m_pDrawingArea = GTK_DRAWING_AREA(gtk_drawing_area_new());
g_print("creating map\n");
map_new(&g_MainWindow.m_pMap, GTK_WIDGET(g_MainWindow.m_pDrawingArea));
// add signal handlers to drawing area
gtk_widget_add_events(GTK_WIDGET(g_MainWindow.m_pDrawingArea), GDK_EXPOSURE_MASK | GDK_BUTTON_PRESS_MASK);
g_signal_connect(G_OBJECT(g_MainWindow.m_pDrawingArea), "expose_event", G_CALLBACK(mainwindow_on_expose_event), NULL);
g_signal_connect(G_OBJECT(g_MainWindow.m_pDrawingArea), "configure_event", G_CALLBACK(mainwindow_on_configure_event), NULL);
g_signal_connect(G_OBJECT(g_MainWindow.m_pDrawingArea), "button_press_event", G_CALLBACK(mainwindow_on_mouse_button_click), NULL);
// Pack canvas into application window
gtk_box_pack_end(GTK_BOX(g_MainWindow.m_pContentBox), GTK_WIDGET(g_MainWindow.m_pDrawingArea),
TRUE, // expand
TRUE, // fill
0);
gtk_widget_show(GTK_WIDGET(g_MainWindow.m_pDrawingArea));
cursor_init();
g_print("loading at %s\n", PACKAGE_DATA_DIR);
g_MainWindow.m_nGPSLocationGlyph = glyph_load(PACKAGE_DATA_DIR"/car.svg");
/*
**
*/
// create layers tree view
GtkListStore* pLocationSetsListStore = gtk_list_store_new(2, G_TYPE_BOOLEAN, G_TYPE_STRING);
gtk_tree_view_set_model(g_MainWindow.m_pLocationSetsTreeView, GTK_TREE_MODEL(pLocationSetsListStore));
GtkCellRenderer* pCellRenderer;
GtkTreeViewColumn* pColumn;
// add a checkbox column for layer enabled/disabled
pCellRenderer = gtk_cell_renderer_toggle_new();
g_object_set_data(G_OBJECT(pCellRenderer), "column", (gint *)LAYERLIST_COLUMN_ENABLED);
// g_signal_connect(pCellRenderer, "toggled", G_CALLBACK(on_layervisible_checkbox_clicked), pLocationSetsListStore);
pColumn = gtk_tree_view_column_new_with_attributes("Visible", pCellRenderer, "active", LAYERLIST_COLUMN_ENABLED, NULL);
gtk_tree_view_append_column(g_MainWindow.m_pLocationSetsTreeView, pColumn);
// add Name column (with a text renderer)
pCellRenderer = gtk_cell_renderer_text_new();
pColumn = gtk_tree_view_column_new_with_attributes("Layers", pCellRenderer, "text", LAYERLIST_COLUMN_NAME, NULL);
gtk_tree_view_append_column(g_MainWindow.m_pLocationSetsTreeView, pColumn);
/*
**
*/
// create layers tree view
GtkListStore* pLayersListStore = gtk_list_store_new(2, G_TYPE_BOOLEAN, G_TYPE_STRING);
gtk_tree_view_set_model(g_MainWindow.m_pLayersListTreeView, GTK_TREE_MODEL(pLayersListStore));
// GtkCellRenderer* pCellRenderer;
// GtkTreeViewColumn* pColumn;
// add a checkbox column for layer enabled/disabled
pCellRenderer = gtk_cell_renderer_toggle_new();
g_object_set_data (G_OBJECT (pCellRenderer ), "column", (gint *)LAYERLIST_COLUMN_ENABLED);
// g_signal_connect (pCellRenderer, "toggled", G_CALLBACK (on_layervisible_checkbox_clicked), pLayersListStore);
pColumn = gtk_tree_view_column_new_with_attributes("Visible", pCellRenderer, "active", LAYERLIST_COLUMN_ENABLED, NULL);
gtk_tree_view_append_column(g_MainWindow.m_pLayersListTreeView, pColumn);
// add Layer Name column (with a text renderer)
pCellRenderer = gtk_cell_renderer_text_new();
pColumn = gtk_tree_view_column_new_with_attributes("Layers", pCellRenderer, "text", LAYERLIST_COLUMN_NAME, NULL);
gtk_tree_view_append_column(g_MainWindow.m_pLayersListTreeView, pColumn);
/*
**
*/
mainwindow_statusbar_update_zoomscale();
mainwindow_statusbar_update_position();
locationset_load_locationsets();
mainwindow_load_locationset_list();
/* add some data to the layers list */
// GtkTreeIter iter;
//
// int i;
// for(i=LAYER_FIRST ; i<=LAYER_LAST ; i++) {
// gboolean bEnabled = TRUE;
//
// gtk_list_store_append(GTK_LIST_STORE(pLayersListStore), &iter);
// gtk_list_store_set(GTK_LIST_STORE(pLayersListStore), &iter,
// LAYERLIST_COLUMN_ENABLED, bEnabled,
// LAYERLIST_COLUMN_NAME, g_aLayers[i].m_pszName,
// -1);
// }
g_timeout_add(TIMER_GPS_REDRAW_INTERVAL_MS,
(GSourceFunc)mainwindow_callback_on_gps_redraw_timeout,
(gpointer)NULL);
// give it a call to init everything
mainwindow_callback_on_gps_redraw_timeout(NULL);
}
void mainwindow_load_locationset_list(void)
{
const GPtrArray* pLocationSetArray = locationset_get_set_array();
/* add some data to the layers list */
GtkTreeIter iter;
GtkListStore* pListStore = (GtkListStore*)gtk_tree_view_get_model(g_MainWindow.m_pLocationSetsTreeView);
g_assert(pListStore != NULL);
/* Add each locationset to treeview */
int i;
for(i=0 ; i<pLocationSetArray->len ; i++) {
locationset_t* pLocationSet = g_ptr_array_index(pLocationSetArray, i);
gboolean bEnabled = TRUE;
gtk_list_store_append(pListStore, &iter);
gtk_list_store_set(pListStore, &iter,
LAYERLIST_COLUMN_ENABLED, bEnabled,
LAYERLIST_COLUMN_NAME, pLocationSet->m_pszName,
-1);
}
}
void mainwindow_show(void)
{
gtk_widget_show(GTK_WIDGET(g_MainWindow.m_pWindow));
gtk_window_present(g_MainWindow.m_pWindow);
}
void mainwindow_hide(void)
{
gtk_widget_hide(GTK_WIDGET(g_MainWindow.m_pWindow));
}
void mainwindow_set_sensitive(gboolean bSensitive)
{
gtk_widget_set_sensitive(GTK_WIDGET(g_MainWindow.m_pWindow), bSensitive);
}
/*
** Toolbar
*/
void mainwindow_set_toolbar_visible(gboolean bVisible)
{
if(bVisible) {
gtk_widget_show(GTK_WIDGET(g_MainWindow.m_pToolbar));
}
else {
gtk_widget_hide(GTK_WIDGET(g_MainWindow.m_pToolbar));
}
}
gboolean mainwindow_get_toolbar_visible(void)
{
return GTK_WIDGET_VISIBLE(g_MainWindow.m_pToolbar);
}
/*
** Statusbar
*/
void mainwindow_set_statusbar_visible(gboolean bVisible)
{
if(bVisible) {
gtk_widget_show(GTK_WIDGET(g_MainWindow.m_pStatusbar));
}
else {
gtk_widget_hide(GTK_WIDGET(g_MainWindow.m_pStatusbar));
}
}
gboolean mainwindow_get_statusbar_visible(void)
{
return GTK_WIDGET_VISIBLE(g_MainWindow.m_pStatusbar);
}
void mainwindow_statusbar_update_zoomscale(void)
{
char buf[200];
guint32 uZoomLevelScale = map_get_zoomlevel_scale(g_MainWindow.m_pMap);
snprintf(buf, 199, "1:%d", uZoomLevelScale);
mainwindow_set_statusbar_zoomscale(buf);
}
void mainwindow_statusbar_update_position(void)
{
char buf[200];
mappoint_t pt;
map_get_centerpoint(g_MainWindow.m_pMap, &pt);
g_snprintf(buf, 200, "Lat: %.5f, Lon: %.5f", pt.m_fLatitude, pt.m_fLongitude);
mainwindow_set_statusbar_position(buf);
}
/*
** Sidebox (Layers, etc.)
*/
void mainwindow_set_sidebox_visible(gboolean bVisible)
{
if(bVisible) {
gtk_widget_show(GTK_WIDGET(g_MainWindow.m_pSidebox));
}
else {
gtk_widget_hide(GTK_WIDGET(g_MainWindow.m_pSidebox));
}
}
gboolean mainwindow_get_sidebox_visible(void)
{
return GTK_WIDGET_VISIBLE(g_MainWindow.m_pSidebox);
}
GtkWidget* mainwindow_get_window(void)
{
return GTK_WIDGET(g_MainWindow.m_pWindow);
}
//
// Progress Bar
//
//~ void mainwindow_statusbar_progressbar_set_text(const gchar* pszText)
//~ {
//~ gtk_progress_bar_set_text(g_MainWindow.m_pProgressBar, pszText);
//~ }
//~ void mainwindow_statusbar_progressbar_pulse()
//~ {
//~ gtk_progress_bar_pulse(g_MainWindow.m_pProgressBar);
//~ }
//~ void mainwindow_statusbar_progressbar_clear()
//~ {
//~ gtk_progress_bar_set_text(g_MainWindow.m_pProgressBar, "");
//~ gtk_progress_bar_set_fraction(g_MainWindow.m_pProgressBar, 0.0);
//~ }
void mainwindow_toggle_fullscreen(void)
{
GdkWindow* toplevelgdk = gdk_window_get_toplevel(GTK_WIDGET(g_MainWindow.m_pWindow)->window);
if(toplevelgdk) {
GdkWindowState windowstate = gdk_window_get_state(toplevelgdk);
if(windowstate & GDK_WINDOW_STATE_FULLSCREEN) {
gdk_window_unfullscreen(toplevelgdk);
}
else {
gdk_window_fullscreen(toplevelgdk);
}
}
}
/*
** callbacks
*/
//~ void on_searchbutton_clicked (GtkToolButton *toolbutton, gpointer user_data)
//~ {
//~ gchar* pchSearchString = gtk_editable_get_chars(GTK_EDITABLE(g_MainWindow.m_pSearchBox), 0, MAX_SEARCH_TEXT_LENGTH);
//~ search_execute(pchSearchString);
//~ g_free(pchSearchString);
//~ }
#if ROADSTER_DEAD_CODE
static gboolean on_searchbox_key_press_event(GtkWidget *widget, GdkEventKey *event, gpointer user_data)
{
// Enter key?
if(event->keyval == 65293) {
// Grab the first MAX_SEARCH_TEXT_LENGTH characters from search box
gchar* pchSearchString = gtk_editable_get_chars(GTK_EDITABLE(widget), 0, MAX_SEARCH_TEXT_LENGTH);
search_road_execute(pchSearchString);
g_free(pchSearchString);
}
return FALSE;
}
#endif /* ROADSTER_DEAD_CODE */
// User clicked Quit window
void on_quitmenuitem_activate(GtkMenuItem *menuitem, gpointer user_data)
{
gui_exit();
}
// User closed main window
gboolean on_application_delete_event(GtkWidget *widget, GdkEvent *event, gpointer user_data)
{
gui_exit();
return FALSE; // satisfy strick compiler
}
#if ROADSTER_DEAD_CODE
static void on_searchbox_editing_done(GtkCellEditable *celleditable, gpointer user_data)
{
// g_message("on_searchbox_editing_done()\n");
}
#endif /* ROADSTER_DEAD_CODE */
// the range slider changed value
void on_zoomscale_value_changed(GtkRange *range, gpointer user_data)
{
gdouble fValue = gtk_range_get_value(range);
gint16 nValue = (gint16)fValue;
gtk_range_set_value(range, (gdouble)nValue);
map_set_zoomlevel(g_MainWindow.m_pMap, nValue);
mainwindow_statusbar_update_zoomscale();
mainwindow_draw_map();
}
//
// Zoom
//
static void zoom_in_one(void)
{
map_set_zoomlevel(g_MainWindow.m_pMap, map_get_zoomlevel(g_MainWindow.m_pMap) + 1);
gtk_range_set_value(GTK_RANGE(g_MainWindow.m_pZoomScale), map_get_zoomlevel(g_MainWindow.m_pMap));
}
static void zoom_out_one(void)
{
map_set_zoomlevel(g_MainWindow.m_pMap, map_get_zoomlevel(g_MainWindow.m_pMap) - 1 );
gtk_range_set_value(GTK_RANGE(g_MainWindow.m_pZoomScale), map_get_zoomlevel(g_MainWindow.m_pMap));
}
static void gui_set_tool(EToolType eTool)
{
g_MainWindow.m_eSelectedTool = eTool;
gdk_window_set_cursor(GTK_WIDGET(g_MainWindow.m_pDrawingArea)->window, g_Tools[eTool].m_Cursor.m_pGdkCursor);
}
void on_aboutmenuitem_activate(GtkMenuItem *menuitem, gpointer user_data)
{
const gchar *ppAuthors[] = {
"Ian McIntosh <ian_mcintosh@linuxadvocate.org>",
NULL
};
GtkWidget *pAboutWindow = gnome_about_new(
PROGRAM_NAME,
VERSION,
PROGRAM_COPYRIGHT,
PROGRAM_DESCRIPTION,
(const gchar **) ppAuthors,
NULL,
NULL,
NULL);
gtk_widget_show(pAboutWindow);
}
// Toggle toolbar visibility
void on_toolbarmenuitem_activate(GtkMenuItem *menuitem, gpointer user_data)
{
mainwindow_set_toolbar_visible( !mainwindow_get_toolbar_visible() );
}
#if ROADSTER_DEAD_CODE
// Show preferences dialog
static void on_preferencesmenuitem_activate(GtkMenuItem *menuitem, gpointer user_data)
{
// gui_show_preferences_window();
}
#endif
// Toggle statusbar visibility
void on_statusbarmenuitem_activate(GtkMenuItem *menuitem, gpointer user_data)
{
mainwindow_set_statusbar_visible( !mainwindow_get_statusbar_visible() );
}
void on_sidebarmenuitem_activate(GtkMenuItem *menuitem, gpointer user_data)
{
mainwindow_set_sidebox_visible(!mainwindow_get_sidebox_visible());
}
//
// Zoom buttons / menu items (shared callbacks)
//
void on_zoomin_activate(GtkMenuItem *menuitem, gpointer user_data)
{
zoom_in_one();
}
void on_zoomout_activate(GtkMenuItem *menuitem, gpointer user_data)
{
zoom_out_one();
}
void on_fullscreenmenuitem_activate(GtkMenuItem *menuitem, gpointer user_data)
{
mainwindow_toggle_fullscreen();
}
void mainwindow_on_gotomenuitem_activate(GtkMenuItem *menuitem, gpointer user_data)
{
// g_print("mainwindow_on_gotomenuitem_activate\n");
gotowindow_show();
}
// void on_gotobutton_clicked(GtkToolButton *toolbutton, gpointer user_data)
// {
// gotowindow_show();
// }
static gboolean mainwindow_on_mouse_button_click(GtkWidget* w, GdkEventButton *event)
{
gint nX;
gint nY;
gdk_window_get_pointer(w->window, &nX, &nY, NULL);
// Left double-click
if(event->button == 1 && event->type == GDK_2BUTTON_PRESS) {
if(g_MainWindow.m_eSelectedTool == kToolZoom) {
map_center_on_windowpoint(g_MainWindow.m_pMap, nX, nY);
zoom_in_one();
}
else if(g_MainWindow.m_eSelectedTool == kToolPointer) {
map_center_on_windowpoint(g_MainWindow.m_pMap, nX, nY);
}
else {
g_assert(FALSE);
}
mainwindow_draw_map();
mainwindow_statusbar_update_position();
}
// Right-click?
// else if (event->button == 3 && event->type == GDK_BUTTON_PRESS)
// {
// // Save click location for use by callback
// g_MainWindow.m_ptClickLocation.m_nX = nX;
// g_MainWindow.m_ptClickLocation.m_nY = nY;
//
// // Show popup!
// gtk_menu_popup(g_MainWindow.m_pMapPopupMenu, NULL, NULL, NULL, NULL, event->button, event->time);
// return TRUE;
// }
// map_redraw_if_needed();
return TRUE;
}
static void mainwindow_begin_import_geography_data(void)
{
GtkWidget* pDialog = gtk_file_chooser_dialog_new(
"Select Map Data for Import",
g_MainWindow.m_pWindow,
GTK_FILE_CHOOSER_ACTION_OPEN,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
"Import", GTK_RESPONSE_ACCEPT,
NULL);
gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(pDialog), TRUE);
gtk_widget_set_sensitive(GTK_WIDGET(g_MainWindow.m_pWindow), FALSE);
gint nResponse = gtk_dialog_run(GTK_DIALOG(pDialog));
gtk_widget_hide(pDialog);
if(nResponse == GTK_RESPONSE_ACCEPT) {
GSList* pSelectedFilesList = gtk_file_chooser_get_uris(GTK_FILE_CHOOSER(pDialog));
importwindow_begin(pSelectedFilesList);
// free each URI item with g_free
GSList* pFile = pSelectedFilesList;
while(pFile != NULL) {
g_free(pFile->data); pFile->data = NULL;
pFile = pFile->next; // Move to next file
}
g_slist_free(pSelectedFilesList);
}
// re-enable main window and destroy dialog
gtk_widget_set_sensitive(GTK_WIDGET(g_MainWindow.m_pWindow), TRUE);
gtk_widget_destroy(pDialog);
}
void on_import_maps_activate(GtkWidget *widget, gpointer user_data)
{
mainwindow_begin_import_geography_data();
}
static void mainwindow_setup_selected_tool(void)
{
if(gtk_toggle_tool_button_get_active(GTK_TOGGLE_TOOL_BUTTON(g_MainWindow.m_pPointerToolButton))) {
gui_set_tool(kToolPointer);
}
else if(gtk_toggle_tool_button_get_active(GTK_TOGGLE_TOOL_BUTTON(g_MainWindow.m_pZoomToolButton))) {
gui_set_tool(kToolZoom);
}
}
//
// Handler for ALL tool buttons
//
void on_toolbutton_clicked(GtkToolButton *toolbutton, gpointer user_data)
{
mainwindow_setup_selected_tool();
}
void mainwindow_draw_map(void)
{
map_draw_thread_begin(g_MainWindow.m_pMap, GTK_WIDGET(g_MainWindow.m_pDrawingArea));
}
static gint mainwindow_on_configure_event(GtkWidget *pDrawingArea, GdkEventConfigure *event)
{
// Create a new backing pixmap of the appropriate size
// if(g_MainWindow.m_pOffscreenPixmap != NULL) {
// gdk_pixmap_unref(g_MainWindow.m_pOffscreenPixmap);
// }
// g_MainWindow.m_pOffscreenPixmap = gdk_pixmap_new(
// GTK_WIDGET(g_MainWindow.m_pDrawingArea)->window,
// GTK_WIDGET(g_MainWindow.m_pDrawingArea)->allocation.width,
// GTK_WIDGET(g_MainWindow.m_pDrawingArea)->allocation.height,
// -1);
// tell the map how big to draw
dimensions_t dim;
dim.m_uWidth = GTK_WIDGET(g_MainWindow.m_pDrawingArea)->allocation.width;
dim.m_uHeight = GTK_WIDGET(g_MainWindow.m_pDrawingArea)->allocation.height;
map_set_dimensions(g_MainWindow.m_pMap, &dim);
mainwindow_draw_map();
return TRUE;
}
static gboolean mainwindow_on_expose_event(GtkWidget *pDrawingArea, GdkEventExpose *event, gpointer data)
{
// g_print("mainwindow_on_expose_event(x=%d,y=%d,w=%d,h=%d)\n", event->area.x, event->area.y, event->area.width, event->area.height);
GdkPixmap* pMapPixmap = map_get_pixmap(g_MainWindow.m_pMap);
// Copy relevant portion of off-screen bitmap to window
// TIMER_BEGIN(mytimer, "BEGIN EXPOSE");
gdk_draw_pixmap(GTK_WIDGET(g_MainWindow.m_pDrawingArea)->window,
GTK_WIDGET(g_MainWindow.m_pDrawingArea)->style->fg_gc[GTK_WIDGET_STATE(g_MainWindow.m_pDrawingArea)],
pMapPixmap,
event->area.x, event->area.y,
event->area.x, event->area.y,
event->area.width, event->area.height);
// TIMER_END(mytimer, "END EXPOSE");
map_release_pixmap(g_MainWindow.m_pMap);
return FALSE;
}
void mainwindow_on_addpointmenuitem_activate(GtkWidget *_unused, gpointer* __unused)
{
mappoint_t point;
map_windowpoint_to_mappoint(g_MainWindow.m_pMap, &g_MainWindow.m_ptClickLocation, &point);
gint nLocationSetID = 1;
gint nNewLocationID;
if(locationset_add_location(nLocationSetID, &point, &nNewLocationID)) {
g_print("new location ID = %d\n", nNewLocationID);
mainwindow_draw_map();
}
else {
g_print("insert failed\n");
}
}
static gboolean mainwindow_callback_on_gps_redraw_timeout(gpointer __unused)
{
// NOTE: we're setting tooltips on the image's
GtkWidget* pWidget = gtk_widget_get_parent(GTK_WIDGET(g_MainWindow.m_pStatusbarGPSIcon));
const gpsdata_t* pData = gpsclient_getdata();
if(pData->m_eStatus == GPS_STATUS_LIVE) {
if(g_MainWindow.m_nCurrentGPSPath == 0) {
// create a new track for GPS trail
g_MainWindow.m_nCurrentGPSPath = track_new();
}
track_add_point(g_MainWindow.m_nCurrentGPSPath, &pData->m_ptPosition);
// if(keep position centered) {
// map_center_on_worldpoint(pData->m_ptPosition.m_fLatitude, pData->m_ptPosition.m_fLongitude);
// mainwindow_statusbar_update_position();
// }
// redraw because GPS icon/trail may be different
mainwindow_draw_map();
// update image and tooltip for GPS icon
util_set_image_to_stock(g_MainWindow.m_pStatusbarGPSIcon, GTK_STOCK_OK, GTK_ICON_SIZE_MENU);
gtk_tooltips_set_tip(GTK_TOOLTIPS(g_MainWindow.m_pTooltips), pWidget,
"A GPS device is present and active", "");
// update speed
gchar* pszSpeed = g_strdup_printf(SPEED_LABEL_FORMAT, pData->m_fSpeedInMilesPerHour);
gtk_label_set_markup(g_MainWindow.m_pSpeedLabel, pszSpeed);
g_free(pszSpeed);
gtk_progress_bar_set_fraction(g_MainWindow.m_pGPSSignalStrengthProgressBar, pData->m_fSignalQuality * 20.0/100.0);
}
else {
// unless we're "LIVE", set signal strength to 0
gtk_progress_bar_set_fraction(g_MainWindow.m_pGPSSignalStrengthProgressBar, 0.0);
if(pData->m_eStatus == GPS_STATUS_NO_SIGNAL) {
// do NOT set speed to 0 if we drop the signal temporarily...
util_set_image_to_stock(g_MainWindow.m_pStatusbarGPSIcon, GTK_STOCK_CANCEL, GTK_ICON_SIZE_MENU);
gtk_tooltips_set_tip(GTK_TOOLTIPS(g_MainWindow.m_pTooltips), pWidget,
"A GPS device is present but unable to hear satellites", "");
}
else {
// update speed, set to 0
gchar* pszSpeed = g_strdup_printf(SPEED_LABEL_FORMAT, 0.0);
gtk_label_set_markup(g_MainWindow.m_pSpeedLabel, pszSpeed);
g_free(pszSpeed);
if(pData->m_eStatus == GPS_STATUS_NO_DEVICE) {
util_set_image_to_stock(g_MainWindow.m_pStatusbarGPSIcon, GTK_STOCK_STOP, GTK_ICON_SIZE_MENU);
gtk_tooltips_set_tip(GTK_TOOLTIPS(g_MainWindow.m_pTooltips), pWidget,
"No GPS device is present", "");
}
else if(pData->m_eStatus == GPS_STATUS_NO_GPSD) {
util_set_image_to_stock(g_MainWindow.m_pStatusbarGPSIcon, GTK_STOCK_STOP, GTK_ICON_SIZE_MENU);
gtk_tooltips_set_tip(GTK_TOOLTIPS(g_MainWindow.m_pTooltips), pWidget,
"Install package 'gpsd' to use a GPS device with Roadster", "");
}
else {
g_assert_not_reached();
}
}
}
// g_print("set GPS status = %d\n", pData->m_eStatus);
return TRUE;
}
void mainwindow_set_centerpoint(mappoint_t* pPoint)
{
map_set_centerpoint(g_MainWindow.m_pMap, pPoint);
}
#ifdef ROADSTER_DEAD_CODE
void on_importmenuitem_activate(GtkMenuItem *menuitem, gpointer user_data)
{
g_print("on_importmenuitem_activate\n");
importwindow_show();
}
static void on_layervisible_checkbox_clicked(GtkCellRendererToggle *cell, gchar *path_str, gpointer data)
{
GtkTreeModel *model = (GtkTreeModel *)data;
GtkTreePath *path = gtk_tree_path_new_from_string (path_str);
GtkTreeIter iter;
gboolean toggle_item;
gint *column;
column = g_object_get_data (G_OBJECT (cell), "column");
/* get toggled iter */
gtk_tree_model_get_iter (model, &iter, path);
gtk_tree_model_get (model, &iter, column, &toggle_item, -1);
/* do something with the value */
toggle_item ^= 1;
/* set new value */
gtk_tree_store_set (GTK_TREE_STORE (model), &iter, column,
toggle_item, -1);
/* clean up */
gtk_tree_path_free (path);
}
void mainwindow_on_datasetmenuitem_activate(GtkWidget *pWidget, gpointer* p)
{
datasetwindow_show();
}
#endif /* ROADSTER_DEAD_CODE */
|