summaryrefslogtreecommitdiff
path: root/cui/source/options
AgeCommit message (Collapse)Author
2013-12-18resolved fdo#51961 let "Default ..." currency entry follow selected localeEike Rathke
Change-Id: I69b13d1009638451fa6c2bc9336cdac0bab6ec32
2013-12-18do not resolve the "Default ..." locale entry, it means SYSTEMEike Rathke
Once selected, the locale was resolved and the "Default ..." entry never displayed again. Change-Id: I4d94730b1c104e0b96e7e02275958b78e2899eca
2013-12-13Expert config: Introduce configuration key to disable expert config.Jan Holesovsky
It is /org.openoffice.Office.Common/Security/EnableExpertConfiguration with values true/false; defaults to true. Change-Id: I5a18d16182c28a13169677b11f68884f34c11c63
2013-12-13Resolves: fdo#71192 options->appearence isn't all the same colorCaolán McNamara
Change-Id: I8beaf1f4a1ea685af22ae0dafbff767bee98d3b4
2013-12-12About config: Make the value box dialog a bit nicer.Jan Holesovsky
Change-Id: I5e25401b76458e712070bc76c86083bbd9ae2daa
2013-12-08Drop duplicate #includeTakeshi Abe
Change-Id: I05569ef98293445916e8f48e7f06abd795fe9bb5
2013-12-06Clean up includes of comphelper/stl_types.hxxStephan Bergmann
Change-Id: I00a8e794189d17ad91a90beb9ce6cb89b7bab2aa
2013-12-06More Expert Config Page fixesStephan Bergmann
Change-Id: Iaa2b7df4246ab3fa31737126f27e4a9da3814048
2013-12-06fdo#72125 - Expert config dialog takes too much time to come upNoel Grandin
This is not a full fix, this just trims some of the fat in CuiAboutConfigTabPage::FillItems. Specifically - improve string handling - don't use catch/throw unnecessarily Change-Id: I5b4987407bd007fbbb18f76fcf26f4a33282c0c0 Signed-off-by: Stephan Bergmann <sbergman@redhat.com>: reintroduced lost "/" into path of recursive FillItems calls
2013-12-06Get rid of DECLARE_STL_VECTORStephan Bergmann
Change-Id: If4588034fc09e4663b5217669c71f26c0a3b8c8a
2013-12-06A bit of constness.Jan Holesovsky
Change-Id: If7681341c7d5d88286f36f943708f99b3c5700e0
2013-12-05Get rid of comphelper::UStringLessStephan Bergmann
...default std::less<OUString> is just fine. Change-Id: Ib9d3c10f2817d757f3c19eb3d4607095883af91a
2013-11-20fdo#67642 Expert Config Page Moved to its own windowEfe Gürkan YALAMAN
Expert Config Page moved SfxTabPage to ModalDialog. It has its own window as requested on this bug. Double click works as edit button now for better usability. Also Default button renamed as Reset button. Change-Id: Ie4732860b9677a313697d5faa72109c8b16b9c2d Reviewed-on: https://gerrit.libreoffice.org/6704 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Thorsten Behrens <thb@documentfoundation.org> Tested-by: Thorsten Behrens <thb@documentfoundation.org>
2013-11-20remove unnecessary RTL_CONSTASCII_STRINGPARAM in appendAscii callsNoel Grandin
Convert code like: aStrBuf.appendAscii( RTL_CONSTASCII_STRINGPARAM( "ln(x)" )); to: aStrBuf.append( "ln(x)" ); which compiles down to the same code. Change-Id: I24c7cb45ceb32fd7cd6ec7ed203c2a5d746f1c5c
2013-11-20convert equalsAsciiL calls to startsWith callsNoel Grandin
Convert code like: aStr.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "ActiveConnection" ) ) to aStr.startsWith( "ActiveConnection" ) which compiles down to the same machine code. Change-Id: Id4b0c5e0f9afe716a468d3afc70374699848dc33
2013-11-14Add "block untrusted referer links" switchStephan Bergmann
Change-Id: Id2f2a3dafc3bb7ec6fada6bfda5843348dfac5a1
2013-11-13On Mac OS X LibreOffice cannot use native print dialog at allAndras Timar
Change-Id: I37d36ba175362dedffbbabb561a11033a0454110
2013-11-13fdo#59256 hide this option when experimental features are disabledAndras Timar
GTK print dialog is experimental, the checkbox has no effect, if experimental features are disabled. Change-Id: I664a5520ed8fd0740c381af3d38fc5252c020548
2013-11-11remove unnecessary use of OUString constructor in CUI moduleNoel Grandin
Change-Id: Ib6cc0f089e9b3cbcfee67c6a780527e148f3c382
2013-11-07xub_Strlen to sal_Int32Andras Timar
Change-Id: I5cf06c6d9648f8f447b7669edfab8436e6f948ab
2013-11-05convert xub_StrLen to sal_Int32Noel Grandin
Converts code that calls comphelper::string::getTokenCount() to use sal_Int32 to store the return value. Change-Id: I439605a39d29b1309649e30f3ff40dfa412efcde
2013-11-04fdo 70998: Termchange: Graphics->ImageSamuel Mehrbrodt
Change-Id: If451dfb24567157c86bca9a4a8564eb8de231a38 Reviewed-on: https://gerrit.libreoffice.org/6524 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2013-11-04remove redundant calls to OUString constructor in if expressionNoel Grandin
Convert code like: if( aStr == OUString("xxxx") ) to this: if( aStr == "xxxx" ) Change-Id: I8d201f048477731eff590fb988259ef0935c080c
2013-11-04remove redundant calls to OUString constructorNoel Grandin
Change code like this: aStr = OUString("xxxx"); into this: aStr = "xxxx"; Change-Id: I31cb92e21658d57bb9e14b65c179536eae8096f6
2013-10-29fdo#70049 Expert Config page cannot save booleanEfe Gürkan YALAMAN
This patch fixes unsaveable booleans. Also fix the problem occurs when there is multiple changes on page. Page was commiting only last added one, now commits all. Change-Id: Id1a15634e95d5ca9d54e7a90fa1bbbaf874e3f08 Reviewed-on: https://gerrit.libreoffice.org/6457 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2013-10-28fixincludeguards.sh: cuiThomas Arnhold
Change-Id: I0a9f69b8c2129329f742f18e7749484b6f3e5bf7
2013-10-22Bin comments that claim to say why some header is includedTor Lillqvist
They are practically always useless, often misleading or obsolete. Change-Id: I2d32182a31349c9fb3b982498fd22d93e84c0c0c
2013-10-22Resolves: fdo#38838 remove UniStringCaolán McNamara
hammer silver nails into coffin and bury in concrete Change-Id: I3fda2ff47738bb33793adab97faba2d439ac9a28
2013-10-21drop StringCompare from cuiCaolán McNamara
Change-Id: Iec7a797581ab899e93ad6cebb06c3622ca2360b9
2013-10-20drop unnecessary tools/string includesCaolán McNamara
Change-Id: I4278999b9b7d184c26036bbe9e3b98420f461e8c
2013-10-16Resolves: #i122759# Pass the Sequence by referenceAriel Constenla-Haile
Despite it's name, rProperties, the Sequence is not a reference in the function signature. Besides, some small improvements: - instead of compareToAscii, use operator==, which is optimized for performance (cherry picked from commit a17e221225915c140c7840904cb9b46d75731edc) Conflicts: cui/source/options/optsave.cxx Change-Id: Ifffd2b9014210c885f03ff8116ea97625b903cba
2013-10-16unotools: add menu option to enable/disable Smart-Art lockJacobo Aragunde Pérez
The point of this menu option is that locked Smart-Art shapes would preserve the original XML files attached so they could be exported back to docx with no loss. The new menu option is located at Options -> Load/Save -> MS Office -> SmartArt to LibreOffice shapes or reverse. Change-Id: I6aafc2eb83404ee2c0b8538b2f6fbbbd4363e7d3 Reviewed-on: https://gerrit.libreoffice.org/6138 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Miklos Vajna <vmiklos@collabora.co.uk>
2013-10-16cui: allow lines in MS filter section to have independently enabled checkboxesJacobo Aragunde Pérez
An extra InsertEntry method is added with parameters to enable or disable the load and save checkboxes independently. Change-Id: I49233ce31e2eaf361310f89887dcede86dec0edc Reviewed-on: https://gerrit.libreoffice.org/6137 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Miklos Vajna <vmiklos@collabora.co.uk>
2013-10-11-Werror,-Wunused-variableStephan Bergmann
Change-Id: Ie599ddddca533db3a626ab63a9d47e10d76a4a94
2013-10-02Spell "indices" correctlyTor Lillqvist
Change-Id: I63b1de195bf2f3f8bfd185181f48b1520cdd849f
2013-10-02-Werror,-Wunused-variableStephan Bergmann
Change-Id: I9a49699d0739afc754caa5012da1525aa7e5fc26
2013-10-02Use std::auto_ptr::reset where applicableStephan Bergmann
(avoids warnings about std::auto_ptr ctor being deprecated) Change-Id: I39d2d155c0bc62ca77a30c02428ea39102213f42
2013-10-01fdo#54812 Remove option 'Size optimization for ODF format'Samuel Mehrbrodt
Change-Id: I1aee738a0ecd761efaecf4b1b1c53918d8f9cf01 Reviewed-on: https://gerrit.libreoffice.org/6044 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2013-10-01convert CUI module from String to OUStringNoel Grandin
Change-Id: I79bdab414d448a0d619b80857d7b31633c116f81
2013-09-30merge queue_layout and queue_resizeCaolán McNamara
so that any window derived class, and not just dialogs, can trigger layouting of their children. Merge together the handful of hacked-up impls of this. Do that then for the sidebar PanelLayout so that when the label of the custom animation frame changes that the frame allocates enough space for the new label to display fully Change-Id: I9a95f6c3f60cd6cea47656e66cb9ffcc154a3a5a
2013-09-29add border to driverlist and drop unnecessary custom hidCaolán McNamara
Change-Id: I4e81556a0e1e0a6c9dd2aea42b3e7106f7dcf65c
2013-09-29no need for a double border inside borderCaolán McNamara
Change-Id: I650e00bd026a66f82c6a21b0810b53f2f98c81c9
2013-09-29no need for custom HID_OFAPAGE_MSFLTR2_CLB hidCaolán McNamara
Change-Id: I6002c20bf1f6e6dab6ba7d0b7a0fbbe6a721e115
2013-09-29Convert connpooloptions to .ui + adapt code.Jan Holesovsky
Change-Id: Idf76635180f73716f3d476975d9738edad464348
2013-09-29Convert dbregister to .ui + adapt code.Jan Holesovsky
Change-Id: I81cef872b6369df425b6cb3bab0eeae3fde2c34c
2013-09-29Kill internationaloptions page, it has been unused for years.Jan Holesovsky
Change-Id: Ia528bf60a8af81b17ca18ad5eb305bed59818d05
2013-09-29Convert optfltr page to .ui + adapt code.Jan Holesovsky
Change-Id: I4a854862059b531fa8e07c5cd938f776408e8c81
2013-09-28pretty up optlingu pageCaolán McNamara
Change-Id: Id9b2eec42c55d66ae4669703f1d2b376bae251ce
2013-09-27cppcheck: redundant assignmentJulien Nabet
Change-Id: I63af30b062272bb02f786e60d2fcadc91689dec6
2013-09-27Convert optlingu page to .ui + adapt code.Jan Holesovsky
Unfortunately the page looks ugly ATM :-( - ideas appreciated. Change-Id: If6c1cfc5f57c2ea58d46649bc34041674b4f5362