Removed my authorship lines.
[pspp] / src / ui / gui / psppire-data-store.h
index d9b058432bdcc9f4f4f284b28278401b2b761985..c3482cf4cb2accaa60253c1ab6a8f09563224cc3 100644 (file)
@@ -2,7 +2,6 @@
  
    PSPPIRE --- A Graphical User Interface for PSPP
    Copyright (C) 2006  Free Software Foundation
-   Written by John Darrington
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -59,7 +58,11 @@ struct _PsppireDataStore
   /*< private >*/
   PsppireDict *dict;
   PsppireCaseFile *case_file;
-  PangoFontDescription *font_desc;
+  const PangoFontDescription *font_desc;
+
+  /* The width of an upper case 'M' rendered in the current font */
+  gint width_of_m ; 
+  
   gboolean show_labels;
 
   /* Geometry */
@@ -81,21 +84,24 @@ struct _PsppireDataStoreClass
 inline GType psppire_data_store_get_type (void) G_GNUC_CONST;
 PsppireDataStore *psppire_data_store_new     (PsppireDict *dict);
 
-void psppire_data_store_set_dictionary(PsppireDataStore *data_store, PsppireDict *dict);
-void psppire_data_store_set_font(PsppireDataStore *store, PangoFontDescription *fd);
+void psppire_data_store_set_dictionary(PsppireDataStore *data_store, 
+                                      PsppireDict *dict);
 
-void psppire_data_store_show_labels(PsppireDataStore *store, gboolean show_labels);
+void psppire_data_store_set_font(PsppireDataStore *store, 
+                                const PangoFontDescription *fd);
 
+void psppire_data_store_show_labels(PsppireDataStore *store, 
+                                   gboolean show_labels);
   
 void psppire_data_store_clear(PsppireDataStore *data_store);
 
+struct file_handle;
 
+void psppire_data_store_create_system_file (PsppireDataStore *store,
+                                           struct file_handle *handle);
 
+gboolean psppire_data_store_insert_new_case (PsppireDataStore *ds, gint posn);
 
-struct file_handle;
-
-void psppire_data_store_create_system_file(PsppireDataStore *store,
-                                  struct file_handle *handle);
 
 
 #ifdef __cplusplus