office-gobmx/sc
Michael Stahl adbf0374e9 filter,sc: try to prevent potential SeekToEndOfRecord infinite loops
SeekToEndOfRecord() now doesn't seek to EOF if the offset is too large;
break out of loops in the obvious cases where this could be problematic.

But don't use SAL_WARN_UNUSED_RESULT because unfortunately GCC doesn't
allow to explicitly suppress that with a (void) cast.

Change-Id: Ie0211075bf0f4ef271bb26bdfead5fb070875a2b
2017-09-20 13:08:43 +02:00
..
inc Add debugging output operator<< for ScRange 2017-09-14 19:01:55 +03:00
qa Test joining two disjoint ranges into one by adding a third inbetween 2017-09-15 14:17:00 +03:00
res/xml
sdi tdf#107806: Semantic and syntax for .uno:RowHeight have been changed 2017-08-25 16:28:16 +02:00
source filter,sc: try to prevent potential SeekToEndOfRecord infinite loops 2017-09-20 13:08:43 +02:00
uiconfig/scalc add signature icon cause the icon is available (in breeez) 2017-09-19 22:52:01 +02:00
util
workben Remove add-in demo/test-files in sc/workben 2017-09-05 23:14:27 +02:00
AllLangMoTarget_sc.mk
CppunitTest_sc_addin_functions_test.mk
CppunitTest_sc_anchor_test.mk
CppunitTest_sc_annotationobj.mk
CppunitTest_sc_annotationshapeobj.mk
CppunitTest_sc_annotationsobj.mk
CppunitTest_sc_arealinkobj.mk tdf#45904 Move Java _XAreaLink tests to C++ 2017-08-23 23:36:47 +02:00
CppunitTest_sc_array_functions_test.mk
CppunitTest_sc_bugfix_test.mk
CppunitTest_sc_cache_test.mk
CppunitTest_sc_cellcursorobj.mk
CppunitTest_sc_cellobj.mk
CppunitTest_sc_cellrangeobj.mk
CppunitTest_sc_chart_regression_test.mk
CppunitTest_sc_check_data_pilot_field.mk
CppunitTest_sc_check_data_pilot_table.mk
CppunitTest_sc_check_xcell_ranges_query.mk
CppunitTest_sc_condformats.mk
CppunitTest_sc_copypaste.mk
CppunitTest_sc_core.mk
CppunitTest_sc_database_functions_test.mk
CppunitTest_sc_databaserangeobj.mk
CppunitTest_sc_datapilotfieldobj.mk
CppunitTest_sc_datapilotitemobj.mk tdf#45904 Move _DataPilotItem Java tests to C++ 2017-08-27 09:52:14 +02:00
CppunitTest_sc_datapilottableobj.mk
CppunitTest_sc_dataprovider.mk
CppunitTest_sc_datatransformation.mk
CppunitTest_sc_datetime_functions_test.mk
CppunitTest_sc_editfieldobj_cell.mk
CppunitTest_sc_editfieldobj_header.mk
CppunitTest_sc_filters_test.mk
CppunitTest_sc_financial_functions_test.mk
CppunitTest_sc_functions_test_old.mk
CppunitTest_sc_html_export_test.mk
CppunitTest_sc_information_functions_test.mk
CppunitTest_sc_logical_functions_test.mk
CppunitTest_sc_macros_test.mk tdf#107806: Semantic and syntax for .uno:RowHeight have been changed 2017-08-25 16:28:16 +02:00
CppunitTest_sc_mark_test.mk
CppunitTest_sc_mathematical_functions_test.mk
CppunitTest_sc_modelobj.mk
CppunitTest_sc_namedrangeobj.mk
CppunitTest_sc_namedrangesobj.mk
CppunitTest_sc_new_cond_format_api.mk
CppunitTest_sc_opencl_test.mk
CppunitTest_sc_outlineobj.mk
CppunitTest_sc_parallelism.mk
CppunitTest_sc_perfobj.mk
CppunitTest_sc_range_test.mk
CppunitTest_sc_rangelst_test.mk
CppunitTest_sc_recordchanges.mk
CppunitTest_sc_screenshots.mk
CppunitTest_sc_spreadsheet_functions_test.mk
CppunitTest_sc_statistical_functions_test.mk
CppunitTest_sc_styleloaderobj.mk
CppunitTest_sc_subsequent_export_test.mk
CppunitTest_sc_subsequent_filters_test.mk tdf#111974: Ensure sufficient space for all sheets in FormulaBuffer... 2017-09-02 18:20:23 +02:00
CppunitTest_sc_tablesheetobj.mk
CppunitTest_sc_tablesheetsobj.mk
CppunitTest_sc_tabviewobj.mk
CppunitTest_sc_text_functions_test.mk
CppunitTest_sc_tiledrendering.mk
CppunitTest_sc_ucalc.mk
CppunitTest_sc_viewpaneobj.mk
JunitTest_sc_complex.mk
JunitTest_sc_unoapi_1.mk
JunitTest_sc_unoapi_2.mk
JunitTest_sc_unoapi_3.mk
JunitTest_sc_unoapi_4.mk
JunitTest_sc_unoapi_5.mk
JunitTest_sc_unoapi_6.mk
JunitTest_sc_unoapi_7.mk
Library_sc.mk external data: add a simple table view for spreadsheet data 2017-08-29 12:17:09 +02:00
Library_scd.mk
Library_scfilt.mk
Library_scqahelper.mk
Library_scui.mk
Library_vbaobj.mk oovbaapi: create XOval and XLine shape types 2017-09-08 09:29:36 +02:00
Makefile
Module_sc.mk tdf#45904 Move _DataPilotItem Java tests to C++ 2017-08-27 09:52:14 +02:00
Package_opencl.mk
Package_res_xml.mk
PythonTest_sc_python.mk
README
TODO.performance
UIConfig_scalc.mk tdf#107158 Groupedbar variant of the Notebookbar for Calc 2017-09-05 06:41:40 +02:00
UITest_autofilter.mk
UITest_conditional_format.mk
UITest_hide_cols.mk
UITest_range_name.mk
UITest_search_replace.mk

Spreadsheet application code.

You can dump some information in a dbgutil build:

=== CTRL+SHIFT+F12 ===

Dumps the column width of the first 20 columns.

=== CTRL+SHIFT+F11 ===

Dumps the graphic objects and their position and size in pixel.

=== CTRL+SHIFT+F9 ===

Dumps the SfxItemSet representing the cell properties' of the
current selection as a xml file. The file will be named dump.xml

=== The Cache Format ===

ScDocument::StoreTabToCache allows storing the content (not the formatting)
of a table to a binary cache format.

The format is column orientated which allows quick serialization of the table.

Header:
    * Number of Columns: 64 bit unsigned integer

Column:
    * Column Index: 64 bit unsigned integer
    * Column Size: 64 bit unsigned integer
    * For each cell type block a new ColumnBlock

ColumnBlock:
    * Start Row: 64 bit unsigned integer
    * Block Size: 64 bit unsigned integer
    * Type: 8 bit unsigned integer
        - 0 : empty
        - 1 : numeric
            * for each cell: 64 bit IEEE 754 double precision value
        - 2 : string
            * for each cell: 32 bit signed string length followed by string length bytes of the string (UTF-8)