summaryrefslogtreecommitdiff
path: root/bundled
AgeCommit message (Collapse)AuthorFilesLines
2019-04-26wsd: allow paste content to tunneled dialogHenry Castro3-4/+5
Change-Id: I32fabaa533a0e9d853226b329d2d8b1c489dd776 Reviewed-on: https://gerrit.libreoffice.org/70960 Reviewed-by: Henry Castro <hcastro@collabora.com> Tested-by: Henry Castro <hcastro@collabora.com>
2019-04-23wsd: set the language when creating a new viewAshod Nakashian2-3/+10
This uses the new createViewWithOptions API to set the language of the user at the point of creating a new view. Change-Id: Ibf3e0af1b0cc300126388c1217692d8d969be0f3 Reviewed-on: https://gerrit.libreoffice.org/67501 Reviewed-by: Ashod Nakashian <ashnakash@gmail.com> Tested-by: Ashod Nakashian <ashnakash@gmail.com>
2019-04-23Unipoll: integrate with the LOK mainloop in a single thread.Ashod Nakashian3-1/+30
Unfortunately processing multiple events from the Kit socket is causing massive document invalidations, for unknown reasons. As such, for now we have to process one event at a time, until the source of the invalidations is found and fixed. Without the invalidation, the average tile rendering roundtrip is about 3x faster than with the invalidations and the maximum roundrip is at least 2x faster. Change-Id: Iafbf9ccc2b80656cb71c208b598080f72d201ca2 Reviewed-on: https://gerrit.libreoffice.org/70906 Reviewed-by: Ashod Nakashian <ashnakash@gmail.com> Tested-by: Ashod Nakashian <ashnakash@gmail.com>
2019-04-19Update bundled headers with profiling enumAron Budea1-0/+6
Change-Id: If14350cebf9e48b4338aacf55f95a40ef9fb27be Reviewed-on: https://gerrit.libreoffice.org/70986 Reviewed-by: Aron Budea <aron.budea@collabora.com> Tested-by: Aron Budea <aron.budea@collabora.com>
2019-03-27Update to match core masterTor Lillqvist1-2/+2
Change-Id: I9670676db84cbce949bf230d62f9c1f7666fe09f
2019-03-26Update to match core masterTor Lillqvist2-0/+25
Change-Id: I8932f9ea8ebd1addd9679f2f325b4dbafa48578c
2019-01-22Update from core masterTor Lillqvist2-0/+22
Change-Id: I69e93f67be0cc5b75fecb0581348283fa0c6ed2c
2018-12-13Revert "Update from core master"Tor Lillqvist2-39/+0
Was reverted in core, too. This reverts commit cd389cb6b0fffa4ba1b2a8c6428252715774f09a.
2018-12-11Update from core masterTor Lillqvist2-0/+39
Change-Id: Iae9ae1d0227a40bfc6de95557bd99210c7e437fa
2018-12-07loleaflet: shape scaling reworkMarco Cecchetti1-2/+4
Now shape scaling is handled through the transform dialog instead of simulating a drag and drop event in core. For performing a uniform scaling when the shape/image is rotated we need to inform the client about the rotation angle for the selected graphic object that has been achieved but appending an angle argument to the graphic selection callback. The client check if the angle is divisible by 90 in order to decide if uniform scaling should be used or it doesn't. Moreover now it is also possible to reverse shapes/images through negative scaling. Change-Id: Iadb93f5883ac403313c1358cb3d8cc9db78338fd
2018-12-07wsd: update bundled headers and improve renderShapeSelection testAshod Nakashian2-7/+5
Unfortuantely it still fails, but this is not regression. Now with the new patch in Core the exception is caught and so at least the binary survives (and the API returns 0). New unit-test added in Core to help track the issue down and fix. Also, free the memory allocated by the API. Change-Id: I5d788a2ee0383de1c323af4cd6b39b8615a35baf
2018-12-07Introduce client-server message for requesting the selected shape as SVGTamás Zolnai2-0/+15
It works for Impress only now. Change-Id: I130707d8e96e0c633f2531b1cb81ce74dc6ec6e1
2018-11-20fix mismergeAndras Timar1-9/+0
Change-Id: I34c002d86ca32f0dec8c04b31ec242129db20c4d
2018-11-19hidpi dialogs: passing dpi scale value with the paintwindow msgMarco Cecchetti1-0/+9
Change-Id: Icd0f48c98410af32e65bb44c413dfeb078ab8774
2018-11-12Notify about the editing context.Jan Holesovsky4-10/+40
And also: * Hint the compiler to warn about the missing callbacks. * Add few missing ones. * Update the bundled headers. Change-Id: I8d31363eaaea289e8a517c0b9b1142b33ce3027e
2018-11-09update bundled LOKit headers with document signature functionsTomaž Vajngerl2-3/+24
Change-Id: I30ef122fdba369a73742a4cb11b971deb21b2a01 Reviewed-on: https://gerrit.libreoffice.org/62532 Reviewed-by: Tomaž Vajngerl <quikee@gmail.com> Tested-by: Tomaž Vajngerl <quikee@gmail.com>
2018-10-29Add a newline to make the file match the one in core.gitTor Lillqvist1-0/+1
Change-Id: Icb4b285a1d1510af550f1a3d98276546a4dc6aad
2018-10-29lokit: add funct. to insert, sign and verify signatureTomaž Vajngerl2-0/+29
A lot of signing code paths trigger a GUI dialog (to select the certificate for example) which aren't acceptable when triggering through the LOKit. This code paths needed to be duplicated and reworked to not trigger any GUI action. Change-Id: I2f0d6038fb1bcd00adcdf86e432f9df8858cc21c Reviewed-on: https://gerrit.libreoffice.org/61780 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2018-10-29Avoid gcc: "specified bound depends on the length of the source argument"Tor Lillqvist1-1/+1
Just use memcpy(). Change-Id: Icb705acb6c12baf28684c763a77da7abc514ea6d Reviewed-on: https://gerrit.libreoffice.org/57714 Tested-by: Jenkins Reviewed-by: Tor Lillqvist <tml@collabora.com>
2018-10-29Related: rhbz#1602589 add comments to coverity annotationsCaolán McNamara1-3/+3
Change-Id: I88c941832a0d682ea4b6028c28edd48cf5df38f7 Reviewed-on: https://gerrit.libreoffice.org/58093 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-10-29lok: export preinit helper, and share code variously.Michael Meeks1-4/+36
Change-Id: I09f2992c4ba45ce91190a9f61dd0fedd0eb8a581 Reviewed-on: https://gerrit.libreoffice.org/57145 Tested-by: Jenkins Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
2018-10-29Fix typo: s/an other/another/gAndrea Gelmini1-1/+1
Change-Id: Ifd83affcb16209f4134c725640fbd95077c8ab0f Reviewed-on: https://gerrit.libreoffice.org/59099 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-10-29Verify that we are actually passed a URL, not a pathnameTor Lillqvist1-0/+9
Sure, the test could be even more strict and actually do a case-insensitive check for an initial "file:" or "vnd.sun.star.pathname:". Change-Id: Ic252aeccdec708138530075d1f38fa348d1e469e
2018-10-16wsd: send copied text to client upon .uno:CopyAshod Nakashian1-1/+0
Change-Id: I39181a0e29e00a0eae389fbab6ee253cf2f23f84
2018-10-10Adapt to change in core: paintTile() now takes a buffer pointer also on iOSTor Lillqvist2-0/+40
Makes the code here a little bit simpler.
2018-04-10Writer: View jumps to cursor position even if it is moved by an other view.Tamás Zolnai1-1/+7
Need to get the viewid which moved our visible cursor, so we can check whether it positioned changed by the owner of the cursor or not. Change-Id: Ie7b1fafc8d8f11fba0c0b0d5f02d755e15284514 Reviewed-on: https://gerrit.libreoffice.org/52571 Reviewed-by: Jan Holesovsky <kendy@collabora.com> Tested-by: Jan Holesovsky <kendy@collabora.com>
2018-04-03calc: drop down button markerMarco Cecchetti1-1/+10
Change-Id: Ic069ad40e6749f43709760e7f4f0d96b39d5a4ce Reviewed-on: https://gerrit.libreoffice.org/51598 Reviewed-by: Marco Cecchetti <mrcekets@gmail.com> Tested-by: Marco Cecchetti <mrcekets@gmail.com>
2018-04-03calc: added support for hidden sheets and validation of cell contentMarco Cecchetti1-0/+3
Change-Id: I5db971b8826de7d5be2f88354925cd107082da77 Reviewed-on: https://gerrit.libreoffice.org/49112 Reviewed-by: Marco Cecchetti <mrcekets@gmail.com> Tested-by: Marco Cecchetti <mrcekets@gmail.com>
2018-03-21update bundled headers - clipboard_changedPranav Kant1-0/+11
Change-Id: Idad3aef64acb01928f6f70010a0e9d7ed297aede
2018-02-27postExtTextInputEvent -> postWindowExtTextInputEventPranav Kant2-8/+8
Change-Id: If5612bffac612ca7f52c8eec242e5ad9984cd669
2018-02-15Updated LibreOfficeKit headersAndras Timar4-12/+19
Change-Id: I6da94250d81d1f62d8f2191660b37b960033f11c
2018-02-08IME supportPranav Kant3-3/+61
Dialogs still need to be adapted to this. Only works for documents as of now. Change-Id: I0fb1114e279a9e563943f3f65dd5a577523e9841
2017-12-19Update the bundled headers.Jan Holesovsky2-3/+17
Change-Id: Ie581a50d5c46be295127a8bf4ac813169682c9ce Reviewed-on: https://gerrit.libreoffice.org/46379 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com> (cherry picked from commit 081401991e12817bdcc2aba6fcd8b029f3b7d53f) Reviewed-on: https://gerrit.libreoffice.org/46783 Reviewed-by: Marco Cecchetti <mrcekets@gmail.com> Tested-by: Marco Cecchetti <mrcekets@gmail.com>
2017-12-16calc: LOK_FEATURE_RANGE_ADDRESS (solving compatibility issue)Marco Cecchetti1-1/+6
In order to make cp-5.3 compatible with online 2.1.x we introduced a new enum which by default disables collecting the new range based header data implementation. This patch (re-)enable this feature on online 3.x Change-Id: Ieab4145df9d132810bd871b1a315fd2171ba0ab5 Reviewed-on: https://gerrit.libreoffice.org/46288 Reviewed-by: Jan Holesovsky <kendy@collabora.com> Tested-by: Jan Holesovsky <kendy@collabora.com> (cherry picked from commit 2a2c04651c3a935a793f7710118b5945f6966ab0) Reviewed-on: https://gerrit.libreoffice.org/46598 Reviewed-by: Marco Cecchetti <mrcekets@gmail.com> Tested-by: Marco Cecchetti <mrcekets@gmail.com>
2017-12-04Update bundled headersPranav Kant4-107/+36
Change-Id: I15c60a5b9f6c61d5ab276fc08058f89bca272f4e
2017-12-01calc: set outline stateMarco Cecchetti2-0/+16
use a specific message from the client for set the visibility state of a group instead of hijacking the update row/column header message Change-Id: I69d66b30db0b4d8a0082cbd2524120491d4f97cb Reviewed-on: https://gerrit.libreoffice.org/45446 Reviewed-by: Marco Cecchetti <mrcekets@gmail.com> Tested-by: Marco Cecchetti <mrcekets@gmail.com>
2017-11-09Update bundled headersPranav Kant3-17/+44
Change-Id: I3480b7465c19203699a68a148dde20dc7d36f47a
2017-10-30Update bundled headersPranav Kant5-129/+307
Change-Id: I292dac1d6c801914960b73e951b6565cc36df1e9
2017-09-26Adapt bundled include to core includeMarco Cecchetti1-1/+1
Change-Id: I3066a58545f85724fe07bf344d37ca6261312280
2017-09-04ruler: added the ruler callback enum to the bundled includeMarco Cecchetti1-1/+19
Change-Id: Ie8100b08897ce7f49b5108cea147bf9bfe6060ed
2017-05-11calc: added an address input fieldMarco Cecchetti1-1/+7
Change-Id: Ic030724e392693847a195b5e53866b40ebad7435 Reviewed-on: https://gerrit.libreoffice.org/37359 Reviewed-by: pranavk <pranavk@collabora.co.uk> Tested-by: pranavk <pranavk@collabora.co.uk>
2017-04-21Calc: changed the way header are updated on row/col insertion/deletionMarco Cecchetti1-1/+9
Now when a row/col is inserted/removed or resized is the core to notify the client that current header is no more valid and a new header should be requested by the client to core. In this way core can notify the header invalidation to all views. Change-Id: Ia3c1872b73cfb3458cd0d35907291a9fc9eebd11 Reviewed-on: https://gerrit.libreoffice.org/36729 Reviewed-by: Jan Holesovsky <kendy@collabora.com> Tested-by: Jan Holesovsky <kendy@collabora.com>
2017-01-30wsd: update LibreOffice Kit headerAshod Nakashian1-0/+31
Change-Id: I792bcd6aa28de0d0916e3676b76ea87994cd685f Reviewed-on: https://gerrit.libreoffice.org/33668 Reviewed-by: Ashod Nakashian <ashnakash@gmail.com> Tested-by: Ashod Nakashian <ashnakash@gmail.com>
2017-01-23wsd: update LO Kit headersAshod Nakashian3-33/+52
Change-Id: Ia6905cf959dc284948e7ad43e9907ac0a2577545 Reviewed-on: https://gerrit.libreoffice.org/33420 Reviewed-by: Ashod Nakashian <ashnakash@gmail.com> Tested-by: Ashod Nakashian <ashnakash@gmail.com>
2016-11-25Apply the pre-branch rename script to re-organize the source.Michael Meeks5-0/+1728