2 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
4 * Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
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.
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.
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
21 #ifndef _VIKING_LAYER_H
22 #define _VIKING_LAYER_H
27 #include <gdk-pixbuf/gdk-pixdata.h>
29 #include "vikwindow.h"
30 #include "viktreeview.h"
31 #include "vikviewport.h"
33 #define VIK_LAYER_TYPE (vik_layer_get_type ())
34 #define VIK_LAYER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), VIK_LAYER_TYPE, VikLayer))
35 #define VIK_LAYER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), VIK_LAYER_TYPE, VikLayerClass))
36 #define IS_VIK_LAYER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), VIK_LAYER_TYPE))
37 #define IS_VIK_LAYER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), VIK_LAYER_TYPE))
39 typedef struct _VikLayer VikLayer
;
40 typedef struct _VikLayerClass VikLayerClass
;
44 GObjectClass object_class
;
45 void (* update
) (VikLayer
*vl
);
48 GType
vik_layer_get_type ();
56 VikTreeview
*vt
; /* simply a refernce */
59 /* for explicit "polymorphism" (function type switching) */
66 VIK_LAYER_AGGREGATE
= 0,
76 VIK_LAYER_TOOL_IGNORED
=0,
78 VIK_LAYER_TOOL_ACK_REDRAW_ABOVE
,
79 VIK_LAYER_TOOL_ACK_REDRAW_ALL
,
80 VIK_LAYER_TOOL_ACK_REDRAW_IF_VISIBLE
81 } VikLayerToolFuncStatus
;
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 void (*VikToolActivationFunc
) (VikLayer
*, gpointer
);
89 typedef struct _VikToolInterface VikToolInterface
;
90 struct _VikToolInterface
{
92 VikToolConstructorFunc create
;
93 VikToolDestructorFunc destroy
;
94 VikToolActivationFunc activate
;
95 VikToolActivationFunc deactivate
;
96 VikToolMouseFunc click
;
97 VikToolMouseFunc move
;
98 VikToolMouseFunc release
;
101 /* Parameters (for I/O and Properties) */
118 gpointer widget_data
;
119 gpointer extra_widget_data
;
123 VIK_LAYER_NOT_IN_PROPERTIES
=-2,
124 VIK_LAYER_GROUP_NONE
=-1
128 VIK_LAYER_WIDGET_CHECKBUTTON
=0,
129 VIK_LAYER_WIDGET_RADIOGROUP
,
130 VIK_LAYER_WIDGET_SPINBUTTON
,
131 VIK_LAYER_WIDGET_ENTRY
,
132 VIK_LAYER_WIDGET_FILEENTRY
,
133 VIK_LAYER_WIDGET_HSCALE
,
134 VIK_LAYER_WIDGET_COLOR
,
135 VIK_LAYER_WIDGET_COMBOBOX
,
143 } VikLayerParamScale
;
147 VIK_LAYER_PARAM_DOUBLE
=1,
148 VIK_LAYER_PARAM_UINT
,
150 VIK_LAYER_PARAM_STRING
,
151 VIK_LAYER_PARAM_BOOLEAN
,
152 VIK_LAYER_PARAM_COLOR
,
155 /* layer interface functions */
157 /* Create a new layer of a certain type. Should be filled with defaults */
158 typedef VikLayer
* (*VikLayerFuncCreate
) (VikViewport
*);
160 /* normally only needed for layers with sublayers. This is called when they
161 * are added to the treeview so they can add sublayers to the treeview. */
162 typedef void (*VikLayerFuncRealize
) (VikLayer
*,VikTreeview
*,GtkTreeIter
*);
164 /* rarely used, this is called after a read operation or properties box is run.
165 * usually used to create GC's that depend on params,
166 * but GC's can also be created from create() or set_param() */
167 typedef void (*VikLayerFuncPostRead
) (VikLayer
*,gpointer vp
);
169 typedef void (*VikLayerFuncFree
) (VikLayer
*);
171 /* do _not_ use this unless absolutely neccesary. Use the dynamic properties (see coordlayer for example)
172 * returns TRUE if OK was pressed */
173 typedef gboolean (*VikLayerFuncProperties
) (VikLayer
*,VikViewport
*); /* gpointer is a VikViewport */
175 typedef void (*VikLayerFuncDraw
) (VikLayer
*,VikViewport
*);
176 typedef void (*VikLayerFuncChangeCoordMode
) (VikLayer
*,VikCoordMode
);
178 typedef void (*VikLayerFuncSetMenuItemsSelection
) (VikLayer
*,guint16
);
179 typedef guint16 (*VikLayerFuncGetMenuItemsSelection
) (VikLayer
*);
180 typedef void (*VikLayerFuncAddMenuItems
) (VikLayer
*,GtkMenu
*,gpointer
); /* gpointer is a VikLayersPanel */
181 typedef gboolean (*VikLayerFuncSublayerAddMenuItems
) (VikLayer
*,GtkMenu
*,gpointer
, /* first gpointer is a VikLayersPanel */
182 gint
,gpointer
,GtkTreeIter
*);
183 typedef const gchar
* (*VikLayerFuncSublayerRenameRequest
) (VikLayer
*,const gchar
*,gpointer
,
184 gint
,VikViewport
*,GtkTreeIter
*); /* first gpointer is a VikLayersPanel */
185 typedef gboolean (*VikLayerFuncSublayerToggleVisible
) (VikLayer
*,gint
,gpointer
);
187 typedef VikLayer
* (*VikLayerFuncCopy
) (VikLayer
*,VikViewport
*);
188 typedef void (*VikLayerFuncMarshall
) (VikLayer
*, guint8
**, gint
*);
189 typedef VikLayer
* (*VikLayerFuncUnmarshall
) (guint8
*, gint
, VikViewport
*);
191 /* returns TRUE if needs to redraw due to changed param */
192 typedef gboolean (*VikLayerFuncSetParam
) (VikLayer
*, guint16
, VikLayerParamData
, VikViewport
*);
194 typedef VikLayerParamData
195 (*VikLayerFuncGetParam
) (VikLayer
*, guint16
);
197 typedef void (*VikLayerFuncReadFileData
) (VikLayer
*, FILE *);
198 typedef void (*VikLayerFuncWriteFileData
) (VikLayer
*, FILE *);
200 /* item manipulation */
201 typedef void (*VikLayerFuncDeleteItem
) (VikLayer
*, gint
, gpointer
);
202 /* layer, subtype, pointer to sub-item */
203 typedef void (*VikLayerFuncCopyItem
) (VikLayer
*, gint
, gpointer
, guint8
**, guint
*);
204 /* layer, subtype, pointer to sub-item, return pointer, return len */
205 typedef gboolean (*VikLayerFuncPasteItem
) (VikLayer
*, gint
, guint8
*, guint
);
206 typedef void (*VikLayerFuncFreeCopiedItem
) (gint
, gpointer
);
208 /* treeview drag and drop method. called on the destination layer. it is given a source and destination layer,
209 * and the source and destination iters in the treeview.
211 typedef void (*VikLayerFuncDragDropRequest
) (VikLayer
*, VikLayer
*, GtkTreeIter
*, GtkTreePath
*);
214 VIK_MENU_ITEM_PROPERTY
=1,
216 VIK_MENU_ITEM_COPY
=4,
217 VIK_MENU_ITEM_PASTE
=8,
218 VIK_MENU_ITEM_DELETE
=16,
219 VIK_MENU_ITEM_ALL
=0xff
220 } VikStdLayerMenuItem
;
222 typedef struct _VikLayerInterface VikLayerInterface
;
224 /* See vik_layer_* for function parameter names */
225 struct _VikLayerInterface
{
227 const GdkPixdata
* icon
;
229 VikToolInterface
* tools
;
232 /* for I/O reading to and from .vik files -- params like coordline width, color, etc. */
233 VikLayerParam
* params
;
234 guint16 params_count
;
235 gchar
** params_groups
;
236 guint8 params_groups_count
;
238 /* menu items to be created */
239 VikStdLayerMenuItem menu_items_selection
;
241 VikLayerFuncCreate create
;
242 VikLayerFuncRealize realize
;
243 VikLayerFuncPostRead post_read
;
244 VikLayerFuncFree free
;
246 VikLayerFuncProperties properties
;
247 VikLayerFuncDraw draw
;
248 VikLayerFuncChangeCoordMode change_coord_mode
;
250 VikLayerFuncSetMenuItemsSelection set_menu_selection
;
251 VikLayerFuncGetMenuItemsSelection get_menu_selection
;
253 VikLayerFuncAddMenuItems add_menu_items
;
254 VikLayerFuncSublayerAddMenuItems sublayer_add_menu_items
;
255 VikLayerFuncSublayerRenameRequest sublayer_rename_request
;
256 VikLayerFuncSublayerToggleVisible sublayer_toggle_visible
;
258 VikLayerFuncCopy copy
;
259 VikLayerFuncMarshall marshall
;
260 VikLayerFuncUnmarshall unmarshall
;
263 VikLayerFuncSetParam set_param
;
264 VikLayerFuncGetParam get_param
;
266 /* for I/O -- extra non-param data like TrwLayer data */
267 VikLayerFuncReadFileData read_file_data
;
268 VikLayerFuncWriteFileData write_file_data
;
270 VikLayerFuncDeleteItem delete_item
;
271 VikLayerFuncCopyItem copy_item
;
272 VikLayerFuncPasteItem paste_item
;
273 VikLayerFuncFreeCopiedItem free_copied_item
;
275 VikLayerFuncDragDropRequest drag_drop_request
;
278 VikLayerInterface
*vik_layer_get_interface ( gint type
);
281 void vik_layer_init ( VikLayer
*vl
, gint type
);
282 void vik_layer_draw ( VikLayer
*l
, gpointer data
);
283 void vik_layer_change_coord_mode ( VikLayer
*l
, VikCoordMode mode
);
284 void vik_layer_rename ( VikLayer
*l
, const gchar
*new_name
);
285 void vik_layer_rename_no_copy ( VikLayer
*l
, gchar
*new_name
);
287 gboolean
vik_layer_set_param (VikLayer
*layer
, guint16 id
, VikLayerParamData data
, gpointer vp
);
289 void vik_layer_emit_update ( VikLayer
*vl
);
292 void vik_layer_set_menu_items_selection(VikLayer
*l
, guint16 selection
);
293 guint16
vik_layer_get_menu_items_selection(VikLayer
*l
);
294 void vik_layer_add_menu_items ( VikLayer
*l
, GtkMenu
*menu
, gpointer vlp
);
295 VikLayer
*vik_layer_create ( gint type
, gpointer vp
, GtkWindow
*w
, gboolean interactive
);
296 gboolean
vik_layer_properties ( VikLayer
*layer
, gpointer vp
);
298 void vik_layer_realize ( VikLayer
*l
, VikTreeview
*vt
, GtkTreeIter
* layer_iter
);
299 void vik_layer_post_read ( VikLayer
*layer
, gpointer vp
);
301 gboolean
vik_layer_sublayer_add_menu_items ( VikLayer
*l
, GtkMenu
*menu
, gpointer vlp
, gint subtype
, gpointer sublayer
, GtkTreeIter
*iter
);
303 VikLayer
*vik_layer_copy ( VikLayer
*vl
, gpointer vp
);
304 void vik_layer_marshall ( VikLayer
*vl
, guint8
**data
, gint
*len
);
305 VikLayer
*vik_layer_unmarshall ( guint8
*data
, gint len
, VikViewport
*vvp
);
306 void vik_layer_marshall_params ( VikLayer
*vl
, guint8
**data
, gint
*len
);
307 void vik_layer_unmarshall_params ( VikLayer
*vl
, guint8
*data
, gint len
, VikViewport
*vvp
);
309 const gchar
*vik_layer_sublayer_rename_request ( VikLayer
*l
, const gchar
*newname
, gpointer vlp
, gint subtype
, gpointer sublayer
, GtkTreeIter
*iter
);
311 gboolean
vik_layer_sublayer_toggle_visible ( VikLayer
*l
, gint subtype
, gpointer sublayer
);
313 /* TODO: put in layerspanel */
314 GdkPixbuf
*vik_layer_load_icon ( gint type
);