summaryrefslogtreecommitdiff
path: root/officecfg/registry/schema/org/openoffice/Office
AgeCommit message (Collapse)AuthorFilesLines
2013-05-15Spelling "separate" (etc) correctly is hardTor Lillqvist1-3/+3
2013-05-10Personas: Kill the non-finished "Background Image" feature.Jan Holesovsky1-34/+0
It seems not to be a too good idea anyway - the image has to have some specifics, so the value of setting any random image as the background of Writer / Calc / Impress is questionable. Either way, if anybody wants to finish that, easy to recover from the history ;-) - better than keeping the unused code around. Change-Id: I5079210bd91b5e70ce20681e5477b860bb28ff07
2013-05-09fdo#56995 Created global option to disable presenter console in Impressmmeof1-0/+7
Changes made are as Follows /officecfg/registry/schema/org/openoffice/Office/Impress.xcs To add the new global checkbox to Libreoffice Impress>General>Start A new xml block for EnablePresenterScreen was added <prop oor:name="EnablePresenterScreen" oor:type="xs:boolean" > /sd/source/ui/app/optsitem.cxx To add the setter/getter for the new checkbox button, namely: SetEnablePresenterScreen IsEnablePresenterScreen EnablePresenterScreen added to index number 26 of: GetPropNameArray() /sd/source/ui/dlg/tpoption.cxx SdTpOptionsMisc() editted to attach EnablePresenterScreen to CBX_ENABLE_PRESENTER_SCREEN aCbxEnablePresenterScreen ( this, SdResId( CBX_ENABLE_PRESENTER_SCREEN)) Also Added to FillItemSet() and Reset() functions /sd/source/ui/dlg/tpoption.src b/sd/source/ui/dlg/tpoption.src enableSdRemote size changed to Size = MAP_APPFONT ( 116 , 10 ) ; Pos = MAP_APPFONT ( 12 , 171 ) ; 158 was correct but 171 was added on request To allow enableSdRemote(CBX_ENABLE_SDREMOTE) and enablePresenterScreen( CBX_ENABLE_PRESENTER_SCREEN) to be drawn adjacent. enablePresenterScreen checkbox CBX_ENABLE_PRESENTER_SCREEN added /sd/source/ui/inc/optsitem.hxx Set default value for enablePresenterScreen as 1 or TRUE sal_Bool bEnablePresenterScreen : 1; Added getter/setter named same as above for interface definition sd/source/ui/inc/tpoption.hrc Defined CBX_ENABLE_PRESENTER_SCREEN as 42nd checkbox #define CBX_ENABLE_PRESENTER_SCREEN 42 /sd/source/ui/inc/tpoption.hxx Added interface declaration of aCbxEnablePresenterScreen which was attached to CBX_ENABLE_PRESENTER_SCREEN /sdext/source/presenter/PresenterScreen.hxx Added interface declaration of bool isPresenterScreenEnabled() to PresenterScreen class to allow presenterscreen to get if the option is checked /sdext/source/presenter/PresenterScreen.cxx Added definition of isPresenterScreenEnabled(const css::uno::Reference<css::uno::XComponentContext>& rxContext) Input : Current Process Context Output : The 0/1 value of EnablePresenterScreen from presenterconfig In PresenterScreenListener::notifyEvent( ) Added if(mpPresenterScreen->isPresenterScreenEnabled(mxComponentContext) mpPresenterScreen->InitializePresenterScreen() To initialize PresenterScreen only when enabled Change-Id: If8242e607323df57d8e78d08cf2129d03c0c9e4f Reviewed-on: https://gerrit.libreoffice.org/3762 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
2013-04-27indent correctlyThomas Arnhold1-1/+1
Change-Id: Ida5eb46abbc602a0afe355f9ba10059e3dddcd66
2013-04-27xmllint: reformat filesThomas Arnhold3-3896/+3886
xmllint --loaddtd ./officecfg/registry/data.dtd --format ... Change-Id: I7747171b56205fc5df8e049f6165f3eb8dc52a2e
2013-04-27remove double whitespacesThomas Arnhold1-22/+22
Change-Id: Id7d8278611feaaf285711bdaed7dd2f6e396bec4
2013-04-27xmllint: reformat filesThomas Arnhold6-1963/+2190
Change-Id: I7c1806285a325447e0a5ab19212cf1d4779988ef
2013-04-26xmllint: reformat filesThomas Arnhold2-7134/+7131
Writer.xcs is the biggest one Change-Id: Ic7eb27c14579496009c6079b7c815795c6c90e4a
2013-04-26xmllint: reformat filesThomas Arnhold11-2054/+2004
Change-Id: I87c953d8ffa2285c6acd08b6e2c1ef5810b71dfd
2013-04-26xmllint: reformat filesThomas Arnhold9-385/+375
Change-Id: I395211c53d37b02304cb87edc1c829405c215fe1
2013-04-26xmllint: reformat filesThomas Arnhold41-1097/+1097
Change-Id: Ieeadda1e69be45a1fd737a356e5987a54c82b13e
2013-04-26xmllint: reformat filesThomas Arnhold12-1307/+939
xmllint --loaddtd ./officecfg/registry/data.dtd --format ... Change-Id: I0218762a64f2547424d5ddddf78e3fadc2b65093
2013-04-26xmllint: use <value/>Thomas Arnhold1-2/+2
Change-Id: I6894ccb114044e97b7a1f973864a2fdd8250c8e8
2013-04-17remove whitespace from xml tagsThomas Arnhold38-38/+38
Change-Id: I55e8c5876423969788d81524f40c54644f59a256
2013-04-17remove some newlines at eofThomas Arnhold13-158/+0
and one last <author> tag Change-Id: I4fa21ba3cb4b76327ae476f2f7f75152db478f76
2013-04-15fdo#60724 correct spellingThomas Arnhold1-1/+1
Change-Id: I7318a9f4f3410edf4dbe67bf08f31682fcb4edc7
2013-04-10Create Photo Album implementationGergő Mocsi1-0/+17
Added a checkbox to enable/diable Keep Aspect ratio. Options 2 images/slide, 4 images/slide implemented. UI tweaks: dialog window remembers last used directory (via config), buttons get enabled/disabled according to the content of the ListBox. ListBox show filename only, full path is shown lower in a label. Dialog window reopens again, if slide preview is not in focus. Added a title slide: author, title. Conflicts: officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu sd/uiconfig/simpress/ui/photoalbum.ui Change-Id: I68d2a3e00f8c55b909fe4d98aa3958188653390e Reviewed-on: https://gerrit.libreoffice.org/3169 Reviewed-by: Andras Timar <atimar@suse.com> Tested-by: Andras Timar <atimar@suse.com>
2013-04-10API CHANGE: cleanup of Math.xcsThomas Arnhold1-11/+0
Remove deprecated items. All are unused in the code. since 2002 (ce44de00): Misc/NoSymbolsWarning Change-Id: I98c828c81315ecbfbaa09c2571582199d2f6e833
2013-04-10API CHANGE: cleanup of Java.xcsThomas Arnhold1-266/+0
Remove deprecated items. All are unused in the code. since 2002 (d8155fb9): Install/AdditionalClasspath Install/AdditionalSearchPath Install/ExcludeVersion Install/InstallationPackage Install/PackageInstallationDirectory Install/RequiredVersion Install/Vendor Install/VerifiedVersion Install/Version VirtualMachine/DebugPort VirtualMachine/DisableAsyncGC VirtualMachine/EnableClassGC VirtualMachine/EnableVerboseGC VirtualMachine/EnvironmentType VirtualMachine/JavaLibPath VirtualMachine/JavaStackSize VirtualMachine/MaxHeapSize VirtualMachine/MinHeapSize VirtualMachine/NativeStackSize VirtualMachine/RunTimeLib VirtualMachine/SystemClassPath VirtualMachine/VMType VirtualMachine/Verbose VirtualMachine/VerifyMode Change-Id: Iefde5b6d4ff57dc708059681a247efa419c11013
2013-04-08API CHANGE: cleanup of Common.xcsThomas Arnhold1-353/+0
Remove deprecated items. All are unused in the code. since 2002 (ce44de005c): Gallery/ID_Dialog Image/Color/PosterColor Image/Color/RotationAngle Image/Color/LeftRight Image/Color/BlackWhiteThreshold Image/Effect/MosaicX_Tile Image/Effect/MosaicY_Tile Image/Effect/SolarizationThreshold Image/Effect/TileX_Tile Image/Effect/TileY_Tile since 2004 (f1e7d342bf): OfficeObjects since 2004 (2f137724a5): ExternalApps/ExternalMailer/UseDefaultMailer ExternalApps/ExternalMailer/CommandProfile ExternalApps/ExternalMailer/Profiles MailCommandLineProfile since 2005 (c82714ccf5): Path/Current/OfficeInstall Path/Current/OfficeInstallURL Change-Id: Ia6411ef0912096ced2dc7396e9636a09ee94714c
2013-04-05unotools: remove some unused itemsThomas Arnhold1-15/+0
Change-Id: I95bcac6a3ff8cf4644c9d1596c75cac2d9cd94fe Reviewed-on: https://gerrit.libreoffice.org/3191 Reviewed-by: Miklos Vajna <vmiklos@suse.cz> Tested-by: Miklos Vajna <vmiklos@suse.cz> Notes: API CHANGE.
2013-04-05Remove SvtInternalOptionsThomas Arnhold1-35/+0
* only Get/SetCurrentTempURL were used, but only for compatibility reasons, to remove old temporary directories (before 2001). Those should be gone today. * MailUIEnabled was false in the xcu file. * SID_MAIL_SENDDOC* are handled some lines further. Change-Id: I482719b0de9df0a77c2fef0bf25ae1fb68926375 Reviewed-on: https://gerrit.libreoffice.org/3180 Reviewed-by: Miklos Vajna <vmiklos@suse.cz> Tested-by: Miklos Vajna <vmiklos@suse.cz> Notes: API CHANGE.
2013-03-22officecfg: remove author tag from xcs filesThomas Arnhold81-1228/+0
git blame does the same Change-Id: I79ff6866bc0de02ae841df9d15599278ade06e31
2013-03-18fdo#61950 move report builder from bundled extensions to plain codeDavid Ostrovsky3-0/+145
For test sample report from fdo#61726 can be used. Change-Id: Iacf8ddc4cf8ad0a408d72e18ecb7237476afeffe Reviewed-on: https://gerrit.libreoffice.org/2718 Reviewed-by: David Ostrovsky <David.Ostrovsky@gmx.de> Tested-by: David Ostrovsky <David.Ostrovsky@gmx.de>
2013-03-11fdo#47011 autosave featureKrisztian Pinter1-1/+1
removed unnecessary prop. name "Document/UserAutoSave" from saveopt.cxx fixed autosave feature setting "losing its value" set autosave feature default value to False Change-Id: I473154b21bab53bf595a5a59e87dc16e472dcbf9 Reviewed-on: https://gerrit.libreoffice.org/2663 Reviewed-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr> Tested-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr>
2013-03-07WIP: fdo#47011 autosave featureKrisztian Pinter1-0/+6
Change-Id: Ib2cbcc33e6188c60c183b5f47e9ae9c9d4c91b95
2013-03-02Typo fix: informations -> information and a few other adjacent typos.Gregg King1-1/+1
FDO:60724 Change-Id: I73ad9f1c37cbbcf28d996ed73c75cf09553e499b Reviewed-on: https://gerrit.libreoffice.org/2479 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
2013-02-23Fix typo seperated/separatedJulien Nabet1-1/+1
Change-Id: I133423de994b1befe246b6c921802428a3528202
2013-02-22[Uu]sefull -> [Uu]sefulJulien Nabet2-2/+2
Change-Id: I5dad83789ff9b6815561208679a5e19821041e1f
2013-02-22s/the the/the/Tor Lillqvist2-4/+4
Change-Id: Iadacffaad832c6ff06757e8567e24f929f24a4c3
2013-02-11Better default values for Word completion featureSamuel Mehrbrodt1-3/+3
http://nabble.documentfoundation.org/Libreoffice-ux-advise-Word-completion-default-value-td4031168.html Change-Id: Ifef07653c2155b3c26d65d41cae1164b44fbd04f Reviewed-on: https://gerrit.libreoffice.org/1937 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2013-02-07sdremote: Enable it by default.Jan Holesovsky1-1/+1
Change-Id: I268dba185df60bb21d6b87f8e71175f52ea1f1a3
2013-01-22StringRefAddressSyntax is nillableStephan Bergmann1-1/+1
...00134920ec968ff492c88d8c5a6af22f1ebfa328 "New option for INDIRECT reference syntax" and e6ef9f128e85961921b0b319087010fce1d59a74 "Rename this option to make it sound more generic" had marked /org.openoffice.Office.Calc/Formula/Syntax/StringRefAddressSyntax (formerly IndirectFuncGrammar) as oor:nillable="false", even though it is given no value in officecfg, and the sole code reading it (SCFORMULAOPT_STRING_REF_SYNTAX case in ScFormulaCfg ctor, sc/source/core/tool/formulaopt.cxx) is prepared to read a nil value. Change-Id: Icab871c821f437cd095280e9af8b0c0c11bbef8f
2012-12-20Add new option for recalculation policy when loading ODF into Calc.Kohei Yoshida1-1/+26
This applies only to those documents that are generated by non-LibreOffice applications. Change-Id: I98a7877df36c5de74e4f6f6d09a67e171cbab4a3
2012-12-19Clean up indentation etc.Stephan Bergmann1-540/+625
Change-Id: Ia53747fb0df923a421646e4f637b08950da2d3c5
2012-12-17Change the order of always, never, ask enumerations.Kohei Yoshida1-2/+2
This tri-state option is commonly ordered ask-always-never or always-never-ask, but not always-ask-never, which is not very common. Change-Id: Ie3a3d1b40397b5cd7d28e64948a2b946bb619b49
2012-12-10improve the recalc dialog for ooxmlMarkus Mohrhard1-0/+30
Change-Id: I94ea2d52f86a340ce3802ea4b63642cfc637bd2d
2012-12-06Personas: Read the info from the Persona page, and store it.Jan Holesovsky1-0/+10
Copies the bitmaps to user/gallery/personas/ in user's profile too. Change-Id: Ibb673320042633850df8bb7a6a849be2c3fc13b8
2012-12-05Bye bye ODMATor Lillqvist1-13/+0
SUSE has no interest in it any longer, and I doubt anybody else has either.
2012-12-04Personas: Configuration entries for Personas and BacgroundImage.Jan Holesovsky1-0/+62
Change-Id: I47b1a5bacaeb5bd54f11630e5d3f2652be2bdfb4
2012-11-29Resolves: fdo#44664 Provide a way to set the default print job format.Caolán McNamara1-0/+26
a) In the print dialog you can temporarily override the default print job format for a single print job b) In the printer options dialog you can override the default print job format for a single printer c) Under tools->options->print you can override the default print job format for all printers. Tidy up the restart dialog in passing Change-Id: Ibea94bab6a79c3590dbf34583013db4e2ac06f45
2012-11-26Give sdremote a separate option, apart from Experimental featuresMiklos Vajna1-0/+7
Change-Id: I34f299acaa489d5c619c764c917b8a8d26b71557
2012-11-21Turn presenter screen from bundled extension to plain codeStephan Bergmann1-0/+460
The immediate trigger was 5e5c11c664f67ff9fd1120905b09a32bea3b2f6c "fdo#42070 Fix RTL support in presenter console" causing build failures on Mac OS X when linking the extension against vcl, but there should be more benefits of going from a bundled-anyway extension to plain code. (Not the least to get rid of the com.sun.star.drawing.XPresenterHelper hack.) To avoid unnecessary confusion between the newly plain code and any instance of the old extension still installed (per-user or shared), I renamed all relevant identifiers as follows: * UNO implementation com.sun.star.comp.Draw.framework.PresenterScreenJob -> org.libreoffice.comp.PresenterScreenJob * UNO implementation com.sun.star.sdext.presenter.PresenterProtocolHandler -> org.libreoffice.comp.PresenterScreenProtocolHandler * protocol handler schema vnd.com.sun.star.comp.PresenterScreen -> vnd.org.libreoffice.presenterscreen * configuration schema /org.openoffice.Office.extension.PresenterScreen -> /org.openoffice.Office.PresenterScreen (it appears this contains little to no user-changeable data anyway, so not migrating it to a new user profile due to the schema name change should not be problematic) * job ID onDocumentOpenedJob -> org.libreoffice.PresenterScreen Even with these precautions, having the presenter screen installed both as plain code and as a (per-user or shared) extension still leads to a crash when activating presentation mode (likely due to how both codes want to take control of the screen). To mitigate this, existing installations of the extension are explicitly not migrated to new user profiles. The sdext/source/presenter/bitmaps/*.png files were moved to icon-themes/galaxy/sd/res/presenterscreen-*.png and are now accessed via SdResId (adding the relevant data to sd/source/ui/inc/res_bmp.hrc and sd/source/ui/app/res_bmp.src; not sure whether these locations are already ideal). The code itself has been left mostly unchanged in sdext/source/presenter/, and it still clumsily communicates with sd core code via XPresenterHelper. There is a lot of room for improvement here. The help data is left untouched at sdext/source/presenter/help/ and needs to be incorporated properly into helpcontent2 in a follow-up commit. The --disable-ext-presenter-console configure switch is gone. Change-Id: I71adb7ae6dcdbd1802151fce6e3871d8a2026332
2012-11-20Revert "Hide the rulers in Writer by default for a cleaner look"Jan Holesovsky1-1/+1
Terribly sorry to revert this - but the UX-advise consensus is to show the rulers by default. This reverts commit ae991a10701caac3db2483a8aef05e4e8385765c.
2012-11-19re-base on ALv2 code. Includes:Michael Meeks81-1883/+1140
Patch contributed by: Jurgen Schmidt remove onlineregistration with dependencies http://svn.apache.org/viewvc?view=revision&revision=1240245 imported patch package_eventlistener.patch http://svn.apache.org/viewvc?view=revision&revision=1172103 Patch contributed by Pedro Giffuni Accept Google Chrome OS fonts as equivalent to MS fonts. http://svn.apache.org/viewvc?view=revision&revision=1233155 http://svn.apache.org/viewvc?view=revision&revision=1233408 Patch contributed by Andre Fischer Do not add targets for junit tests when junit is disabled. http://svn.apache.org/viewvc?view=revision&revision=1241508 Patches contributed by Mathias Bauer (and others) gnumake4 work variously http://svn.apache.org/viewvc?view=revision&revision=1394707 http://svn.apache.org/viewvc?view=revision&revision=1394326 cws mba34issues01: #i114600#: remove forbidden characters from list of unencoded characters http://svn.apache.org/viewvc?view=revision&revision=1172370 Patches contributed by Oliver Rainer-Wittman some clean up in JPEGReader due to memory constraints http://svn.apache.org/viewvc?view=revision&revision=1299729 119114 - method <UpdateDialog::addSpecificError(..)> - create entry with correct type http://svn.apache.org/viewvc?view=revision&revision=1305265 Patches contributed by Ariel Constenla-Haile i118707 - make toolbar control's popup window grab focus http://svn.apache.org/viewvc?view=revision&revision=1225846 Patches contributed by Herbert Duerr #i118662# remove usage of BerkeleyDB in desktop module http://svn.apache.org/viewvc?view=revision&revision=1213171 minor cleanups in dp_persmap.* http://svn.apache.org/viewvc?view=revision&revision=1215064 flush early to prevent problem with extension manager not cleaning up its objects http://svn.apache.org/viewvc?view=revision&revision=1228147 i118726 do not flush *pmap file while reading it http://svn.apache.org/viewvc?view=revision&revision=1230614 #i119048# migrate BDB extension entries using a simple heuristic http://svn.apache.org/viewvc?view=revision&revision=1300972 #i119048# handle edge cases when importing BDB hash files http://svn.apache.org/viewvc?view=revision&revision=1301428 #i119113# fix of-by-one when importing BDB files http://svn.apache.org/viewvc?view=revision&revision=1305420 restore our encryption settings, icon themes, and dictionaries. removed wrapper hacks, kill obsolete bundled extension blob / pre-registration handling, remove duplicated quickstart code. remove OS/2 conditionals.
2012-11-15PlaceEditDialog: simplified CMIS by adding template URLs for common serversCédric Bosdonnat1-0/+10
Change-Id: I041d58d09e132e481cfa278300c494c9f1d75f29
2012-11-12re-base on ALv2 code. Includes:Michael Meeks1-0/+44
Patches contributed by Pedro Giffuni: Avoid some uses of non portable #!/bin/bash in shell scripts. http://svn.apache.org/viewvc?view=revision&revision=1235297 Reduce the dependencies on non standard GNU copy. http://svn.apache.org/viewvc?view=revision&revision=1238684 Correct /usr/bin/env path. http://svn.apache.org/viewvc?view=revision&revision=1235619 Complex Toolbar Controls Extension from the SDK Patches contributed by Ariel Constenla-Haile http://svn.apache.org/viewvc?view=revision&revision=1190390 i118615 - make epm more verbose http://svn.apache.org/viewvc?view=revision&revision=1204288 Patches contributed by Mathias Bauer (and others) gnumake4 work variously http://svn.apache.org/viewvc?view=revision&revision=1394707 http://svn.apache.org/viewvc?view=revision&revision=1394326 Patches contributed by Juergen Schmidt: jsc341: i117327: take care if no dependency node in current description exists, create one http://svn.apache.org/viewvc?view=revision&revision=1172101 jsc341: i117327: add extra extension dependency check http://svn.apache.org/viewvc?view=revision&revision=1172098 make initial branding changes http://svn.apache.org/viewvc?view=revision&revision=1231878 Patches contributed by Ingo Schmidt native373: #i117733# no linux jre installation on 64 bit systems http://svn.apache.org/viewvc?view=revision&revision=1167536 native373: ##164464# improve debian support http://svn.apache.org/viewvc?view=revision&revision=1167537 Patch contribtued by Armin Le-Grand: Changed various aspects concerning usages of old vendor names http://svn.apache.org/viewvc?view=revision&revision=1293313 fix for neon webdav, remove coinmp bits, improve odk script, cleanup & remove OS/2 conditionals, system ucpp fixes, remove OS/2 conditionals, restore our license filenames.
2012-11-12fdo#42099 set option Writer Print Automatic.inserted blank pages default OFFCor Nouws1-2/+2
People often get confused when doing mail merge or having a document with different page styles. Change-Id: Ia3f2be5e98d57e988fcbb3eba89cc26323400082 Reviewed-on: https://gerrit.libreoffice.org/1040 Reviewed-by: Tor Lillqvist <tml@iki.fi> Tested-by: Tor Lillqvist <tml@iki.fi>
2012-11-07Hide the rulers in Writer by default for a cleaner lookSamuel Mehrbrodt1-1/+1
This is consistent with Impress. Might need to be discussed with ux-advise Change-Id: Icbe719207410d952c76d96c84450fd5a5831ea15 Reviewed-on: https://gerrit.libreoffice.org/956 Reviewed-by: Radek Doulík <rodo@novell.com> Tested-by: Radek Doulík <rodo@novell.com>
2012-10-04fdo#52022: Simple/LargeControlPoints actually can have nil valuesStephan Bergmann3-6/+6
...in old LO 3.5 registrymodifications.xcu, which causes trouble when migrating to >= LO 3.6, see <https://bugs.freedesktop.org/show_bug.cgi?id=52022#c23> for all the details. Change-Id: I8fa1e67998c9588b9d8bf3a3b52e4b0684d3d705