X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpspp-sheet-view.h;h=73210f1521e2736297adf50ebbbf1e08a30d6cb3;hb=48ec61d954cc032c773daf96851cf3b78f27b112;hp=09a89e2d523802ff8ca2b85ea923783ae2abd965;hpb=7ecdf4e88e39024da846a25c98caa2887f0dac59;p=pspp diff --git a/src/ui/gui/pspp-sheet-view.h b/src/ui/gui/pspp-sheet-view.h index 09a89e2d52..73210f1521 100644 --- a/src/ui/gui/pspp-sheet-view.h +++ b/src/ui/gui/pspp-sheet-view.h @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2011 Free Software Foundation, Inc. + Copyright (C) 2011, 2012 Free Software Foundation, Inc. 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 @@ -53,6 +53,25 @@ typedef enum GType pspp_sheet_view_grid_lines_get_type (void) G_GNUC_CONST; #define PSPP_TYPE_SHEET_VIEW_GRID_LINES (pspp_sheet_view_grid_lines_get_type ()) +/* A "special cell" is a cell that is editable or activatable. When a row that + * contains a special cell is selected, the cursor is drawn around a single + * cell; when other rows are selected, the cursor is drawn around the entire + * row. + * + * With the default of "detect", whether a given row contains a special cell is + * detected automatically. This is the best choice most of the time. For + * sheet views that contain more than 100 columns, an explicit "yes" or "no" + * improves performance. */ +typedef enum +{ + PSPP_SHEET_VIEW_SPECIAL_CELLS_DETECT, + PSPP_SHEET_VIEW_SPECIAL_CELLS_YES, + PSPP_SHEET_VIEW_SPECIAL_CELLS_NO, +} PsppSheetViewSpecialCells; + +GType pspp_sheet_view_special_cells_get_type (void) G_GNUC_CONST; +#define PSPP_TYPE_SHEET_VIEW_SPECIAL_CELLS (pspp_sheet_view_special_cells_get_type ()) + typedef enum { /* drop before/after this row */ @@ -367,12 +386,14 @@ gboolean pspp_sheet_view_is_rubber_banding_active (PsppSheetView *tree_vie PsppSheetViewGridLines pspp_sheet_view_get_grid_lines (PsppSheetView *tree_view); void pspp_sheet_view_set_grid_lines (PsppSheetView *tree_view, PsppSheetViewGridLines grid_lines); -gboolean pspp_sheet_view_get_enable_tree_lines (PsppSheetView *tree_view); -void pspp_sheet_view_set_enable_tree_lines (PsppSheetView *tree_view, - gboolean enabled); -void pspp_sheet_view_set_level_indentation (PsppSheetView *tree_view, - gint indentation); -gint pspp_sheet_view_get_level_indentation (PsppSheetView *tree_view); + +PsppSheetViewSpecialCells pspp_sheet_view_get_special_cells (PsppSheetView *tree_view); +void pspp_sheet_view_set_special_cells (PsppSheetView *tree_view, + PsppSheetViewSpecialCells); + +int pspp_sheet_view_get_fixed_height (const PsppSheetView *); +void pspp_sheet_view_set_fixed_height (PsppSheetView *, + int fixed_height); /* Convenience functions for setting tooltips */ void pspp_sheet_view_set_tooltip_row (PsppSheetView *tree_view, @@ -394,6 +415,9 @@ void pspp_sheet_view_set_tooltip_column (PsppSheetView *tree_view gint column); gint pspp_sheet_view_get_tooltip_column (PsppSheetView *tree_view); +void pspp_sheet_view_stop_editing (PsppSheetView *tree_view, + gboolean cancel_editing); + G_END_DECLS