summaryrefslogtreecommitdiff
path: root/officecfg
AgeCommit message (Collapse)Author
2022-05-16tdf#149050 fix .uno:Gallery not opening Gallery deckJim Raykowski
Change-Id: I3e43d61e9a37f0815dafc2cf400bcb658e6c6948 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134297 Tested-by: Jenkins Reviewed-by: Jim Raykowski <raykowj@gmail.com>
2022-05-13officecfg,stoc: allow running JVM UNO components out-of-processMichael Stahl
The problem is that 32-bit Win32 applications have very little VM, and soffice.bin can run out, so try to move the JVM to a separate process (uno.bin) and connect to it via pipe. Add a new config to enable this: "org.openoffice.Office.Java/VirtualMachine/RunUnoComponentsOutOfProcess" If enabled, ServiceManager instantiates *all* JVM components out-of-process, by instantiating "com.sun.star.java.theJavaVirtualMachine" out-of-process. To ensure that the remote connection is disconnected at shutdown (and thereby prevent crashes with remote calls during late shutdown), JavaComponentLoader is now a "single-instance" service; this change should be harmless for the default in-process configuration case. Tested with these extensions: Wiki Publisher smoketest TestExtension.oxt odk CalcAddins.oxt Inspector.oxt ToDo.oxt Also passed "make check" on Linux when enabled, if the variable URE_BIN_DIR is set properly for CppunitTest_services. Change-Id: I76bf17a9512414b67dbd20daee25a6d29c05f9d9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133218 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2022-05-13sw content controls, dropdown: add an initial properties dialogMiklos Vajna
- read the doc model: show if a content control is a placeholder or not - work with a shared pointer in the dialog, which avoids lifetime issues in case the content control we edit in one view gets deleted in an other view - write the doc model: set the placeholder mode of the content control based on the checkbox state and mark the doc as modified if any widget is touched when pressing OK - handle command state: allow this dialog only inside content controls Change-Id: Ie0b9075ccd3450dd403cc7f8bbf93fc04de3b234 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134278 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
2022-05-12sw content controls, dropdown: add insert UIMiklos Vajna
- introduce a SwContentControlListItem::ToString() that tries to use the display text of the list item, otherwise falls back to its value and use it while building the dropdown widget and when inserting selected list item - handle the dropdown case in SwWrtShell::InsertContentControl() - expose this as a new .uno:InsertDropdownContentControl command - mention the new and all previous content control commands in the MS-compatible forms menu as well Change-Id: I075f77933c1466b5258357d5a661e173c34de34f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134215 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
2022-05-12tdf#148941 consistency between popup box and option dialog for objectsSeth Chaiklin
cui/uiconfig/ui/objecttitledescdialog.ui * change "Title" to "Text Alternative" to use the terminology from Web Content Accessibility Guidelines (WCAG) 2.1 https://www.w3.org/TR/WCAG21/#dfn-text-alternative which is also consistent with the purpose of this option in LO + add tooltips to "Text Alternative" and "Description" in Description popup box. The idea is that the tooltips will help to understand the purpose of dialog. sw/uiconfig/swriter/ui/frmaddpage.ui * _Alternative (Text only) -> "Text _Alternative" [This change matches the change in the popup box] + add missing : to "vertical alignment", according to HIG officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu + add tooltips for the "Name" and "Description" .unos, primarily for the customize dialog, and icons in notebookbars. Change-Id: I1943b49e13763371823bfcf2cfc8652c907de110 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134066 Tested-by: Jenkins Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2022-05-07tdf#121740 increase DrawingEngine::OLE_Objects cache limitNoel Grandin
shaves 5% off the load time for me Change-Id: Ia0ed8caa9300bfe5bcf71cfe844b8c4fdaf0fef6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133962 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-05-03Drop unused .uno:EditChartMike Kaganski
This reverts commit fb5e0581f922dba93f3689786201ee067cb01a73 Author Muhammet Kara <muhammet.kara@collabora.com> Date Fri Nov 22 13:16:25 2019 +0300 Add command .uno:EditChart Obviously this command has never been used. It was named "EditChart", but in fact it executes the default verb for any selected object, so could be named like "edit object". Since it's unused, let's just drop it instead of renaming. Change-Id: I20aa8a17c54a0bf0030c3187340690846bfbc729 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133473 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2022-05-02better cache size limit for vcl::text::TextLayoutCacheLuboš Luňák
This is not as important as SalLayoutGlyphsCache, as these should be smaller and less needed, but still, make sure to limit the memory the cache may use. Change-Id: I4051331f8c5254cb5723772bac4dd1bceb9a2a41 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133674 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2022-05-02better cache size limit for SalLayoutGlyphsCacheLuboš Luňák
With just limit on the number of cached SalLayoutGlyphs instances the actual memory used could vary wildly depending on how long the text is. Change-Id: Ibcf6918e562e81276d21876c532838996e275bd6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133673 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2022-05-02sw content controls, checkbox: add insert UIMiklos Vajna
- extend SwWrtShell::InsertContentControl() to be able to create multiple content control types - a new checkbox content control's content is always a non-checked checkbox - expose this as a new .uno:InsertCheckboxContentControl uno command - add this new command to the bottom of the form menu -- now that we have two types of content controls, have that in a sub-menu Change-Id: I058659600b3face69b89262feb0979fff32521c4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133685 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
2022-04-28tdf#144788 Split up footnotes and endnotes in NavigatorDhiraj Holden
This patch splits the footnotes and endnotes section in Navigator. Before, there was one section for both footnotes and endnotes and now there are two sections, one for footnotes and one for endnotes. Change-Id: Ic0f3af92efa1c0487ee3c407a819bf34138ef4ab Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132796 Tested-by: Jenkins Reviewed-by: Jim Raykowski <raykowj@gmail.com> Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
2022-04-27tdf#125931: add Properties panel to Math's Properties deckMike Kaganski
For now, it only contains buttons opening the dialogs accessible from Format menu. This is enough for the initial implementation, and should later be changed to individual controls allowing to set the formula properties directly. Change-Id: Ia0e52915198ddb2648d13d577d55b367f178b1ad Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133508 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2022-04-26tdf#148732 Change label, add tooltip for .uno:DefaultCharStyleSeth Chaiklin
tdf#140818 changed the label "Default Character Style" to "No Character Style". The changed label appeared in the Styles sidebar, but the menu command that appears in the Styles menu for Writer was not changed. The present patch rectifies that oversight by changing the menu/toolbar label and adds a tooltip for this command. Change-Id: I4a82dc0626702c7282d3022d2f4e45eb6b33b373 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133401 Tested-by: Jenkins Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2022-04-26tdf#125931: Add Elements deck and Elements panel to Math's sidebarMike Kaganski
Change-Id: Ie04a5dc48de38f318f0ddb42efc42cea022dc62c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133393 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2022-04-26tdf#125931: Enable sidebar in MathMike Kaganski
No panels yet, only one default deck (PropertyDeck). It is needed to have the uniform default deck like in all other modules (see commit c09f59eb6173a4a53a2d40ed80aebed18e3882ac); the panels for formula properties might appear later. Change-Id: If1785dc780111fe496638418f43e7b90a250ffce Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133334 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2022-04-26Translatable string improvements I push so they don’t rot in my local cloneAdolfo Jayme Barrientos
Change-Id: Ic057769718790ced80daf24510d27aad49e3341b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132975 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2022-04-26tdf#148751 Enable Text toolbar by default in DrawRafael Lima
The "Text" toolbar is not visible in the View - Toolbars menu, however it is accessible via Tools - Customize - Toolbars. As per user request in the bug report, I am setting this toolbar as visible in the default configuration. Change-Id: I1d2249925f24158758bd9f439634191d67ad38e4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133395 Tested-by: Jenkins Tested-by: Olivier Hallot <olivier.hallot@libreoffice.org> Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2022-04-26sw: show Manage Changes dialog for read-only documents too...Michael Stahl
... and also the panel in the in sidebar, to allow navigating the tracked changes. Disable all the Accept/Reject buttons if document is read-only. This appears to work, even when switching between 2 documents, one editable and the other read-only, with the dialog open. Change-Id: I51cce414326d50e86ba2da35c31b87d4b6daf53b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133414 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2022-04-26officecfg,unotools,framework,sfx2: store ReadOnly for recent docsMichael Stahl
Add Office::Histories::HistoryItem::ReadOnly flag to configuration so that a document that was opened read-only isn't opened as editable from recent documents. Change-Id: I6985da287d3337a53a7e41e8e500421038eedb91 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133385 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2022-04-26officecfg: deprecate Office::Histories::HistoryItem::PasswordMichael Stahl
Appears not to be set anywhere in the code, which is probably for the best; let's deprecate it. Change-Id: I2cb1d4095773819dfa602b0e2f71e83f1329011d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133386 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2022-04-22Update context names to match EnumContext::ProvideContextContainersMike Kaganski
Change-Id: Id9bb806ba526a7557cda91ebdeb649578e64517c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133281 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2022-04-21Drop special-casing for Chart's sidebar property deckMike Kaganski
Introduced in commit b33b2afe6a8b4224450da7c686beb81dbf5cd24a Author Markus Mohrhard <markus.mohrhard@googlemail.com> Date Thu Jul 09 20:39:06 2015 +0200 big step towards real chart sidebar later in commit da57c32c5cb27eee38e32d10232b31d459c399df Author Tor Lillqvist <tml@collabora.com> Date Fri Feb 28 17:02:30 2020 +0200 tdf#130348: Add special case for ChartDeck, too and then in commit ff23d87cb00388095a94b90e061564fc179e1823 Author Mert Tumer <mert.tumer@collabora.com> Date Fri May 08 17:23:12 2020 +0300 mobile: fix calc chart wizard properties is not shown The normal PropertyDeck can host all the chart-specific panels, and the other decks that had "all" application context, but are not needed for charts, have their context fixed. This cleanup is needed for a following introduction of sidebar in Math. Change-Id: I5bb24d52b8dec2133213d7dddfeb91359ed4cb4b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133262 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2022-04-21sw content controls: add insert UIMiklos Vajna
- add an SwWrtShell::InsertContentControl() to put the current selection into a content control - if there is no selection, add a non-empty placeholder - expose this as a new .uno:InsertContentControl uno command - add this new command to the bottom of the form menu -- probably we can have a sub-menu there once there will be more types Change-Id: Icb32aee777ab08d09401bf468788692b933a90ac Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133241 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
2022-04-19tdf#144493 adjust changes to GenericCommands.xcuSeth Chaiklin
There are no chapters in Draw or Impress, so the label changes by 008cfd5980f31c9e01b5cdbede33631d66f2fb56 in officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu to uno:OutlineUp and uno:OutlineDown were inappropriate. Remove "Chapter" from ContextLabel, and just make it "Label" so that Customize matches command name in menus, and add TooltipLabel for toolbars that gives a more informative tooltip. No text changes for uno:OutlineLeft and uno:OutlineRight, but same label changes to make command name in Customize correspond to name in menus, and add TooltipLabel that gives a more informative tooltip. Change-Id: I03a43089654721b9023912c29835e9f56ffc5b26 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133049 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2022-04-15sc: introduce SparklineShell and Sparkline contextTomaž Vajngerl
Having a separate sparkline context is very useful, so we can add a custom UI when the user has the cursor over a sparkline. This will allow a "Sparkline" tab for NotebookBar and its own deck in Sidebar, activated only when the sparkline is present. Also the pop-up menu can be customized specifically for the sparkline, but this may be less useful. For the sparkline context we need a custom shell - SparklineShell where now all the UNO commands can be implemented (not done in this commit). Change-Id: Idca2ad946af3afdd1b494744b80c9c093eec602c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133022 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2022-04-14tdf#147107 "chapter" -> "item" in B&N toolbar and menuSeth Chaiklin
Changes to: Move Chapter Up, Move Chapter Down, Move Chapter Up with Subpoints, Move Chapter Down with Subpoints Also capitalization correction ("With"->"with") for Demote Outline Level with Subpoints in Bullets & Numbering toolbar and menu. Change-Id: Iacb0e798c54bf4101f7048454007bf58ec4081c4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132869 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2022-04-13Resolves: tdf#148122 Celtic MD font appears wrongCaolán McNamara
Change-Id: Ib551f073b8ea0e0662660ccf01ebf56c2fd7f340 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132978 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2022-04-12UI Workaround for tdf#146653: change localized Source Han {Sans,Serif} CN...Kevin Suo
...to Source Han Sans CN Normal and Source Han Serif CN Medium for Simplified Chinese UI, so that the font shown is not bold. Tranditional Chinese and Japanese settings are not touched. It is up to the zh-TW and JA l10n team to decide whether to apply the same change. This does not resolve the bug itself, but makes the UI usable when the system has Source Han Sans CN or Source Han Serif CN fonts installed, so that the default font used is normal weight rather than bold. Change-Id: I52753448d886854d92ba8a26d8b03bf42522735f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128798 Tested-by: Jenkins Reviewed-by: Franklin Weng <franklin@goodhorse.idv.tw> Reviewed-by: Eike Rathke <erack@redhat.com>
2022-04-10sc: add UI, undo/redo and test to change sparkline data rangeTomaž Vajngerl
This adds a "edit sparkline" action to the context menu and a dialog to change the data range of a sparkline. To change a sparkline using undo/redo, a new class UndoEditSparkline was added, which allows to change the attributes of a sparkline and revert back the old attributes when undoing. This is then used in the Dialog when setting the changed data range of a sparkline. To make sure that undo/redo works correctly, a simple unit tests was added. Change-Id: I08af1813fa288278bc0d33b0540660b325b17235 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132748 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2022-04-08allow to override the generator/producer string in output documentsLuboš Luňák
Add a (non-gui) setting GeneratorOverride that, if set, is used for odt/docx/pdf generator string identifying the application that has written it instead of the normal productname etc. string. Change-Id: Ibe12a063e7e6b5a09c69cdf66cba073793650d62 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132495 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2022-04-06sc: add Group and Ungroup to context menu for sparklinesTomaž Vajngerl
This change allows to group parklines together into a sparkline group, or ungroup them, so they use their own sparkline group. This also adds the undo and redo for this actions. Change-Id: I61b604203afaf2fe8c2d47b80082739ded15d6fb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132545 Tested-by: Tomaž Vajngerl <quikee@gmail.com> Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2022-04-06sc: add "Delete Sparkline Group" context menu action + Undo/RedoTomaž Vajngerl
Change-Id: I34e11a4881c564351c3e08d157fb42ac4bb8ef3c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132544 Tested-by: Tomaž Vajngerl <quikee@gmail.com> Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2022-04-04sc: add "Edit Sparkline Group" context menu actionTomaž Vajngerl
This adds a context menu to edit the sparkline group for the current selected range (if it contains a sparkline group). This reuses the SparklineDialog that is used for inserting a new sparkline. The context menu was rearranged so that all actions for the sparklines are in a "Sparklines" submenu. Change-Id: Ia1a025b7c0bf1849c72fdca77ea2f8dc8860c6ab Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132503 Tested-by: Tomaž Vajngerl <quikee@gmail.com> Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2022-04-03sc: add "Delete Sparkline" context menu commandTomaž Vajngerl
Change-Id: I0e2bf2172da3cbba391ca64c93fad6bccd82f3ac Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132468 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2022-04-03sc: SparklineDialog and "Insert Sparkline" to context menuTomaž Vajngerl
This adds a SparklineDialog, which is used to add/edit the Sparkline input/output ranges. The command for the context menu "Insert Sparkline" calls the SparklineDialog for inserting a new sparkline into cells. Currently the SparklineDialog include the properties for the SparklineGroup, which will be added in a later commit. Change-Id: I9036d788fdf2a035f1ce10fc7413327a92144137 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132465 Tested-by: Tomaž Vajngerl <quikee@gmail.com> Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2022-04-01keep draw and impress sidebar page setup different in sidebarPranam Lashkari
in draw sidebar "Page" deck displayed title "Slide" Signed-off-by: Pranam Lashkari <lpranam@collabora.com> Change-Id: Iea7c95bc8c7ef2054c04c6cae77a254c969e1156 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132368 Tested-by: Jenkins
2022-04-01tdf#148284 make app bg darker than doc bgRizal Muttaqin
Change-Id: I5966d46f77647168f2aa1f610ac9aeb3d4431ab2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132348 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2022-03-30tdf#148263: Calc: "Sheet" -> "Rows" is not very clear that it's about deletingJulien Nabet
Idem for "Columns" Regression from: commit 763e5d233d18a26f64dd8c4db67ce62ee289832e Author: Julien Nabet <serval2412@yahoo.fr> Date: Wed Mar 16 20:35:33 2022 +0100 Related tdf#114286: put duplicates commands in GenericCommands (DeleteColumns) Change-Id: Iecfa09729ea1b237fb6994be4b3ceaaa3ad126df Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131680 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org> commit 52a695d2ceb4231a9fcc419959e29023ecef037b Author: Julien Nabet <serval2412@yahoo.fr> Date: Thu Mar 17 11:01:47 2022 +0100 Related tdf#114286: put duplicates commands in GenericCommands (DeleteRows) Change-Id: I100297d10b2643c5ddad7753a7c1032526ce06cd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131699 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org> Change-Id: I790f2b686e27195b137db3b2d6385787e1829e04 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132325 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2022-03-30add Initialization Vectors to password storageCaolán McNamara
old ones default to the current all zero case and continue to work as before Change-Id: I6fe3b02fafcce1b5e7133e77e76a5118177d77af Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131974 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2022-03-24make hash encoding match decodingCaolán McNamara
Seeing as old versions of the hash may be in the users config, add a StorageVersion field to the office config Passwords section which defaults to 0 to indicate the old hash is in use. Try the old varient when StorageVersion is 0. When a new encoded master password it set write StorageVersion of 1 to indicate a new hash is in use and use the new style when StorageVersion is 1. Change-Id: I3174c37a5891bfc849984e0ec5c2c392b9c6e7b1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131947 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2022-03-21Related tdf#114286: put duplicates commands in GenericCommands (SplitCell)Julien Nabet
Change-Id: I8d63d47782a77350ab0f38b1a96cd045b44500a6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131676 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
2022-03-17Related tdf#114286: put duplicates commands in GenericCommands (DeleteRows)Julien Nabet
Change-Id: I100297d10b2643c5ddad7753a7c1032526ce06cd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131699 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
2022-03-17Related tdf#114286: remove duplicates commands in Calc/Draw (InsertAnnotation)Julien Nabet
Change-Id: I745e8d06c7f9886421ff95426c6cb4cee8198cb9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131679 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
2022-03-17Related tdf#114286: put duplicates commands in GenericCommands (DeleteColumns)Julien Nabet
Change-Id: Iecfa09729ea1b237fb6994be4b3ceaaa3ad126df Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131680 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
2022-03-15Related tdf#114286: put duplicates commands in GenericCommands (MergeCells)Julien Nabet
Change-Id: Ied2eac088535c7abc2e823b18cb130eac8d36c3d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131399 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
2022-02-15tdf#145745 Create uno:DuplicateSheet commandrafaelhlima
Change-Id: Ic8d37f02d45c6f958bf6133c27997adea9bc8c7c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129541 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
2022-02-14tdf#147042 Manage changes sidedbar no longer needs to be experimentalrafaelhlima
Currently the Manage Changes sidebar in Writer only appears if experimental features are enabled. However, since the sidebar relies on a fully functional dialog, it no longer needs to be experimental. Change-Id: Ia18a4e81c606c8dcbe5a53eaba33c0109f939dd0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129477 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
2022-02-09Resolves tdf#147301 - Disable Hidden Row/Col indicatorHeiko Tietze
Off by default now Entry in View menu added to easily switch on/off Change-Id: I138ce90f1d2e3c2337368870803d5aa959116c3f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129712 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
2022-01-27related tdf#111733 TextCharacterSpacingControl sw: goto position tabJustin Luth
The kerning button on the sidebar very unhelpfully launches the character properties dialog at the last-used tab, instead of bringing the user directly to the "position" tab where the kerning (.uno:Spacing) property can be found. Notes: -sw draw text (eg. textbox) does nothing - no dialog at all -sw comments also do nothing -sc does nothing -sd does nothing Somehow the sidebar is calling SID_ATTR_CHAR_KERNING, but I can't find out where. In any case, I have to change this SID_ATTR_CHAR_KERNING into SID_CHAR_DLG_POSITION for these "do nothing" situations. That can happen in separate commits for each situation. I basically copied SID_CHAR_DLG_EFFECTS which is explicitly called in underline's "more options", so it is used a bit differently. Change-Id: I833d54da3664b9c01325130a2c36bbbe90b2b878 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129043 Tested-by: Justin Luth <jluth@mail.com> Reviewed-by: Justin Luth <jluth@mail.com>
2022-01-27Resolves tdf#128258 - Draw a dotted line before hidden columns/rowsHeiko Tietze
Color and on/off configurable via Tools > Options > Application Colors Change-Id: Ia4b1e1c86f36d1b0f508a5b3e866a79418f16c5a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128553 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>