summaryrefslogtreecommitdiff
path: root/sc/inc
AgeCommit message (Collapse)Author
2013-03-20WaE: class 'ScFormulaCellGroup' was previously declared as a structTor Lillqvist
Change-Id: Ic7c1cb8ef7e39243277ceb9a219e2b4684130587
2013-03-19More on removal of direct use of cell classes outside ScDocument.Kohei Yoshida
Change-Id: Ie888b3494334613b5e4bcf97019b6dfbbd1a5da1
2013-03-19Remove use of ScBaseCell and its derivatives outside ScDocument.Kohei Yoshida
This is still work in progress. Change-Id: Ifcdbefbdd307a2a8819b073d896e90a16980781e
2013-03-19start of InterpretFormulaGroup.Michael Meeks
handle column invariant formulae, sketch comment more work, elide Matrix formulae. Change-Id: I9ce4da26b0ad2407021a10f21c81ada80442c76d
2013-03-19build spans of doubles and cleanup excessive debug.Michael Meeks
Change-Id: Ib76596cae12c87825118903cc61b12c251f0c1b7
2013-03-19Reduce dependency on document.hxx. Prefer forward declaration.Kohei Yoshida
Change-Id: I9b0c86735284ec435cceb3acd9bad97a6e523a74
2013-03-19Add accessor to ScDocument for formula cell's vectorization state.Kohei Yoshida
Change-Id: I3c781764c6375dadb173bc5ab3cfb79857e2aeca
2013-03-19First cut on checking the token array on whether we could do vectorization.Kohei Yoshida
Not tested yet. Change-Id: I87f8a8595229d8d8e83526dc0334891d253cf2c7
2013-03-19Generate token array hash exactly once, when the string is tokenized.Kohei Yoshida
And CompileString() is the place to do it, to the best of my knowledge. Change-Id: I249df5d09aa288eacc2b2c7ad6e5fc947a3c225f
2013-03-19Move GetHash() from FormulaTokenArray to ScTokenArray.Kohei Yoshida
To allow access to reference tokens. Change-Id: I3e2d2653722005c04b6d26e1a4ddfce0a459ef37
2013-03-19Implement (partially?) and test formula token array hash function.Kohei Yoshida
For now, we don't factor in any differences in reference tokens in the generated hash values. Change-Id: Ie9836228eaad9c74edd884c3e8c4b273979760fd
2013-03-19re-build formula groups inside Interpret instead.Michael Meeks
Change-Id: Ied1b82011b88f4eacfd5285176f58bf56c057f67
2013-03-19Skeleton for generating a hash value from an array of token.Kohei Yoshida
To be implemented... Change-Id: I4704f06b50dcc9dd5e1af9c3531ecd498015811c
2013-03-19initial detection of similar formula runs.Michael Meeks
Change-Id: I5659c46668a0d0a6ef67368a4e6bbf0d99a6a80e
2013-03-16Resolves: #i119460# Use localized strings on Data Pilot fields grouped by dateAriel Constenla-Haile
Conflicts: sc/inc/globstr.hrc sc/source/core/data/dpdimsave.cxx sc/source/ui/dbgui/dpgroupdlg.cxx sc/source/ui/src/globstr.src Change-Id: Ie5e1fd473d2e2c58de7ed6eb0aeddb768668f91e
2013-03-15Remove incorrect comment.Kohei Yoshida
Change-Id: I2b6773e0b8203d7781ac8037b5d51ebb5bba5047
2013-03-15ScBaseCell::nScriptType is no more.Kohei Yoshida
Change-Id: Ic523bc5f8bf2c678cb7cf2115848d16845d2eeeb
2013-03-15Accessor methods in ScDocument for cell text's script types.Kohei Yoshida
Change-Id: I23349ba6411bd74247e150f871f363b0eacda0a2
2013-03-15More script type handling.Kohei Yoshida
Basically I'm just following maTextWidths' call sites. Some things are handled differently though for script types, since empty elements may correspond with either empty or non-empty cells (unlike the text width array). Change-Id: If98bcb81e9048b24d75b2bc9fc972a7d74cbbf89
2013-03-15Started handling the cell text script types. Still work in progress.Kohei Yoshida
Change-Id: I6af668894d61d33de6697fe45fce1515520d4bfa
2013-03-15Set up new container to store cell text's script type.Kohei Yoshida
Change-Id: I0330dea1b2f85a8ba12cb232ab8b4263607ba225
2013-03-15regenerate pchPeter Foley
Change-Id: Iaf0195a0c2ec3d6daa1e3c70d20dfa8de97b9647
2013-03-15Turn off debugging and silence compiler warning.Kohei Yoshida
Change-Id: If2bfc9f346d7f2eee20caa30e1eb1f60d266ef90
2013-03-15Add integrity check after column cell storage is modified.Kohei Yoshida
Change-Id: I8d2bd7616e0428e4e881ef0dc1012c4973e636a9
2013-03-15Create skeleton accessors for cell text script types.Kohei Yoshida
Change-Id: I5408cdd87f06423a6bb287c855237878859da880
2013-03-15initial work on an odc exportMarkus Mohrhard
We can now export a chart to odc when we are in chart edit mode from Calc. I need to add support for it to Writer and Impress as well. We can already open these files but copy&paste from the opened file fails. The next step is then to add a new menu entry Insert->Object->Chart from file Change-Id: I14d1702e79517e7319a1929de2be5501d375885d
2013-03-14fdo#38838: Replaced some (Uni)String to OUString in core/scelixir
Change-Id: I4fa27b933c5b3cf2645b139bf6349b90f613feab Reviewed-on: https://gerrit.libreoffice.org/2735 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
2013-03-14Unit test for the new column-based text width storage, via new iterator.Kohei Yoshida
Change-Id: Ibf1e254e34df98ad5c46a46252168787b07d161c
2013-03-14Move TEXTWIDTH_DIRTH to globalnames.hxx.Kohei Yoshida
Change-Id: I648da6f2c43a10137c0834659022296883368dc9
2013-03-14ScBaseCell::nTextWidth is no more.Kohei Yoshida
Change-Id: I32368d39a21d44bef8ab7fe265077cd147a50024
2013-03-14IdleCalcTextWidth() now sets cell text widths to the new container.Kohei Yoshida
No more direct access to ScBaseCell's nTextWidth. Change-Id: I5a0a5fd24555d9fa8e1de895f0f9d8b710cc8094
2013-03-14First cut on column text width iterator implementation. Untested.Kohei Yoshida
Change-Id: Ic615e5645f1a89a4b1a60dc519eb79ff921203a9
2013-03-14Add skeleton files for the new iterator for column cells' text widths.Kohei Yoshida
To be implemented soon. Change-Id: Ifa72245f89635ac604c233197891fb67c8d99915
2013-03-14Reverse the logic of enable / disable idle flag...Kohei Yoshida
so that true -> enabled and false -> disabled. This is much easier for human brain to process. Change-Id: I51059ee9090610ad8455a072b165860527cd9d50
2013-03-14Turns out I can't really use ScColumnImpl.Kohei Yoshida
Because the column source files are split; not all source files had access to the impl class definition. Change-Id: Ic8cff0eeec3504660304be9f020c40bcd98cee85
2013-03-14Accessor in ScTable.Kohei Yoshida
Change-Id: Id29e746c799365c679e60f22f88bfbcb3dbdf693
2013-03-14Let's start using impl class for ScColumn.Kohei Yoshida
No need to migrate the existing data members to it for now, but let's define new members in the impl class from now on. Change-Id: Idee66dae87beb4bb6efc9c7d7ffd658148ed887c
2013-03-14Add empty GetTextWidth() to ScColumn. Will be implemented later.Kohei Yoshida
Change-Id: I4df0719fee426ab5d54bfc2ac8fa4c37325906e2
2013-03-14Identify all places that modify the cell array & call CellStorageModified().Kohei Yoshida
CellStorageModified() is empty at the moment. Change-Id: I9498b4d7819bba1778cbab644e7b46ce25d66ae4
2013-03-14Redundant use of 'public' modifier.Kohei Yoshida
Plus added a new method that will get called whenever cell array state changes. It's not used yet. Change-Id: I96719db0460bfb72d8dbe98a80a3880d8f279c33
2013-03-14i119411 - Read/write RDF support on ODS file formatAriel Constenla-Haile
Patch by: Tsutomu Uchino Review by: arielch Conflicts: sc/inc/scerrors.hxx Change-Id: Idebf093b599b57cd0be4c871590db75c59c14dc1
2013-03-12update pch headersLuboš Luňák
Change-Id: Ibb368e6a806666a73bf6bf1a097d14bc6e75b24d
2013-03-10update pch filesPeter Foley
Change-Id: I07c1acc9f9e788f1165b3e241008aa944485790d
2013-03-09group undo action when hiding/showing sheetsLaurent Godard
- the test if there are enough tabs before hiding is now in HideTabs - a vector is passed to Undo - modification of the displayed text - minor optimization on looping over sheets (exit when condition is fullfilled) Change-Id: I86196c6bb0f5fd6ba5b44c69efadc16b119a7f11 Reviewed-on: https://gerrit.libreoffice.org/2579 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2013-03-08fdo#60691 add modelines to *.src and *.hrc filesBorim
use solenv/bin/add-modulelines script for the task and remove all UTF bom from *.src and *.hrc files svx/source/dialog/hdft.src Change-Id: I745d4f0fe9b05436a142a03f8512970f91c41bd4
2013-03-08A little cleanup.Kohei Yoshida
Change-Id: I244b32545548ad882a80f8b0d5128b8620d9fba0
2013-03-07drop unused resourcesCaolán McNamara
Change-Id: I6bd9c1cf56eb7f890c9d2f97819440377b457557
2013-03-07adapt code to use insertnamedialog .uiCaolán McNamara
Change-Id: I1449b69a4291f1b3cb76f549cb8f1d50e9bc6924
2013-03-06remove .src remnantsCaolán McNamara
Change-Id: Icd3df6c154e1eac0d7ba47c449c3fdc6ae388879
2013-03-06prevent non-3D refs from being accepted in chart2, related fdo#61781Markus Mohrhard
Change-Id: I4c7f79393721bff3d5e6fda98b8d4bf16a5ee398