diff options
Diffstat (limited to 'interface-gtk.h')
-rw-r--r-- | interface-gtk.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/interface-gtk.h b/interface-gtk.h index 661786a..1c62b4a 100644 --- a/interface-gtk.h +++ b/interface-gtk.h @@ -12,6 +12,7 @@ #include "interface.h" extern class InterfaceGtk : public Interface { + GtkWidget *window; GtkWidget *editor_widget; GtkWidget *cmdline_widget; GtkWidget *info_widget, *message_widget; @@ -20,7 +21,7 @@ extern class InterfaceGtk : public Interface { public: InterfaceGtk(); - //~InterfaceGtk(); + ~InterfaceGtk(); inline GOptionGroup * get_options(void) @@ -42,6 +43,9 @@ public: iMessage, wParam, lParam); } + void info_update(QRegister *reg); + void info_update(Buffer *buffer); + void cmdline_update(const gchar *cmdline = NULL); void popup_add_filename(PopupFileType type, |