X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-data-sheet.h;h=0754942a95800c1b1b4ec4df8014887722aa9ac9;hb=177156c175e901a740b16632f7ada809b43638db;hp=2297adbcd76aceed9b70af38a7df34b5d94c40fe;hpb=d4ff0e074d703dbeb8af5aa3ac470ddda5ebe301;p=pspp diff --git a/src/ui/gui/psppire-data-sheet.h b/src/ui/gui/psppire-data-sheet.h index 2297adbcd7..0754942a95 100644 --- a/src/ui/gui/psppire-data-sheet.h +++ b/src/ui/gui/psppire-data-sheet.h @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2017 John Darrington + Copyright (C) 2017, 2019 Free Software Foundation 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 @@ -19,11 +19,11 @@ #define _PSPPIRE_DATA_SHEET_H #include -#include "ui/gui/efficient-sheet/src/jmd-sheet.h" +#include struct _PsppireDataSheet { - JmdSheet parent_instance; + SswSheet parent_instance; GtkWidget *data_sheet_cases_column_popup; @@ -38,13 +38,18 @@ struct _PsppireDataSheet struct _PsppireDataSheetClass { - JmdSheetClass parent_class; + SswSheetClass parent_class; }; #define PSPPIRE_TYPE_DATA_SHEET psppire_data_sheet_get_type () -G_DECLARE_FINAL_TYPE (PsppireDataSheet, psppire_data_sheet, PSPPIRE, DATA_SHEET, JmdSheet) +G_DECLARE_FINAL_TYPE (PsppireDataSheet, psppire_data_sheet, PSPPIRE, DATA_SHEET, SswSheet) GtkWidget *psppire_data_sheet_new (void); +void psppire_data_sheet_delete_variables (PsppireDataSheet *sheet); + +void psppire_data_sheet_insert_new_variable_at_posn (PsppireDataSheet *sheet, gint posn); + + #endif