Add:gui_internal:Further work on flexible menus
[navit-package] / navit / gui.c
1 /**
2  * Navit, a modular navigation system.
3  * Copyright (C) 2005-2008 Navit Team
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * version 2 as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA  02110-1301, USA.
18  */
19
20 #include <glib.h>
21 #include <string.h>
22 #include "debug.h"
23 #include "callback.h"
24 #include "gui.h"
25 #include "menu.h"
26 #include "data_window.h"
27 #include "item.h"
28 #include "plugin.h"
29
30 struct gui {
31         struct gui_methods meth;
32         struct gui_priv *priv;
33         struct attr **attrs;
34         struct attr parent;
35 };
36
37 struct gui *
38 gui_new(struct attr *parent, struct attr **attrs)
39 {
40         struct gui *this_;
41         struct attr *type_attr;
42         struct gui_priv *(*guitype_new)(struct navit *nav, struct gui_methods *meth, struct attr **attrs);
43         struct attr cbl;
44         if (! (type_attr=attr_search(attrs, NULL, attr_type))) {
45                 return NULL;
46         }
47
48         guitype_new=plugin_get_gui_type(type_attr->u.str);
49         if (! guitype_new)
50                 return NULL;
51
52         this_=g_new0(struct gui, 1);
53         this_->attrs=attr_list_dup(attrs);
54         cbl.type=attr_callback_list;
55         cbl.u.callback_list=callback_list_new();
56         this_->attrs=attr_generic_add_attr(this_->attrs, &cbl);
57         this_->priv=guitype_new(parent->u.navit, &this_->meth, this_->attrs);
58         this_->parent=*parent;
59         return this_;
60 }
61
62 int
63 gui_get_attr(struct gui *this_, enum attr_type type, struct attr *attr, struct attr_iter *iter)
64 {
65         int ret;
66         if (this_->meth.get_attr) {
67                 ret=this_->meth.get_attr(this_->priv, type, attr);
68                 if (ret)
69                         return ret;
70         }
71         if (type == this_->parent.type) {
72                 *attr=this_->parent;
73                 return 1;
74         }
75         return attr_generic_get_attr(this_->attrs, NULL, type, attr, iter);
76 }
77
78 struct menu *
79 gui_menubar_new(struct gui *gui)
80 {
81         struct menu *this_;
82         if (! gui->meth.menubar_new)
83                 return NULL;
84         this_=g_new0(struct menu, 1);
85         this_->priv=gui->meth.menubar_new(gui->priv, &this_->meth);
86         if (! this_->priv) {
87                 g_free(this_);
88                 return NULL;
89         }
90         return this_;
91 }
92
93 struct menu *
94 gui_popup_new(struct gui *gui)
95 {
96         struct menu *this_;
97         if (! gui->meth.popup_new)
98                 return NULL;
99         this_=g_new0(struct menu, 1);
100         this_->priv=gui->meth.popup_new(gui->priv, &this_->meth);
101         if (! this_->priv) {
102                 g_free(this_);
103                 return NULL;
104         }
105         return this_;
106 }
107
108 struct datawindow *
109 gui_datawindow_new(struct gui *gui, char *name, struct callback *click, struct callback *close)
110 {
111         struct datawindow *this_;
112         if (! gui->meth.datawindow_new)
113                 return NULL;
114         this_=g_new0(struct datawindow, 1);
115         this_->priv=gui->meth.datawindow_new(gui->priv, name, click, close, &this_->meth);
116         if (! this_->priv) {
117                 g_free(this_);
118                 return NULL;
119         }
120         return this_;
121 }
122
123 int
124 gui_add_bookmark(struct gui *gui, struct pcoord *c, char *description)
125 {
126         int ret;
127         dbg(2,"enter\n");
128         if (! gui->meth.add_bookmark)
129                 return 0;
130         ret=gui->meth.add_bookmark(gui->priv, c, description);
131         
132         dbg(2,"ret=%d\n", ret);
133         return ret;
134 }
135
136 int
137 gui_set_graphics(struct gui *this_, struct graphics *gra)
138 {
139         if (! this_->meth.set_graphics)
140                 return 1;
141         return this_->meth.set_graphics(this_->priv, gra);
142 }
143
144 void
145 gui_disable_suspend(struct gui *this_)
146 {
147         if (this_->meth.disable_suspend)
148                 this_->meth.disable_suspend(this_->priv);
149 }
150
151 int
152 gui_has_main_loop(struct gui *this_)
153 {
154         if (! this_->meth.run_main_loop)
155                 return 0;
156         return 1;
157 }
158
159 int
160 gui_run_main_loop(struct gui *this_)
161 {
162         if (! gui_has_main_loop(this_))
163                 return 1;
164         return this_->meth.run_main_loop(this_->priv);
165 }
166