Fix:maptool:Another name for faroe islands
[navit-package] / navit / gui.h
index 7787158..b19b512 100644 (file)
@@ -36,6 +36,10 @@ struct gui_methods {
        int (*run_main_loop)(struct gui_priv *priv);
        struct datawindow_priv *(*datawindow_new)(struct gui_priv *priv, char *name, struct callback *click, struct callback *close, struct datawindow_methods *meth);
        int (*add_bookmark)(struct gui_priv *priv, struct pcoord *c, char *description);
+       void (*disable_suspend)(struct gui_priv *priv);
+       int (*get_attr)(struct gui_priv *priv, enum attr_type type, struct attr *attr);
+       int (*add_attr)(struct gui_priv *priv, struct attr *attr);
+       int (*set_attr)(struct gui_priv *priv, struct attr *attr);
 };
 
 
@@ -48,15 +52,17 @@ struct datawindow;
 struct graphics;
 struct gui;
 struct menu;
-struct navit;
 struct pcoord;
 struct gui *gui_new(struct attr *parent, struct attr **attrs);
 int gui_get_attr(struct gui *this_, enum attr_type type, struct attr *attr, struct attr_iter *iter);
+int gui_set_attr(struct gui *this_, struct attr *attr);
+int gui_add_attr(struct gui *this_, struct attr *attr);
 struct menu *gui_menubar_new(struct gui *gui);
 struct menu *gui_popup_new(struct gui *gui);
 struct datawindow *gui_datawindow_new(struct gui *gui, char *name, struct callback *click, struct callback *close);
 int gui_add_bookmark(struct gui *gui, struct pcoord *c, char *description);
 int gui_set_graphics(struct gui *this_, struct graphics *gra);
+void gui_disable_suspend(struct gui *this_);
 int gui_has_main_loop(struct gui *this_);
 int gui_run_main_loop(struct gui *this_);
 /* end of prototypes */