]> git.street.me.uk Git - andy/viking.git/blame - src/viklayer.h
Initial GPX support, experimental 3-d plotting, bugfixes, oh myg
[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 */
21
22#ifndef _VIKING_LAYER_H
23#define _VIKING_LAYER_H
24
25#define VIK_LAYER_TYPE (vik_layer_get_type ())
26#define VIK_LAYER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), VIK_LAYER_TYPE, VikLayer))
27#define VIK_LAYER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), VIK_LAYER_TYPE, VikLayerClass))
28#define IS_VIK_LAYER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), VIK_LAYER_TYPE))
29#define IS_VIK_LAYER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), VIK_LAYER_TYPE))
30
31typedef struct _VikLayer VikLayer;
32typedef struct _VikLayerClass VikLayerClass;
33
34struct _VikLayerClass
35{
36 GObjectClass object_class;
37 void (* update) (VikLayer *vl);
38};
39
40GType vik_layer_get_type ();
41
42struct _VikLayer {
43 GObject obj;
44 gchar *name;
45 gboolean visible;
46
47 gboolean realized;
48 VikTreeview *vt; /* simply a refernce */
49 GtkTreeIter iter;
50
51 /* for explicit "polymorphism" (function type switching) */
52 guint16 type;
53};
54
55
56
57enum {
58VIK_LAYER_AGGREGATE = 0,
59VIK_LAYER_TRW,
60VIK_LAYER_COORD,
61VIK_LAYER_GEOREF,
62VIK_LAYER_MAPS,
63VIK_LAYER_NUM_TYPES
64};
65
66typedef enum { VIK_LAYER_TOOL_IGNORED=0,
67 VIK_LAYER_TOOL_ACK,
68 VIK_LAYER_TOOL_ACK_REDRAW_ABOVE,
69 VIK_LAYER_TOOL_ACK_REDRAW_ALL,
70 VIK_LAYER_TOOL_ACK_REDRAW_IF_VISIBLE }
71 VikLayerToolFuncStatus;
72typedef VikLayerToolFuncStatus (*VikToolInterfaceFunc) (VikLayer *,GdkEventButton *,gpointer);
73
74/* gpointer is viewport */
75
76typedef struct _VikToolInterface VikToolInterface;
77struct _VikToolInterface {
78 gchar *name;
79 VikToolInterfaceFunc callback;
80 VikToolInterfaceFunc callback_release;
81};
82
83/* Parameters (for I/O and Properties) */
84
85typedef union {
86 gdouble d;
87 guint32 u;
88 gint32 i;
89 gboolean b;
90 const gchar *s;
91 GdkColor c;
92} VikLayerParamData;
93
94typedef struct {
95 const gchar *name;
96 guint8 type;
97 gint16 group;
98 const gchar *title;
99 guint8 widget_type;
100 const gpointer widget_data;
101 const gpointer extra_widget_data;
102} VikLayerParam;
103
104enum {
105VIK_LAYER_NOT_IN_PROPERTIES=-2,
106VIK_LAYER_GROUP_NONE=-1
107};
108
109enum {
110VIK_LAYER_WIDGET_CHECKBUTTON=0,
111VIK_LAYER_WIDGET_RADIOGROUP,
112VIK_LAYER_WIDGET_SPINBUTTON,
113VIK_LAYER_WIDGET_ENTRY,
114VIK_LAYER_WIDGET_FILEENTRY,
115VIK_LAYER_WIDGET_HSCALE,
116VIK_LAYER_WIDGET_COLOR,
117VIK_LAYER_WIDGET_COMBOBOX,
118};
119
120typedef struct {
121 gdouble min;
122 gdouble max;
123 gdouble step;
124 guint8 digits;
125} VikLayerParamScale;
126
127/* id is index */
128enum {
129VIK_LAYER_PARAM_DOUBLE=1,
130VIK_LAYER_PARAM_UINT,
131VIK_LAYER_PARAM_INT,
132VIK_LAYER_PARAM_STRING,
133VIK_LAYER_PARAM_BOOLEAN,
134VIK_LAYER_PARAM_COLOR,
135};
136
137/* layer interface functions */
138
139/* Create a new layer of a certain type. Should be filled with defaults */
140typedef VikLayer * (*VikLayerFuncCreate) (VikViewport *);
141
142/* normally only needed for layers with sublayers. This is called when they
143 * are added to the treeview so they can add sublayers to the treeview. */
144typedef void (*VikLayerFuncRealize) (VikLayer *,VikTreeview *,GtkTreeIter *);
145
146/* rarely used, this is called after a read operation or properties box is run.
147 * usually used to create GC's that depend on params,
148 * but GC's can also be created from create() or set_param() */
149typedef void (*VikLayerFuncPostRead) (VikLayer *,gpointer vp);
150
151typedef void (*VikLayerFuncFree) (VikLayer *);
152
153/* do _not_ use this unless absolutely neccesary. Use the dynamic properties (see coordlayer for example)
154 * returns TRUE if OK was pressed */
155typedef gboolean (*VikLayerFuncProperties) (VikLayer *,VikViewport *); /* gpointer is a VikViewport */
156
157typedef void (*VikLayerFuncDraw) (VikLayer *,VikViewport *);
158typedef void (*VikLayerFuncChangeCoordMode) (VikLayer *,VikCoordMode);
159
160typedef void (*VikLayerFuncAddMenuItems) (VikLayer *,GtkMenu *,gpointer); /* gpointer is a VikLayersPanel */
161typedef gboolean (*VikLayerFuncSublayerAddMenuItems) (VikLayer *,GtkMenu *,gpointer, /* first gpointer is a VikLayersPanel */
162 gint,gpointer,GtkTreeIter *);
163typedef const gchar * (*VikLayerFuncSublayerRenameRequest) (VikLayer *,const gchar *,gpointer,
164 gint,VikViewport *,GtkTreeIter *); /* first gpointer is a VikLayersPanel */
165typedef gboolean (*VikLayerFuncSublayerToggleVisible) (VikLayer *,gint,gpointer);
166
167typedef VikLayer * (*VikLayerFuncCopy) (VikLayer *,VikViewport *);
168
169/* returns TRUE if needs to redraw due to changed param */
170typedef gboolean (*VikLayerFuncSetParam) (VikLayer *, guint16, VikLayerParamData, VikViewport *);
171
172typedef VikLayerParamData
173 (*VikLayerFuncGetParam) (VikLayer *, guint16);
174
175typedef void (*VikLayerFuncReadFileData) (VikLayer *, FILE *);
176typedef void (*VikLayerFuncWriteFileData) (VikLayer *, FILE *);
177
178typedef gpointer (*VikLayerFuncCopyItem) (VikLayer *, gint, gpointer);
179typedef gboolean (*VikLayerFuncPasteItem) (VikLayer *, gint, gpointer);
180typedef void (*VikLayerFuncFreeCopiedItem) (gint, gpointer);
181
182
183typedef struct _VikLayerInterface VikLayerInterface;
184
185/* See vik_layer_* for function parameter names */
186struct _VikLayerInterface {
187 const gchar * name;
188 const GdkPixdata * icon;
189
190 VikToolInterface * tools;
191 guint16 tools_count;
192
193 /* for I/O reading to and from .vik files -- params like coordline width, color, etc. */
194 VikLayerParam * params;
195 guint16 params_count;
196 gchar ** params_groups;
197 guint8 params_groups_count;
198
199 VikLayerFuncCreate create;
200 VikLayerFuncRealize realize;
201 VikLayerFuncPostRead post_read;
202 VikLayerFuncFree free;
203
204 VikLayerFuncProperties properties;
205 VikLayerFuncDraw draw;
206 VikLayerFuncChangeCoordMode change_coord_mode;
207
208 VikLayerFuncAddMenuItems add_menu_items;
209 VikLayerFuncSublayerAddMenuItems sublayer_add_menu_items;
210 VikLayerFuncSublayerRenameRequest sublayer_rename_request;
211 VikLayerFuncSublayerToggleVisible sublayer_toggle_visible;
212
213 VikLayerFuncCopy copy;
214
215 /* for I/O */
216 VikLayerFuncSetParam set_param;
217 VikLayerFuncGetParam get_param;
218
219 /* for I/O -- extra non-param data like TrwLayer data */
220 VikLayerFuncReadFileData read_file_data;
221 VikLayerFuncWriteFileData write_file_data;
222
223 VikLayerFuncCopyItem copy_item;
224 VikLayerFuncPasteItem paste_item;
225 VikLayerFuncFreeCopiedItem free_copied_item;
226};
227
228VikLayerInterface *vik_layer_get_interface ( gint type );
229
230
231void vik_layer_init ( VikLayer *vl, gint type );
232void vik_layer_draw ( VikLayer *l, gpointer data );
233void vik_layer_change_coord_mode ( VikLayer *l, VikCoordMode mode );
234void vik_layer_rename ( VikLayer *l, const gchar *new_name );
235void vik_layer_rename_no_copy ( VikLayer *l, gchar *new_name );
236
237gboolean vik_layer_set_param (VikLayer *layer, guint16 id, VikLayerParamData data, gpointer vp);
238
239void vik_layer_emit_update ( VikLayer *vl );
240
241/* GUI */
242void vik_layer_add_menu_items ( VikLayer *l, GtkMenu *menu, gpointer vlp );
243VikLayer *vik_layer_create ( gint type, gpointer vp, GtkWindow *w, gboolean interactive );
244gboolean vik_layer_properties ( VikLayer *layer, gpointer vp );
245
246void vik_layer_realize ( VikLayer *l, VikTreeview *vt, GtkTreeIter * layer_iter );
247void vik_layer_post_read ( VikLayer *layer, gpointer vp );
248
249gboolean vik_layer_sublayer_add_menu_items ( VikLayer *l, GtkMenu *menu, gpointer vlp, gint subtype, gpointer sublayer, GtkTreeIter *iter );
250
251VikLayer *vik_layer_copy ( VikLayer *vl, gpointer vp );
252
253const gchar *vik_layer_sublayer_rename_request ( VikLayer *l, const gchar *newname, gpointer vlp, gint subtype, gpointer sublayer, GtkTreeIter *iter );
254
255gboolean vik_layer_sublayer_toggle_visible ( VikLayer *l, gint subtype, gpointer sublayer );
256
257/* TODO: put in layerspanel */
258GdkPixbuf *vik_layer_load_icon ( gint type );
259
260#endif