summaryrefslogtreecommitdiff
path: root/sc/source/ui
AgeCommit message (Collapse)AuthorFilesLines
2012-01-28replace obsolete "master" branch with README that points at new repoHEADmaster-deletedmasterMichael Stahl992-349398/+0
2011-08-04some clean-upMarkus Mohrhard4-8/+8
you need boost::nullable if you want to insert a null pointer in a boost::ptr_vector and it seems that ptr_vector::c_array isn't supported then
2011-08-03change from sal_Bool to boolMarkus Mohrhard2-3/+3
2011-08-03change from c-array to boost::ptr_vectorMarkus Mohrhard2-37/+30
2011-08-03use delete[] for arrays allocated with new[]Markus Mohrhard1-2/+2
2011-08-03fix for fdo#39773: crash with hidden column in Data->FormMarkus Mohrhard1-1/+2
2011-07-29bnc#707486 fix fit of extreme carelessness with defaulted paramsNoel Power1-2/+2
2011-07-29Fix the "By" property in GoDownSel and GoDownBlockSelOlivier Hallot1-9/+24
The "By" property for cell commands Go[Down,Up,Left,Right]Sel and Go[Down,Up,Left,Right]BlockSel was hardcoded to 1 in cellsh4.cxx. This patch allows repetition of the commands by the value of the By property.
2011-07-29tweak fix for bnc#707486 ( ensure multi-area processed for simple copy only )Noel Power1-0/+3
2011-07-28add prefixes for component_getFactoryMatúš Kukan3-4/+4
2011-07-27Resolves: fdo#38955 set selection request as done for macro recorderCaolán McNamara1-0/+1
2011-07-26fix for bnc#707486 allow copy for suitable multi-area RangesNoel Power5-127/+99
also remove the extra CopyToClip ( and CopyToClip4VBA ), merged the functionality to remove the existing copy and paste.
2011-07-25use XFilePicker2 regardless of service, if possible, it is far more saneMichael Meeks2-24/+2
2011-07-22remove duplicated en-US string definitionAndras Timar1-1/+0
2011-07-20Get rid of SvULongs in calcMaciej Rumianowski2-12/+10
Instead of SvULongs use ::std::vector < sal_Int32 >
2011-07-14fdo#37767: Fix broken refresh() from UNO API (and Basic).Kohei Yoshida2-33/+5
We now need to clear the cache before running DataPilotUpdate() in order to re-populate the cache from the source data.
2011-07-14fdo#36688: Make sure the drawing layer is initialized before use.Kohei Yoshida1-0/+1
From how it's used, it appears to be the convention to call InitDrawLayer() before getting the drawing layer pointer, to ensure that the drawing layer is present when needed.
2011-07-14Reverted 70af08e849a93d56915b7abe14537facf1022a6a.Kohei Yoshida1-10/+4
2011-07-14Resolves: fdo#36534 rework SvxSimpleTable to not manage its own parentCaolán McNamara4-32/+9
2011-07-12Remove component_getImplementationEnvironmentMatus Kukan3-20/+0
2011-07-06Enable FT and listbox in both applicable casesKatarina Machalkova1-3/+3
... that is: "show" and "show on colored cells" ones
2011-07-06fix for fdo#30800: Option to display calc gridlines on colored cellsAndré Schnabel5-24/+57
* change UI option for grid line display to tri-state drop down * view option VOPT_GRID will take the information wheter to "Show" or "Hide" grid lines. New view option VOPT_GRID_ONTOP will take the information wheter to display grid lines on top of colored cells or not * depending on VOPT_GRID_ONTOP grid lines will be drawn before or after drawing cell background in ScGridWindow::Draw * store option as boolean property "GridOnColoredCells" (path: "/org.openoffice.Office.Calc/Layout/Line") in user config * see http://wiki.documentfoundation.org/User:Andreschnabel/Spec_Calc_grid_lines_on_colored_background#UI_definitions for spec
2011-07-05WaE: consistently call it struct or classCaolán McNamara1-1/+1
2011-07-05yet more iterator->const_iteratorCaolán McNamara7-12/+12
2011-07-05basic multiline input implementationAnurag Jain3-30/+346
2011-07-05some warning clean-upMarkus Mohrhard1-5/+4
2011-07-05change remaining manual loops to ScMarkData::iteratorMarkus Mohrhard9-444/+433
2011-07-05change from manual loop to ScMarkData::iteratorMarkus Mohrhard9-560/+524
in most situations it's much faster to use the iterator instead of the manual loop + ScMarkData::GetTableSelect
2011-07-01XLSX formula import improvement. Recommit.Muthu Subramanian3-5/+37
2011-06-29fix for fdo#36963: name box always selects cell in the first sheetMarkus Mohrhard1-1/+1
add the current table number as fallback to the address parser for the case that no table is specified
2011-06-29Revert patch to change .idlMuthu Subramanian3-34/+4
2011-06-29Improved xlsx formula import.Muthu Subramanian3-4/+34
Now uses the values present in the import document rather than calculating the formula. This speeds up document loading. TODO: Extend this to string results as well.
2011-06-23fix for fdo#38544 enable Object/Edit menu item for ole/embedded objectsNoel Power1-1/+1
2011-06-23fix for fdo#37880Markus Mohrhard1-1/+7
we need to save the information if we have a local range name or a global range name in the uno api too
2011-06-21catch by const referenceCaolán McNamara2-8/+8
2011-06-21remove first fix for fdo#38455Markus Mohrhard1-1/+1
better fix already pushed
2011-06-20better fix for fdo#38455Markus Mohrhard1-2/+3
2011-06-20fix for fdo38455: prevent crash in Data->DefineRangeMarkus Mohrhard1-1/+1
2011-06-17Related: rhbz#711087 band-aidCaolán McNamara1-0/+3
2011-06-17Let's make 'Add' button clickable at any time ...Katarina Machalkova1-2/+1
... not only when last condition in the list is checked
2011-06-15add local range names to ScNamePasteDlgMarkus Mohrhard7-13/+36
2011-06-15Resolves: fdo#33636 spell-checker dialog itself can munge the selectionCaolán McNamara2-4/+14
It can create/activate an editview, and GetSheetSelection will take an active editview as the current selection. So from GetSheetSelection's POV activating the spellchecker changes the selection, and the SpellChecker dialog detects a selection change as indicating that the spell-checking needs to be restarted on the new selection.
2011-06-15Refactor PaintRangeFinder to only iterate needed entries.Rafael Dominguez2-64/+85
Added a helper function PaintRangeFinderEntry.
2011-06-15Remove rebundant check since we already know its in boundaries.Rafael Dominguez1-3/+1
2011-06-15Remove rebundant check since we already know its in boundaries.Rafael Dominguez1-10/+8
2011-06-14Unlimited number of conditions for conditional formatting, part 2Robert Dargaud4-249/+148
2011-06-14Unlimited number of conditions for conditional formattingRobert Dargaud4-187/+520
(Calc part)
2011-06-13Make some room for the localized strings.Kohei Yoshida1-1/+1
In some languages, the translated text may be longer.
2011-06-13Moved up the control to keep same top spacing as the other pages.Kohei Yoshida1-2/+2
2011-06-13A little code style inconsistencies.Kohei Yoshida1-8/+8