]> git.street.me.uk Git - andy/viking.git/blame - src/viklayer.h
XDG_CACHE_HOME compliant thumbnail usage
[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;
1b14d0d2 59 VikViewport *vvp;/* simply a reference */
94933cb8 60 VikTreeview *vt; /* simply a reference */
50a14534
EB
61 GtkTreeIter iter;
62
63 /* for explicit "polymorphism" (function type switching) */
b5926b35 64 VikLayerTypeEnum type;
50a14534
EB
65};
66
165d30aa
EB
67/* I think most of these are ignored,
68 * returning GRAB_FOCUS grabs the focus for mouse move,
69 * mouse click, release always grabs focus. Focus allows key presses
70 * to be handled.
71 * It used to be that, if ignored, Viking could look for other layers.
72 * this was useful for clicking a way/trackpoint in any layer,
73 * if no layer was selected (find way/trackpoint)
74 */
941aa6e9
AF
75typedef enum {
76 VIK_LAYER_TOOL_IGNORED=0,
77 VIK_LAYER_TOOL_ACK,
78 VIK_LAYER_TOOL_ACK_REDRAW_ABOVE,
79 VIK_LAYER_TOOL_ACK_REDRAW_ALL,
165d30aa
EB
80 VIK_LAYER_TOOL_ACK_REDRAW_IF_VISIBLE,
81 VIK_LAYER_TOOL_ACK_GRAB_FOCUS, /* only for move */
941aa6e9 82} VikLayerToolFuncStatus;
50a14534 83
941aa6e9
AF
84/* gpointer is tool-specific state created in the constructor */
85typedef gpointer (*VikToolConstructorFunc) (VikWindow *, VikViewport *);
86typedef void (*VikToolDestructorFunc) (gpointer);
87typedef VikLayerToolFuncStatus (*VikToolMouseFunc) (VikLayer *, GdkEventButton *, gpointer);
dc2c040e 88typedef VikLayerToolFuncStatus (*VikToolMouseMoveFunc) (VikLayer *, GdkEventMotion *, gpointer);
941aa6e9 89typedef void (*VikToolActivationFunc) (VikLayer *, gpointer);
777e2d4d 90typedef gboolean (*VikToolKeyFunc) (VikLayer *, GdkEventKey *, gpointer);
50a14534
EB
91
92typedef struct _VikToolInterface VikToolInterface;
93struct _VikToolInterface {
95de0de7 94 const GdkPixdata *icon;
79dce0cb 95 GtkRadioActionEntry radioActionEntry;
941aa6e9
AF
96 VikToolConstructorFunc create;
97 VikToolDestructorFunc destroy;
98 VikToolActivationFunc activate;
99 VikToolActivationFunc deactivate;
100 VikToolMouseFunc click;
dc2c040e 101 VikToolMouseMoveFunc move;
941aa6e9 102 VikToolMouseFunc release;
61a9fb73 103 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 104 gboolean pan_handler; // Call click & release funtions even when 'Pan Mode' is on
f2f2f7bf
GB
105 GdkCursorType cursor_type;
106 const GdkPixdata *cursor_data;
107 const GdkCursor *cursor;
50a14534
EB
108};
109
110/* Parameters (for I/O and Properties) */
28c82d8b 111/* --> moved to uibuilder.h */
50a14534 112
50a14534
EB
113
114/* layer interface functions */
115
116/* Create a new layer of a certain type. Should be filled with defaults */
117typedef VikLayer * (*VikLayerFuncCreate) (VikViewport *);
118
119/* normally only needed for layers with sublayers. This is called when they
120 * are added to the treeview so they can add sublayers to the treeview. */
121typedef void (*VikLayerFuncRealize) (VikLayer *,VikTreeview *,GtkTreeIter *);
122
123/* rarely used, this is called after a read operation or properties box is run.
124 * usually used to create GC's that depend on params,
125 * but GC's can also be created from create() or set_param() */
07059501 126typedef void (*VikLayerFuncPostRead) (VikLayer *,VikViewport *vp,gboolean from_file);
50a14534
EB
127
128typedef void (*VikLayerFuncFree) (VikLayer *);
129
130/* do _not_ use this unless absolutely neccesary. Use the dynamic properties (see coordlayer for example)
131 * returns TRUE if OK was pressed */
07059501 132typedef gboolean (*VikLayerFuncProperties) (VikLayer *,VikViewport *);
50a14534
EB
133
134typedef void (*VikLayerFuncDraw) (VikLayer *,VikViewport *);
135typedef void (*VikLayerFuncChangeCoordMode) (VikLayer *,VikCoordMode);
136
20c7a3a0
QT
137typedef void (*VikLayerFuncSetMenuItemsSelection) (VikLayer *,guint16);
138typedef guint16 (*VikLayerFuncGetMenuItemsSelection) (VikLayer *);
9da7faf2 139
50a14534
EB
140typedef void (*VikLayerFuncAddMenuItems) (VikLayer *,GtkMenu *,gpointer); /* gpointer is a VikLayersPanel */
141typedef gboolean (*VikLayerFuncSublayerAddMenuItems) (VikLayer *,GtkMenu *,gpointer, /* first gpointer is a VikLayersPanel */
50eadc64 142 gint,gpointer,GtkTreeIter *,VikViewport *);
50a14534
EB
143typedef const gchar * (*VikLayerFuncSublayerRenameRequest) (VikLayer *,const gchar *,gpointer,
144 gint,VikViewport *,GtkTreeIter *); /* first gpointer is a VikLayersPanel */
145typedef gboolean (*VikLayerFuncSublayerToggleVisible) (VikLayer *,gint,gpointer);
9da7faf2 146typedef const gchar * (*VikLayerFuncSublayerTooltip) (VikLayer *,gint,gpointer);
1e8b7f57 147typedef const gchar * (*VikLayerFuncLayerTooltip) (VikLayer *);
a5dcfdb7 148typedef gboolean (*VikLayerFuncLayerSelected) (VikLayer *,gint,gpointer,gint,gpointer); /* 2nd gpointer is a VikLayersPanel */
50a14534 149
911400b5
AF
150typedef void (*VikLayerFuncMarshall) (VikLayer *, guint8 **, gint *);
151typedef VikLayer * (*VikLayerFuncUnmarshall) (guint8 *, gint, VikViewport *);
50a14534
EB
152
153/* returns TRUE if needs to redraw due to changed param */
158b3642
RN
154/* in parameter gboolean denotes if for file I/O, as opposed to display/cut/copy etc... operations */
155typedef gboolean (*VikLayerFuncSetParam) (VikLayer *, guint16, VikLayerParamData, VikViewport *, gboolean);
50a14534 156
158b3642 157/* in parameter gboolean denotes if for file I/O, as opposed to display/cut/copy etc... operations */
50a14534 158typedef VikLayerParamData
158b3642 159 (*VikLayerFuncGetParam) (VikLayer *, guint16, gboolean);
50a14534 160
db43cfa4
RN
161typedef void (*VikLayerFuncChangeParam) (GtkWidget *, ui_change_values );
162
1b14d0d2 163typedef gboolean (*VikLayerFuncReadFileData) (VikLayer *, FILE *, const gchar *); // gchar* is the directory path. Function should report success or failure
50a14534
EB
164typedef void (*VikLayerFuncWriteFileData) (VikLayer *, FILE *);
165
33534cd8
AF
166/* item manipulation */
167typedef void (*VikLayerFuncDeleteItem) (VikLayer *, gint, gpointer);
168 /* layer, subtype, pointer to sub-item */
d5874ef9 169typedef void (*VikLayerFuncCutItem) (VikLayer *, gint, gpointer);
ddc47a46 170typedef void (*VikLayerFuncCopyItem) (VikLayer *, gint, gpointer, guint8 **, guint *);
33534cd8 171 /* layer, subtype, pointer to sub-item, return pointer, return len */
ddc47a46 172typedef gboolean (*VikLayerFuncPasteItem) (VikLayer *, gint, guint8 *, guint);
50a14534
EB
173typedef void (*VikLayerFuncFreeCopiedItem) (gint, gpointer);
174
70a23263
AF
175/* treeview drag and drop method. called on the destination layer. it is given a source and destination layer,
176 * and the source and destination iters in the treeview.
177 */
178typedef void (*VikLayerFuncDragDropRequest) (VikLayer *, VikLayer *, GtkTreeIter *, GtkTreePath *);
179
08f14055 180typedef gboolean (*VikLayerFuncSelectClick) (VikLayer *, GdkEventButton *, VikViewport *, tool_ed_t*);
c29a3198 181typedef gboolean (*VikLayerFuncSelectMove) (VikLayer *, GdkEventMotion *, VikViewport *, tool_ed_t*);
08f14055 182typedef gboolean (*VikLayerFuncSelectRelease) (VikLayer *, GdkEventButton *, VikViewport *, tool_ed_t*);
e46f259a 183typedef gboolean (*VikLayerFuncSelectedViewportMenu) (VikLayer *, GdkEventButton *, VikViewport *);
77ad64fa 184
03c97bc3
RN
185typedef time_t (*VikLayerFuncGetTimestamp) (VikLayer *);
186
5a4a28bf
QT
187typedef enum {
188 VIK_MENU_ITEM_PROPERTY=1,
189 VIK_MENU_ITEM_CUT=2,
190 VIK_MENU_ITEM_COPY=4,
191 VIK_MENU_ITEM_PASTE=8,
192 VIK_MENU_ITEM_DELETE=16,
193 VIK_MENU_ITEM_ALL=0xff
194} VikStdLayerMenuItem;
50a14534
EB
195
196typedef struct _VikLayerInterface VikLayerInterface;
197
198/* See vik_layer_* for function parameter names */
199struct _VikLayerInterface {
db386630
RN
200 const gchar * fixed_layer_name; // Used in .vik files - this should never change to maintain file compatibility
201 const gchar * name; // Translate-able name used for display purposes
75078768 202 const gchar * accelerator;
50a14534
EB
203 const GdkPixdata * icon;
204
205 VikToolInterface * tools;
206 guint16 tools_count;
207
208 /* for I/O reading to and from .vik files -- params like coordline width, color, etc. */
209 VikLayerParam * params;
210 guint16 params_count;
211 gchar ** params_groups;
212 guint8 params_groups_count;
213
5a4a28bf
QT
214 /* menu items to be created */
215 VikStdLayerMenuItem menu_items_selection;
216
50a14534
EB
217 VikLayerFuncCreate create;
218 VikLayerFuncRealize realize;
219 VikLayerFuncPostRead post_read;
220 VikLayerFuncFree free;
221
222 VikLayerFuncProperties properties;
223 VikLayerFuncDraw draw;
224 VikLayerFuncChangeCoordMode change_coord_mode;
225
03c97bc3
RN
226 VikLayerFuncGetTimestamp get_timestamp;
227
20c7a3a0
QT
228 VikLayerFuncSetMenuItemsSelection set_menu_selection;
229 VikLayerFuncGetMenuItemsSelection get_menu_selection;
230
50a14534
EB
231 VikLayerFuncAddMenuItems add_menu_items;
232 VikLayerFuncSublayerAddMenuItems sublayer_add_menu_items;
233 VikLayerFuncSublayerRenameRequest sublayer_rename_request;
234 VikLayerFuncSublayerToggleVisible sublayer_toggle_visible;
9da7faf2 235 VikLayerFuncSublayerTooltip sublayer_tooltip;
1e8b7f57 236 VikLayerFuncLayerTooltip layer_tooltip;
a5dcfdb7 237 VikLayerFuncLayerSelected layer_selected;
50a14534 238
911400b5
AF
239 VikLayerFuncMarshall marshall;
240 VikLayerFuncUnmarshall unmarshall;
50a14534
EB
241
242 /* for I/O */
243 VikLayerFuncSetParam set_param;
244 VikLayerFuncGetParam get_param;
db43cfa4 245 VikLayerFuncChangeParam change_param;
50a14534
EB
246
247 /* for I/O -- extra non-param data like TrwLayer data */
248 VikLayerFuncReadFileData read_file_data;
249 VikLayerFuncWriteFileData write_file_data;
250
33534cd8 251 VikLayerFuncDeleteItem delete_item;
d5874ef9 252 VikLayerFuncCutItem cut_item;
50a14534
EB
253 VikLayerFuncCopyItem copy_item;
254 VikLayerFuncPasteItem paste_item;
255 VikLayerFuncFreeCopiedItem free_copied_item;
70a23263
AF
256
257 VikLayerFuncDragDropRequest drag_drop_request;
77ad64fa
RN
258
259 VikLayerFuncSelectClick select_click;
08f14055
RN
260 VikLayerFuncSelectMove select_move;
261 VikLayerFuncSelectRelease select_release;
e46f259a 262 VikLayerFuncSelectedViewportMenu show_viewport_menu;
50a14534
EB
263};
264
b5926b35 265VikLayerInterface *vik_layer_get_interface ( VikLayerTypeEnum type );
50a14534
EB
266
267
b5926b35 268void vik_layer_set_type ( VikLayer *vl, VikLayerTypeEnum type );
45c5ac8e 269void vik_layer_draw ( VikLayer *l, VikViewport *vp );
50a14534
EB
270void vik_layer_change_coord_mode ( VikLayer *l, VikCoordMode mode );
271void vik_layer_rename ( VikLayer *l, const gchar *new_name );
272void vik_layer_rename_no_copy ( VikLayer *l, gchar *new_name );
92558066 273const gchar *vik_layer_get_name ( VikLayer *l );
50a14534 274
03c97bc3
RN
275time_t vik_layer_get_timestamp ( VikLayer *vl );
276
158b3642 277gboolean vik_layer_set_param (VikLayer *layer, guint16 id, VikLayerParamData data, gpointer vp, gboolean is_file_operation);
50a14534 278
a7023a1b
RN
279void vik_layer_set_defaults ( VikLayer *vl, VikViewport *vvp );
280
da121f9b 281void vik_layer_emit_update ( VikLayer *vl );
50a14534
EB
282
283/* GUI */
20c7a3a0
QT
284void vik_layer_set_menu_items_selection(VikLayer *l, guint16 selection);
285guint16 vik_layer_get_menu_items_selection(VikLayer *l);
50a14534 286void vik_layer_add_menu_items ( VikLayer *l, GtkMenu *menu, gpointer vlp );
0ab35525 287VikLayer *vik_layer_create ( VikLayerTypeEnum type, VikViewport *vp, gboolean interactive );
5e630e0e 288gboolean vik_layer_properties ( VikLayer *layer, VikViewport *vp );
50a14534
EB
289
290void vik_layer_realize ( VikLayer *l, VikTreeview *vt, GtkTreeIter * layer_iter );
07059501 291void vik_layer_post_read ( VikLayer *layer, VikViewport *vp, gboolean from_file );
50a14534 292
50eadc64 293gboolean vik_layer_sublayer_add_menu_items ( VikLayer *l, GtkMenu *menu, gpointer vlp, gint subtype, gpointer sublayer, GtkTreeIter *iter, VikViewport *vvp );
50a14534
EB
294
295VikLayer *vik_layer_copy ( VikLayer *vl, gpointer vp );
911400b5
AF
296void vik_layer_marshall ( VikLayer *vl, guint8 **data, gint *len );
297VikLayer *vik_layer_unmarshall ( guint8 *data, gint len, VikViewport *vvp );
298void vik_layer_marshall_params ( VikLayer *vl, guint8 **data, gint *len );
299void vik_layer_unmarshall_params ( VikLayer *vl, guint8 *data, gint len, VikViewport *vvp );
50a14534
EB
300
301const gchar *vik_layer_sublayer_rename_request ( VikLayer *l, const gchar *newname, gpointer vlp, gint subtype, gpointer sublayer, GtkTreeIter *iter );
302
303gboolean vik_layer_sublayer_toggle_visible ( VikLayer *l, gint subtype, gpointer sublayer );
304
9da7faf2
RN
305const gchar* vik_layer_sublayer_tooltip ( VikLayer *l, gint subtype, gpointer sublayer );
306
1e8b7f57
RN
307const gchar* vik_layer_layer_tooltip ( VikLayer *l );
308
a5dcfdb7
RN
309gboolean vik_layer_selected ( VikLayer *l, gint subtype, gpointer sublayer, gint type, gpointer vlp );
310
50a14534 311/* TODO: put in layerspanel */
b5926b35 312GdkPixbuf *vik_layer_load_icon ( VikLayerTypeEnum type );
50a14534 313
0df66d57
EB
314VikLayer *vik_layer_get_and_reset_trigger();
315void vik_layer_emit_update_secondary ( VikLayer *vl ); /* to be called by aggregate layer only. doesn't set the trigger */
316void vik_layer_emit_update_although_invisible ( VikLayer *vl );
317
44b84795
RN
318VikLayerTypeEnum vik_layer_type_from_string ( const gchar *str );
319
176e0989
RN
320typedef struct {
321 VikLayerParamData data;
322 VikLayerParamType type;
323} VikLayerTypedParamData;
324
325void vik_layer_typed_param_data_free ( gpointer gp );
326VikLayerTypedParamData *vik_layer_typed_param_data_copy_from_data ( VikLayerParamType type, VikLayerParamData val );
327VikLayerTypedParamData *vik_layer_data_typed_param_copy_from_string ( VikLayerParamType type, const gchar *str );
328
722b5481
RN
329G_END_DECLS
330
50a14534 331#endif