summaryrefslogtreecommitdiff
path: root/svx/inc
AgeCommit message (Collapse)Author
2012-01-27Revert "Removed list and numbering paragraph styles and related option page"Cédric Bosdonnat
This reverts commits 359d0fbd03a68d9131e8fb25e7dac9f19ddf6dcb, 6a15a2898b7f822ddfba23553dd127e25af15fff and 21352f88caba9dee73d5a87c8e3724d17ac6b428. This change is not mature enought: needs more work
2012-01-25optimized zoom to use more common intervalsTim Hardeck
Round zoom values beginning with 50 to a multiple of 5, with 100 to one of 10, with 500 to one of 50 and with 1000 to one of 100. The step 100 is enforced to have one fixed point.
2012-01-23Let's use 2^(1/4) as the zoom factor, instead of 1.2 (thanks, Tor!)Jan Holesovsky
2012-01-21Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann
SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC) is used to annotate legitimately unused parameters, so that static analysis tools can tell legitimately unused parameters from truly unnecessary ones. To that end, some patches for external modules are also added, that are only applied when compiling with GCC and add necessary __attribute__ ((unused)) in headers.
2012-01-20String to rtl::OUString.Kohei Yoshida
2012-01-20sal_Bool to bool.Kohei Yoshida
2012-01-19Make this a private member (to make it easier to keep track of its usage).Kohei Yoshida
2012-01-19No class derives from SdrPageView. No sense using protected visibility.Kohei Yoshida
2012-01-19Don't be a listener if you aren't interested in listening.Kohei Yoshida
2012-01-19implemented SubViewSize property for EnhancedCustomShapePathRadek Doulik
2012-01-18Make them private instead of protected.Kohei Yoshida
No classes derived from this and they are not virtual methods.
2012-01-18This aCropRect data member is no longer used.Kohei Yoshida
2012-01-18remove unused codeThomas Arnhold
2012-01-18svx: remove unused definitions in globlmn_tmpl.hrcIvan Timofeev
2012-01-16SvPtrarr->std::vectorAugust Sodora
2012-01-13fdo#44173: use a geometric progression for zoomingTim Hardeck
Zooming does now base on a geometric progression instead of an arithmetic one. Since the zoom factor is not only used in Draw but for all other applications 1.2 seems like a good choice.
2012-01-13svxempty.* not needed anymoreCaolán McNamara
2012-01-11Remove unnecessary forward declarationAugust Sodora
2012-01-11SvStringsDtor->std::vectorAugust Sodora
2012-01-11SvStringsDtor->std::vectorAugust Sodora
2012-01-11implemented custom shape subpaths darkening/lightingRadek Doulik
2012-01-11n#734734: Text rotation fixes.Muthu Subramanian
PPTX would need rotation of text _inside_ text/object boundaries, rather than the rotation of the text/object itself.
2012-01-10Remove _SVSTDARR_STRINGSISORTDTORAugust Sodora
2012-01-11fdo#38057 implement RTF import progressbarMiklos Vajna
2012-01-10callcatcher: update listCaolán McNamara
2012-01-10some misc tidyup ( that was reverted )Noel Power
some id and string renaming from b08e273015d72251b68bca86535cf5919dd9e40e was reverted, those parts of the changes are reapplied here
2012-01-10Revert "remove duplicated images for basic dialog form controls ( & misc ↵Noel Power
tidyup )" This reverts commit 83a28682f21f7b284aa57f9c336bae551621da03.
2012-01-06Removed unnecessary tools/debug.hxx includes.Marcel Metz
2012-01-06Removed unnecessary tools/ref.hxx includes.Marcel Metz
2012-01-06Removed unnecessary tools/link.hxx includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
Hello lo-devs, this patch series removes a lot of unnecessary includes for the various tools header. The patches without suffix should be applied to the core repository, the .binfilter.patch suffix should be applied to the binfilter repository. I've tested the build with the configuration --enable-binfilter --enable-dbgutil --enable-debug, is this sufficient or did I miss another important configuration, that enables some conditional compiled code? I've only build this on linux-x86_64, but the patch also touches some of the mac specific code like fpicker/source/aqua/SalAquaFilePicker.mm so it would be maybe a good idea to test this patch. regards Marcel Metz
2012-01-05Resolves: fdo#43867 collection of problems causing loss of ole2 previewsCaolán McNamara
a) factor out part of SvXMLEmbeddedObjectHelper::ImplGetStorageNames as splitObjectURL to reuse in SvXMLGraphicHelper::ImplGetStreamNames to get better url splitting logic to handle "./ObjectReplacements/foo" b) FN_UNO_REPLACEMENT_GRAPHIC_URL and FN_UNO_GRAPHIC ids collide urls incorrectly treated as graphics c) imported preview images for objects set on a temporary svt::EmbeddedObjectRef *copy* of the object, not the real object.
2012-01-05add a comphelper::string::getTokenCountCaolán McNamara
suitable for conversion from [Byte]String::GetTokenCount converted low-hanging variants to rtl::O[UString]::getToken loops added unit test
2012-01-04Easyhack fdo#38831 remove SvStringsBrad Sowden
Remove SvStrings definition and obsolete #defines.
2012-01-04Easyhack fdo#38831 remove SvStringsBrad Sowden
------ With the for loop below Insert(x,nPos) was previously applied but nPos is initialised to the end of vector and is always incremented in every loop iteration i.e. Insert(x,nPos) is effectively a push_back(x). Agree? In "short SvxNumberFormatShell::FillEListWithUserCurrencys(....)" Also get rid of SvxDelStrgs (variant of SvStrings)
2012-01-04Easyhack fdo#38831 remove SvStringsBrad Sowden
Remove a function contained in unusedcode.easy that includes SvStrings.
2011-12-22callcatcher: Remove unused codeAugust Sodora
2011-12-22sw: Improved document comparison based on RSIDs.Tzvetelina Tzeneva
2011-12-21convert ReadByteString/WriteByteString from ByteString to OStringCaolán McNamara
Nobody ever used the return values anyway, so for reading just return the string and for writing the number of bytes written Doesn't need to be members, make standalone functions Rename to read_lenPrefixed_uInt8s_ToO[U]String and write_lenPrefixed_uInt8s_FromO[U]String, lengthy, but much less unambiguous, seeing as a lot of users of it don't seem to be aware that they read/write pascal-style length prefixed strings, which isn't surprising given the apparent simplicity of their original name. added a unit test
2011-12-21callcatcher: remove unused classesMatúš Kukan
2011-12-21needs more work firstCaolán McNamara
This reverts commit 92f396733ebc518bcb7a9eae2dd3169d333b82b9.
2011-12-21convert ReadByteString/WriteByteString from ByteString to OStringCaolán McNamara
Nobody ever used the return values anyway, so for reading just return the string and for writing the number of bytes written Doesn't need to be members, make standalone functions Rename to read_lenPrefixed_uInt8s_ToO[U]String and write_lenPrefixed_uInt8s_FromO[U]String, lengthy, but much less unambiguous, seeing as a lot of users of it don't seem to be aware that they read/write pascal-style length prefixed strings, which isn't surprising given the apparent simplicity of their original name. added a unit test
2011-12-20callcather: remove sdr::CommentMatúš Kukan
2011-12-20svx: translation by Mike Whiteley and Noel GrandinNoel Grandin
(with very few tweaks by the committer)
2011-12-15Removed extra semicolonsJesse
2011-12-12slideshow: play back embedded media:Michael Stahl
The slideshow uses the UNO API to access the drawing objects, so add a property to get the temp file URL from the media object.
2011-12-09fdo#38545: Show/hide anchor when the anchoring status changes.Kohei Yoshida
Setting a page-anchored object to cell-anchored didn't show the anchor immediately until you unselect the object and re-select it. Same for the cell-anchored to page-anchored direction. This commit fixes it.
2011-12-08childs -> childrenMichael T. Whiteley