]> git.street.me.uk Git - andy/viking.git/blame - src/viklayer.h
Add support for acquiring OpenStreetMap Notes as GPX files.
[andy/viking.git] / src / viklayer.h
CommitLineData
50a14534
EB
1/*
2 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3 *
4 * Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
a25c4c50
GB
21#ifndef _VIKING_LAYER_H
22#define _VIKING_LAYER_H
23
e4afc73a 24#include <stdio.h>
a25c4c50
GB
25#include <glib.h>
26#include <gtk/gtk.h>
27#include <gdk-pixbuf/gdk-pixdata.h>
50a14534 28
28c82d8b 29#include "uibuilder.h"
cdcaf41c 30#include "vikwindow.h"
a25c4c50
GB
31#include "viktreeview.h"
32#include "vikviewport.h"
50a14534 33
722b5481
RN
34G_BEGIN_DECLS
35
50a14534
EB
36#define VIK_LAYER_TYPE (vik_layer_get_type ())
37#define VIK_LAYER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), VIK_LAYER_TYPE, VikLayer))
38#define VIK_LAYER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), VIK_LAYER_TYPE, VikLayerClass))
39#define IS_VIK_LAYER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), VIK_LAYER_TYPE))
40#define IS_VIK_LAYER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), VIK_LAYER_TYPE))
41
369e959a 42typedef struct _VikLayer VikLayer;
50a14534
EB
43typedef struct _VikLayerClass VikLayerClass;
44
45struct _VikLayerClass
46{
47 GObjectClass object_class;
48 void (* update) (VikLayer *vl);
49};
50
51GType vik_layer_get_type ();
52
53struct _VikLayer {
54 GObject obj;
55 gchar *name;
56 gboolean visible;
57
58 gboolean realized;
94933cb8 59 VikTreeview *vt; /* simply a reference */
50a14534
EB
60 GtkTreeIter iter;
61
62 /* for explicit "polymorphism" (function type switching) */
b5926b35 63 VikLayerTypeEnum type;
50a14534
EB
64};
65
165d30aa
EB
66/* I think most of these are ignored,
67 * returning GRAB_FOCUS grabs the focus for mouse move,
68 * mouse click, release always grabs focus. Focus allows key presses
69 * to be handled.
70 * It used to be that, if ignored, Viking could look for other layers.
71 * this was useful for clicking a way/trackpoint in any layer,
72 * if no layer was selected (find way/trackpoint)
73 */
941aa6e9
AF
74typedef enum {
75 VIK_LAYER_TOOL_IGNORED=0,
76 VIK_LAYER_TOOL_ACK,
77 VIK_LAYER_TOOL_ACK_REDRAW_ABOVE,
78 VIK_LAYER_TOOL_ACK_REDRAW_ALL,
165d30aa
EB
79 VIK_LAYER_TOOL_ACK_REDRAW_IF_VISIBLE,
80 VIK_LAYER_TOOL_ACK_GRAB_FOCUS, /* only for move */
941aa6e9 81} VikLayerToolFuncStatus;
50a14534 82
941aa6e9
AF
83/* gpointer is tool-specific state created in the constructor */
84typedef gpointer (*VikToolConstructorFunc) (VikWindow *, VikViewport *);
85typedef void (*VikToolDestructorFunc) (gpointer);
86typedef VikLayerToolFuncStatus (*VikToolMouseFunc) (VikLayer *, GdkEventButton *, gpointer);
dc2c040e 87typedef VikLayerToolFuncStatus (*VikToolMouseMoveFunc) (VikLayer *, GdkEventMotion *, gpointer);
941aa6e9 88typedef void (*VikToolActivationFunc) (VikLayer *, gpointer);
777e2d4d 89typedef gboolean (*VikToolKeyFunc) (VikLayer *, GdkEventKey *, gpointer);
50a14534
EB
90
91typedef struct _VikToolInterface VikToolInterface;
92struct _VikToolInterface {
79dce0cb 93 GtkRadioActionEntry radioActionEntry;
941aa6e9
AF
94 VikToolConstructorFunc create;
95 VikToolDestructorFunc destroy;
96 VikToolActivationFunc activate;
97 VikToolActivationFunc deactivate;
98 VikToolMouseFunc click;
dc2c040e 99 VikToolMouseMoveFunc move;
941aa6e9 100 VikToolMouseFunc release;
61a9fb73 101 VikToolKeyFunc key_press; /* return FALSE if we don't use the key press -- should return FALSE most of the time if we want any shortcuts / UI keybindings to work! use sparingly. */
ef5e8132 102 gboolean pan_handler; // Call click & release funtions even when 'Pan Mode' is on
f2f2f7bf
GB
103 GdkCursorType cursor_type;
104 const GdkPixdata *cursor_data;
105 const GdkCursor *cursor;
50a14534
EB
106};
107
108/* Parameters (for I/O and Properties) */
28c82d8b 109/* --> moved to uibuilder.h */
50a14534 110
50a14534
EB
111
112/* layer interface functions */
113
114/* Create a new layer of a certain type. Should be filled with defaults */
115typedef VikLayer * (*VikLayerFuncCreate) (VikViewport *);
116
117/* normally only needed for layers with sublayers. This is called when they
118 * are added to the treeview so they can add sublayers to the treeview. */
119typedef void (*VikLayerFuncRealize) (VikLayer *,VikTreeview *,GtkTreeIter *);
120
121/* rarely used, this is called after a read operation or properties box is run.
122 * usually used to create GC's that depend on params,
123 * but GC's can also be created from create() or set_param() */
07059501 124typedef void (*VikLayerFuncPostRead) (VikLayer *,VikViewport *vp,gboolean from_file);
50a14534
EB
125
126typedef void (*VikLayerFuncFree) (VikLayer *);
127
128/* do _not_ use this unless absolutely neccesary. Use the dynamic properties (see coordlayer for example)
129 * returns TRUE if OK was pressed */
07059501 130typedef gboolean (*VikLayerFuncProperties) (VikLayer *,VikViewport *);
50a14534
EB
131
132typedef void (*VikLayerFuncDraw) (VikLayer *,VikViewport *);
133typedef void (*VikLayerFuncChangeCoordMode) (VikLayer *,VikCoordMode);
134
20c7a3a0
QT
135typedef void (*VikLayerFuncSetMenuItemsSelection) (VikLayer *,guint16);
136typedef guint16 (*VikLayerFuncGetMenuItemsSelection) (VikLayer *);
9da7faf2 137
50a14534
EB
138typedef void (*VikLayerFuncAddMenuItems) (VikLayer *,GtkMenu *,gpointer); /* gpointer is a VikLayersPanel */
139typedef gboolean (*VikLayerFuncSublayerAddMenuItems) (VikLayer *,GtkMenu *,gpointer, /* first gpointer is a VikLayersPanel */
50eadc64 140 gint,gpointer,GtkTreeIter *,VikViewport *);
50a14534
EB
141typedef const gchar * (*VikLayerFuncSublayerRenameRequest) (VikLayer *,const gchar *,gpointer,
142 gint,VikViewport *,GtkTreeIter *); /* first gpointer is a VikLayersPanel */
143typedef gboolean (*VikLayerFuncSublayerToggleVisible) (VikLayer *,gint,gpointer);
9da7faf2 144typedef const gchar * (*VikLayerFuncSublayerTooltip) (VikLayer *,gint,gpointer);
1e8b7f57 145typedef const gchar * (*VikLayerFuncLayerTooltip) (VikLayer *);
a5dcfdb7 146typedef gboolean (*VikLayerFuncLayerSelected) (VikLayer *,gint,gpointer,gint,gpointer); /* 2nd gpointer is a VikLayersPanel */
50a14534 147
911400b5
AF
148typedef void (*VikLayerFuncMarshall) (VikLayer *, guint8 **, gint *);
149typedef VikLayer * (*VikLayerFuncUnmarshall) (guint8 *, gint, VikViewport *);
50a14534
EB
150
151/* returns TRUE if needs to redraw due to changed param */
158b3642
RN
152/* in parameter gboolean denotes if for file I/O, as opposed to display/cut/copy etc... operations */
153typedef gboolean (*VikLayerFuncSetParam) (VikLayer *, guint16, VikLayerParamData, VikViewport *, gboolean);
50a14534 154
158b3642 155/* in parameter gboolean denotes if for file I/O, as opposed to display/cut/copy etc... operations */
50a14534 156typedef VikLayerParamData
158b3642 157 (*VikLayerFuncGetParam) (VikLayer *, guint16, gboolean);
50a14534 158
119ada4c 159typedef gboolean (*VikLayerFuncReadFileData) (VikLayer *, FILE *); // Should report success or failure
50a14534
EB
160typedef void (*VikLayerFuncWriteFileData) (VikLayer *, FILE *);
161
33534cd8
AF
162/* item manipulation */
163typedef void (*VikLayerFuncDeleteItem) (VikLayer *, gint, gpointer);
164 /* layer, subtype, pointer to sub-item */
d5874ef9 165typedef void (*VikLayerFuncCutItem) (VikLayer *, gint, gpointer);
ddc47a46 166typedef void (*VikLayerFuncCopyItem) (VikLayer *, gint, gpointer, guint8 **, guint *);
33534cd8 167 /* layer, subtype, pointer to sub-item, return pointer, return len */
ddc47a46 168typedef gboolean (*VikLayerFuncPasteItem) (VikLayer *, gint, guint8 *, guint);
50a14534
EB
169typedef void (*VikLayerFuncFreeCopiedItem) (gint, gpointer);
170
70a23263
AF
171/* treeview drag and drop method. called on the destination layer. it is given a source and destination layer,
172 * and the source and destination iters in the treeview.
173 */
174typedef void (*VikLayerFuncDragDropRequest) (VikLayer *, VikLayer *, GtkTreeIter *, GtkTreePath *);
175
08f14055
RN
176typedef gboolean (*VikLayerFuncSelectClick) (VikLayer *, GdkEventButton *, VikViewport *, tool_ed_t*);
177typedef gboolean (*VikLayerFuncSelectMove) (VikLayer *, GdkEventButton *, VikViewport *, tool_ed_t*);
178typedef gboolean (*VikLayerFuncSelectRelease) (VikLayer *, GdkEventButton *, VikViewport *, tool_ed_t*);
e46f259a 179typedef gboolean (*VikLayerFuncSelectedViewportMenu) (VikLayer *, GdkEventButton *, VikViewport *);
77ad64fa 180
5a4a28bf
QT
181typedef enum {
182 VIK_MENU_ITEM_PROPERTY=1,
183 VIK_MENU_ITEM_CUT=2,
184 VIK_MENU_ITEM_COPY=4,
185 VIK_MENU_ITEM_PASTE=8,
186 VIK_MENU_ITEM_DELETE=16,
187 VIK_MENU_ITEM_ALL=0xff
188} VikStdLayerMenuItem;
50a14534
EB
189
190typedef struct _VikLayerInterface VikLayerInterface;
191
192/* See vik_layer_* for function parameter names */
193struct _VikLayerInterface {
db386630
RN
194 const gchar * fixed_layer_name; // Used in .vik files - this should never change to maintain file compatibility
195 const gchar * name; // Translate-able name used for display purposes
75078768 196 const gchar * accelerator;
50a14534
EB
197 const GdkPixdata * icon;
198
199 VikToolInterface * tools;
200 guint16 tools_count;
201
202 /* for I/O reading to and from .vik files -- params like coordline width, color, etc. */
203 VikLayerParam * params;
204 guint16 params_count;
205 gchar ** params_groups;
206 guint8 params_groups_count;
207
5a4a28bf
QT
208 /* menu items to be created */
209 VikStdLayerMenuItem menu_items_selection;
210
50a14534
EB
211 VikLayerFuncCreate create;
212 VikLayerFuncRealize realize;
213 VikLayerFuncPostRead post_read;
214 VikLayerFuncFree free;
215
216 VikLayerFuncProperties properties;
217 VikLayerFuncDraw draw;
218 VikLayerFuncChangeCoordMode change_coord_mode;
219
20c7a3a0
QT
220 VikLayerFuncSetMenuItemsSelection set_menu_selection;
221 VikLayerFuncGetMenuItemsSelection get_menu_selection;
222
50a14534
EB
223 VikLayerFuncAddMenuItems add_menu_items;
224 VikLayerFuncSublayerAddMenuItems sublayer_add_menu_items;
225 VikLayerFuncSublayerRenameRequest sublayer_rename_request;
226 VikLayerFuncSublayerToggleVisible sublayer_toggle_visible;
9da7faf2 227 VikLayerFuncSublayerTooltip sublayer_tooltip;
1e8b7f57 228 VikLayerFuncLayerTooltip layer_tooltip;
a5dcfdb7 229 VikLayerFuncLayerSelected layer_selected;
50a14534 230
911400b5
AF
231 VikLayerFuncMarshall marshall;
232 VikLayerFuncUnmarshall unmarshall;
50a14534
EB
233
234 /* for I/O */
235 VikLayerFuncSetParam set_param;
236 VikLayerFuncGetParam get_param;
237
238 /* for I/O -- extra non-param data like TrwLayer data */
239 VikLayerFuncReadFileData read_file_data;
240 VikLayerFuncWriteFileData write_file_data;
241
33534cd8 242 VikLayerFuncDeleteItem delete_item;
d5874ef9 243 VikLayerFuncCutItem cut_item;
50a14534
EB
244 VikLayerFuncCopyItem copy_item;
245 VikLayerFuncPasteItem paste_item;
246 VikLayerFuncFreeCopiedItem free_copied_item;
70a23263
AF
247
248 VikLayerFuncDragDropRequest drag_drop_request;
77ad64fa
RN
249
250 VikLayerFuncSelectClick select_click;
08f14055
RN
251 VikLayerFuncSelectMove select_move;
252 VikLayerFuncSelectRelease select_release;
e46f259a 253 VikLayerFuncSelectedViewportMenu show_viewport_menu;
50a14534
EB
254};
255
b5926b35 256VikLayerInterface *vik_layer_get_interface ( VikLayerTypeEnum type );
50a14534
EB
257
258
b5926b35 259void vik_layer_set_type ( VikLayer *vl, VikLayerTypeEnum type );
45c5ac8e 260void vik_layer_draw ( VikLayer *l, VikViewport *vp );
50a14534
EB
261void vik_layer_change_coord_mode ( VikLayer *l, VikCoordMode mode );
262void vik_layer_rename ( VikLayer *l, const gchar *new_name );
263void vik_layer_rename_no_copy ( VikLayer *l, gchar *new_name );
92558066 264const gchar *vik_layer_get_name ( VikLayer *l );
50a14534 265
158b3642 266gboolean vik_layer_set_param (VikLayer *layer, guint16 id, VikLayerParamData data, gpointer vp, gboolean is_file_operation);
50a14534 267
a7023a1b
RN
268void vik_layer_set_defaults ( VikLayer *vl, VikViewport *vvp );
269
da121f9b 270void vik_layer_emit_update ( VikLayer *vl );
50a14534
EB
271
272/* GUI */
20c7a3a0
QT
273void vik_layer_set_menu_items_selection(VikLayer *l, guint16 selection);
274guint16 vik_layer_get_menu_items_selection(VikLayer *l);
50a14534 275void vik_layer_add_menu_items ( VikLayer *l, GtkMenu *menu, gpointer vlp );
b5926b35 276VikLayer *vik_layer_create ( VikLayerTypeEnum type, gpointer vp, GtkWindow *w, gboolean interactive );
50a14534
EB
277gboolean vik_layer_properties ( VikLayer *layer, gpointer vp );
278
279void vik_layer_realize ( VikLayer *l, VikTreeview *vt, GtkTreeIter * layer_iter );
07059501 280void vik_layer_post_read ( VikLayer *layer, VikViewport *vp, gboolean from_file );
50a14534 281
50eadc64 282gboolean vik_layer_sublayer_add_menu_items ( VikLayer *l, GtkMenu *menu, gpointer vlp, gint subtype, gpointer sublayer, GtkTreeIter *iter, VikViewport *vvp );
50a14534
EB
283
284VikLayer *vik_layer_copy ( VikLayer *vl, gpointer vp );
911400b5
AF
285void vik_layer_marshall ( VikLayer *vl, guint8 **data, gint *len );
286VikLayer *vik_layer_unmarshall ( guint8 *data, gint len, VikViewport *vvp );
287void vik_layer_marshall_params ( VikLayer *vl, guint8 **data, gint *len );
288void vik_layer_unmarshall_params ( VikLayer *vl, guint8 *data, gint len, VikViewport *vvp );
50a14534
EB
289
290const gchar *vik_layer_sublayer_rename_request ( VikLayer *l, const gchar *newname, gpointer vlp, gint subtype, gpointer sublayer, GtkTreeIter *iter );
291
292gboolean vik_layer_sublayer_toggle_visible ( VikLayer *l, gint subtype, gpointer sublayer );
293
9da7faf2
RN
294const gchar* vik_layer_sublayer_tooltip ( VikLayer *l, gint subtype, gpointer sublayer );
295
1e8b7f57
RN
296const gchar* vik_layer_layer_tooltip ( VikLayer *l );
297
a5dcfdb7
RN
298gboolean vik_layer_selected ( VikLayer *l, gint subtype, gpointer sublayer, gint type, gpointer vlp );
299
50a14534 300/* TODO: put in layerspanel */
b5926b35 301GdkPixbuf *vik_layer_load_icon ( VikLayerTypeEnum type );
50a14534 302
0df66d57
EB
303VikLayer *vik_layer_get_and_reset_trigger();
304void vik_layer_emit_update_secondary ( VikLayer *vl ); /* to be called by aggregate layer only. doesn't set the trigger */
305void vik_layer_emit_update_although_invisible ( VikLayer *vl );
306
44b84795
RN
307VikLayerTypeEnum vik_layer_type_from_string ( const gchar *str );
308
176e0989
RN
309typedef struct {
310 VikLayerParamData data;
311 VikLayerParamType type;
312} VikLayerTypedParamData;
313
314void vik_layer_typed_param_data_free ( gpointer gp );
315VikLayerTypedParamData *vik_layer_typed_param_data_copy_from_data ( VikLayerParamType type, VikLayerParamData val );
316VikLayerTypedParamData *vik_layer_data_typed_param_copy_from_string ( VikLayerParamType type, const gchar *str );
317
722b5481
RN
318G_END_DECLS
319
50a14534 320#endif