lexer: Reimplement for better testability and internationalization.
[pspp-builds.git] / src / ui / gui / psppire-syntax-window.h
index 3e4edf87ade076ab2e084f5392d7a77d1a5c6a6a..2b1fe03f4d00894fc1af62e5b063873759a69f9f 100644 (file)
@@ -48,11 +48,20 @@ struct _PsppireSyntaxWindow
   /* <private> */
 
   GtkTextBuffer *buffer;  /* The buffer which contains the text */
-  struct lexer *lexer;    /* Lexer to parse syntax */
   GtkWidget *sb;
   guint text_context;
 
   gchar *cliptext;
+
+  GtkAction *edit_cut;
+  GtkAction *edit_copy;
+  GtkAction *edit_delete;
+  GtkAction *edit_paste;
+
+  gulong ps_handler;
+  gulong sel_handler;
+
+  gboolean dispose_has_run;
 };
 
 struct _PsppireSyntaxWindowClass