]> git.street.me.uk Git - andy/viking.git/blob - src/viklayer.h
Enable widget sensitivity in the layer properties to be controlled.
[andy/viking.git] / src / viklayer.h
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  */
21 #ifndef _VIKING_LAYER_H
22 #define _VIKING_LAYER_H
23
24 #include <stdio.h>
25 #include <glib.h>
26 #include <gtk/gtk.h>
27 #include <gdk-pixbuf/gdk-pixdata.h>
28
29 #include "uibuilder.h"
30 #include "vikwindow.h"
31 #include "viktreeview.h"
32 #include "vikviewport.h"
33
34 G_BEGIN_DECLS
35
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
42 typedef struct _VikLayer VikLayer;
43 typedef struct _VikLayerClass VikLayerClass;
44
45 struct _VikLayerClass
46 {
47   GObjectClass object_class;
48   void (* update) (VikLayer *vl);
49 };
50
51 GType vik_layer_get_type ();
52
53 struct _VikLayer {
54   GObject obj;
55   gchar *name;
56   gboolean visible;
57
58   gboolean realized;
59   VikTreeview *vt; /* simply a reference */
60   GtkTreeIter iter;
61
62   /* for explicit "polymorphism" (function type switching) */
63   VikLayerTypeEnum type;
64 };
65
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  */
74 typedef 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,
79   VIK_LAYER_TOOL_ACK_REDRAW_IF_VISIBLE,
80   VIK_LAYER_TOOL_ACK_GRAB_FOCUS, /* only for move */
81 } VikLayerToolFuncStatus;
82
83 /* gpointer is tool-specific state created in the constructor */
84 typedef gpointer (*VikToolConstructorFunc) (VikWindow *, VikViewport *);
85 typedef void (*VikToolDestructorFunc) (gpointer);
86 typedef VikLayerToolFuncStatus (*VikToolMouseFunc) (VikLayer *, GdkEventButton *, gpointer);
87 typedef VikLayerToolFuncStatus (*VikToolMouseMoveFunc) (VikLayer *, GdkEventMotion *, gpointer);
88 typedef void (*VikToolActivationFunc) (VikLayer *, gpointer);
89 typedef gboolean (*VikToolKeyFunc) (VikLayer *, GdkEventKey *, gpointer);
90
91 typedef struct _VikToolInterface VikToolInterface;
92 struct _VikToolInterface {
93   GtkRadioActionEntry radioActionEntry;
94   VikToolConstructorFunc create;
95   VikToolDestructorFunc destroy;
96   VikToolActivationFunc activate;
97   VikToolActivationFunc deactivate;
98   VikToolMouseFunc click;
99   VikToolMouseMoveFunc move;
100   VikToolMouseFunc release;
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. */
102   gboolean pan_handler; // Call click & release funtions even when 'Pan Mode' is on
103   GdkCursorType cursor_type;
104   const GdkPixdata *cursor_data;
105   const GdkCursor *cursor;
106 };
107
108 /* Parameters (for I/O and Properties) */
109 /* --> moved to uibuilder.h */
110
111
112 /* layer interface functions */
113
114 /* Create a new layer of a certain type. Should be filled with defaults */
115 typedef 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. */
119 typedef 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() */
124 typedef void          (*VikLayerFuncPostRead)              (VikLayer *,VikViewport *vp,gboolean from_file);
125
126 typedef 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 */
130 typedef gboolean      (*VikLayerFuncProperties)            (VikLayer *,VikViewport *);
131
132 typedef void          (*VikLayerFuncDraw)                  (VikLayer *,VikViewport *);
133 typedef void          (*VikLayerFuncChangeCoordMode)       (VikLayer *,VikCoordMode);
134
135 typedef void          (*VikLayerFuncSetMenuItemsSelection)          (VikLayer *,guint16);
136 typedef guint16          (*VikLayerFuncGetMenuItemsSelection)          (VikLayer *);
137
138 typedef void          (*VikLayerFuncAddMenuItems)          (VikLayer *,GtkMenu *,gpointer); /* gpointer is a VikLayersPanel */
139 typedef gboolean      (*VikLayerFuncSublayerAddMenuItems)  (VikLayer *,GtkMenu *,gpointer, /* first gpointer is a VikLayersPanel */
140                                                             gint,gpointer,GtkTreeIter *,VikViewport *);
141 typedef const gchar * (*VikLayerFuncSublayerRenameRequest) (VikLayer *,const gchar *,gpointer,
142                                                             gint,VikViewport *,GtkTreeIter *); /* first gpointer is a VikLayersPanel */
143 typedef gboolean      (*VikLayerFuncSublayerToggleVisible) (VikLayer *,gint,gpointer);
144 typedef const gchar * (*VikLayerFuncSublayerTooltip)       (VikLayer *,gint,gpointer);
145 typedef const gchar * (*VikLayerFuncLayerTooltip)          (VikLayer *);
146 typedef gboolean      (*VikLayerFuncLayerSelected)         (VikLayer *,gint,gpointer,gint,gpointer); /* 2nd gpointer is a VikLayersPanel */
147
148 typedef void          (*VikLayerFuncMarshall)              (VikLayer *, guint8 **, gint *);
149 typedef VikLayer *    (*VikLayerFuncUnmarshall)            (guint8 *, gint, VikViewport *);
150
151 /* returns TRUE if needs to redraw due to changed param */
152 /* in parameter gboolean denotes if for file I/O, as opposed to display/cut/copy etc... operations */
153 typedef gboolean      (*VikLayerFuncSetParam)              (VikLayer *, guint16, VikLayerParamData, VikViewport *, gboolean);
154
155 /* in parameter gboolean denotes if for file I/O, as opposed to display/cut/copy etc... operations */
156 typedef VikLayerParamData
157                       (*VikLayerFuncGetParam)              (VikLayer *, guint16, gboolean);
158
159 typedef void          (*VikLayerFuncChangeParam)           (GtkWidget *, ui_change_values );
160
161 typedef gboolean      (*VikLayerFuncReadFileData)          (VikLayer *, FILE *); // Should report success or failure
162 typedef void          (*VikLayerFuncWriteFileData)         (VikLayer *, FILE *);
163
164 /* item manipulation */
165 typedef void          (*VikLayerFuncDeleteItem)            (VikLayer *, gint, gpointer);
166                                                          /*      layer, subtype, pointer to sub-item */
167 typedef void          (*VikLayerFuncCutItem)               (VikLayer *, gint, gpointer);
168 typedef void          (*VikLayerFuncCopyItem)              (VikLayer *, gint, gpointer, guint8 **, guint *);
169                                                          /*      layer, subtype, pointer to sub-item, return pointer, return len */
170 typedef gboolean      (*VikLayerFuncPasteItem)             (VikLayer *, gint, guint8 *, guint);
171 typedef void          (*VikLayerFuncFreeCopiedItem)        (gint, gpointer);
172
173 /* treeview drag and drop method. called on the destination layer. it is given a source and destination layer, 
174  * and the source and destination iters in the treeview. 
175  */
176 typedef void          (*VikLayerFuncDragDropRequest)       (VikLayer *, VikLayer *, GtkTreeIter *, GtkTreePath *);
177
178 typedef gboolean      (*VikLayerFuncSelectClick)           (VikLayer *, GdkEventButton *, VikViewport *, tool_ed_t*);
179 typedef gboolean      (*VikLayerFuncSelectMove)            (VikLayer *, GdkEventButton *, VikViewport *, tool_ed_t*);
180 typedef gboolean      (*VikLayerFuncSelectRelease)         (VikLayer *, GdkEventButton *, VikViewport *, tool_ed_t*);
181 typedef gboolean      (*VikLayerFuncSelectedViewportMenu)  (VikLayer *, GdkEventButton *, VikViewport *);
182
183 typedef enum {
184   VIK_MENU_ITEM_PROPERTY=1,
185   VIK_MENU_ITEM_CUT=2,
186   VIK_MENU_ITEM_COPY=4,
187   VIK_MENU_ITEM_PASTE=8,
188   VIK_MENU_ITEM_DELETE=16,
189   VIK_MENU_ITEM_ALL=0xff
190 } VikStdLayerMenuItem;
191
192 typedef struct _VikLayerInterface VikLayerInterface;
193
194 /* See vik_layer_* for function parameter names */
195 struct _VikLayerInterface {
196   const gchar *                     fixed_layer_name; // Used in .vik files - this should never change to maintain file compatibility
197   const gchar *                     name;             // Translate-able name used for display purposes
198   const gchar *                     accelerator;
199   const GdkPixdata *                icon;
200
201   VikToolInterface *                tools;
202   guint16                           tools_count;
203
204   /* for I/O reading to and from .vik files -- params like coordline width, color, etc. */
205   VikLayerParam *                   params;
206   guint16                           params_count;
207   gchar **                          params_groups;
208   guint8                            params_groups_count;
209
210   /* menu items to be created */
211   VikStdLayerMenuItem               menu_items_selection;
212
213   VikLayerFuncCreate                create;
214   VikLayerFuncRealize               realize;
215   VikLayerFuncPostRead              post_read;
216   VikLayerFuncFree                  free;
217
218   VikLayerFuncProperties            properties;
219   VikLayerFuncDraw                  draw;
220   VikLayerFuncChangeCoordMode       change_coord_mode;
221
222   VikLayerFuncSetMenuItemsSelection set_menu_selection;
223   VikLayerFuncGetMenuItemsSelection get_menu_selection;
224
225   VikLayerFuncAddMenuItems          add_menu_items;
226   VikLayerFuncSublayerAddMenuItems  sublayer_add_menu_items;
227   VikLayerFuncSublayerRenameRequest sublayer_rename_request;
228   VikLayerFuncSublayerToggleVisible sublayer_toggle_visible;
229   VikLayerFuncSublayerTooltip       sublayer_tooltip;
230   VikLayerFuncLayerTooltip          layer_tooltip;
231   VikLayerFuncLayerSelected         layer_selected;
232
233   VikLayerFuncMarshall              marshall;
234   VikLayerFuncUnmarshall            unmarshall;
235
236   /* for I/O */
237   VikLayerFuncSetParam              set_param;
238   VikLayerFuncGetParam              get_param;
239   VikLayerFuncChangeParam           change_param;
240
241   /* for I/O -- extra non-param data like TrwLayer data */
242   VikLayerFuncReadFileData          read_file_data;
243   VikLayerFuncWriteFileData         write_file_data;
244
245   VikLayerFuncDeleteItem            delete_item;
246   VikLayerFuncCutItem               cut_item;
247   VikLayerFuncCopyItem              copy_item;
248   VikLayerFuncPasteItem             paste_item;
249   VikLayerFuncFreeCopiedItem        free_copied_item;
250
251   VikLayerFuncDragDropRequest       drag_drop_request;
252
253   VikLayerFuncSelectClick           select_click;
254   VikLayerFuncSelectMove            select_move;
255   VikLayerFuncSelectRelease         select_release;
256   VikLayerFuncSelectedViewportMenu  show_viewport_menu;
257 };
258
259 VikLayerInterface *vik_layer_get_interface ( VikLayerTypeEnum type );
260
261
262 void vik_layer_set_type ( VikLayer *vl, VikLayerTypeEnum type );
263 void vik_layer_draw ( VikLayer *l, VikViewport *vp );
264 void vik_layer_change_coord_mode ( VikLayer *l, VikCoordMode mode );
265 void vik_layer_rename ( VikLayer *l, const gchar *new_name );
266 void vik_layer_rename_no_copy ( VikLayer *l, gchar *new_name );
267 const gchar *vik_layer_get_name ( VikLayer *l );
268
269 gboolean vik_layer_set_param (VikLayer *layer, guint16 id, VikLayerParamData data, gpointer vp, gboolean is_file_operation);
270
271 void vik_layer_set_defaults ( VikLayer *vl, VikViewport *vvp );
272
273 void vik_layer_emit_update ( VikLayer *vl );
274
275 /* GUI */
276 void vik_layer_set_menu_items_selection(VikLayer *l, guint16 selection);
277 guint16 vik_layer_get_menu_items_selection(VikLayer *l);
278 void vik_layer_add_menu_items ( VikLayer *l, GtkMenu *menu, gpointer vlp );
279 VikLayer *vik_layer_create ( VikLayerTypeEnum type, gpointer vp, GtkWindow *w, gboolean interactive );
280 gboolean vik_layer_properties ( VikLayer *layer, gpointer vp );
281
282 void vik_layer_realize ( VikLayer *l, VikTreeview *vt, GtkTreeIter * layer_iter );
283 void vik_layer_post_read ( VikLayer *layer, VikViewport *vp, gboolean from_file );
284
285 gboolean vik_layer_sublayer_add_menu_items ( VikLayer *l, GtkMenu *menu, gpointer vlp, gint subtype, gpointer sublayer, GtkTreeIter *iter, VikViewport *vvp );
286
287 VikLayer *vik_layer_copy ( VikLayer *vl, gpointer vp );
288 void      vik_layer_marshall ( VikLayer *vl, guint8 **data, gint *len );
289 VikLayer *vik_layer_unmarshall ( guint8 *data, gint len, VikViewport *vvp );
290 void      vik_layer_marshall_params ( VikLayer *vl, guint8 **data, gint *len );
291 void      vik_layer_unmarshall_params ( VikLayer *vl, guint8 *data, gint len, VikViewport *vvp );
292
293 const gchar *vik_layer_sublayer_rename_request ( VikLayer *l, const gchar *newname, gpointer vlp, gint subtype, gpointer sublayer, GtkTreeIter *iter );
294
295 gboolean vik_layer_sublayer_toggle_visible ( VikLayer *l, gint subtype, gpointer sublayer );
296
297 const gchar* vik_layer_sublayer_tooltip ( VikLayer *l, gint subtype, gpointer sublayer );
298
299 const gchar* vik_layer_layer_tooltip ( VikLayer *l );
300
301 gboolean vik_layer_selected ( VikLayer *l, gint subtype, gpointer sublayer, gint type, gpointer vlp );
302
303 /* TODO: put in layerspanel */
304 GdkPixbuf *vik_layer_load_icon ( VikLayerTypeEnum type );
305
306 VikLayer *vik_layer_get_and_reset_trigger();
307 void vik_layer_emit_update_secondary ( VikLayer *vl ); /* to be called by aggregate layer only. doesn't set the trigger */
308 void vik_layer_emit_update_although_invisible ( VikLayer *vl );
309
310 VikLayerTypeEnum vik_layer_type_from_string ( const gchar *str );
311
312 typedef struct {
313   VikLayerParamData data;
314   VikLayerParamType type;
315 } VikLayerTypedParamData;
316
317 void vik_layer_typed_param_data_free ( gpointer gp );
318 VikLayerTypedParamData *vik_layer_typed_param_data_copy_from_data ( VikLayerParamType type, VikLayerParamData val );
319 VikLayerTypedParamData *vik_layer_data_typed_param_copy_from_string ( VikLayerParamType type, const gchar *str );
320
321 G_END_DECLS
322
323 #endif