summaryrefslogtreecommitdiff
path: root/offapi
AgeCommit message (Collapse)AuthorFilesLines
2012-08-07drop bogus eof linesThomas Arnhold1-2/+0
Change-Id: Idda2852c3e96ce15fde75d5a95369ec50a012410
2012-08-02fdo#53006 Force reinstall of all bundled extensions on upgradeStephan Bergmann2-1/+15
...as the per-user data about bundled extensions can otherwise contain stale $BUNDLED_EXTENSIONS_PREREG references if the old installation used share/prereg/bundled/, the new one does not (cf. the fixing for fdo#51252 "LO cannot start (reports runtime error with Visual C++ Runtime Library)"), and a bundled extension did not change version. It is safe to tie this behavior to the existing "force" parameter of dp_misc::syncRepositories, as the only place that calls it with force=true is the call to Desktop::SynchronizeExtensionRepositories(newInst) in Desktop::Main, where newInst=true is the relevant condition for this behavior, too. As stated in XExtensionManager.idl, "this [...] can go again once no exisiting UserInstallation's user/extensions/bundled/ data can contain any $BUNDLED_EXTENSIONS_PREREG references any longer." Change-Id: I630dec8f2d20282ee47c65ac61ed2c9b062448e1
2012-07-30udkapi, offapi: do not use #include "foo":Michael Stahl17-38/+38
Evidently on Windows, the newfangled ucpp handles #include "foo" differently from #include <foo> and treats it as a relative path, while the angle brackets always result in absolute paths. Since relative paths result in infinite rebuilds if make is invoked in a different directory, don't use #include "foo" in IDL files. Change-Id: Iedcda3a4be5542389a0be086f14541cda8dc5323
2012-07-27fdo#35973: XConfigurationController:Michael Stahl1-6/+0
Remove that horrible IsDisposing method, much easier to just put the call to SaveResourceState into the disposing() handler that is called anyway (well, should be called now, previously the ResourceManager wasn't registered...)) Change-Id: Ia81f6bf47602b195c0326f2151393542f5f8b9ec
2012-07-26fd0#35973 - [EasyHack] Remember the state of the sidebar pane in ImpressRob Snelders1-0/+6
Change-Id: Ie287bc1c545bd8986ee3509181c878bdcd0d1942
2012-07-26offapi: update types.rdb to what is shipping in LO 3.6.0.3Michael Stahl1-0/+0
Also fixes annying warnings about removed types: WARNING: could not open key "/UCR/com/sun/star/oooimprovement/XCore" WARNING: could not open key "/UCR/com/sun/star/oooimprovement/XCoreController" WARNING: could not open key "/UCR/com/sun/star/oooimprovement/Core" WARNING: could not open key "/UCR/com/sun/star/oooimprovement/CoreController" Change-Id: I1c09f1de42ed558bc22cc8a90d2c0fee2ca3a1da
2012-07-25Make comphelper/configuration.hxx work for localized propertiesStephan Bergmann2-8/+22
See aebf5bf22304c73e121b16dc0b51f909c5f34c28 "fdo#52232 ConfigurationSet wrapper unusable for localized properties" for a discussion of the problems with the original design. 1 Redesigned configmgr's localized property access to understand ['*<locale>'] paths that select the best existing value match for the requested <locale>. Adapted ConfigurationWrapper::getLocalizedPropertyValue accordingly. 2 Redesigned ConfigurationChanges to fix the locale at instantiation time. That takes care of ConfigurationWrapper::setLocalizedPropertyValue, ConfigurationWrapper::getGroupReadWrite, and ConfigurationWrapper::getSetReadWrite. (This required an additional constructor parameter for the ReadWriteAccess service, to specify a locale at instantiation time.) 3 Redesigned ReadOnlyAccess to be a service that fixes the locale at instantiation time. That allows to take care of ConfigurationWrapper::getGroupReadOnly and ConfigurationWrapper::getSetReadOnly. Change-Id: I2ae7342b278b6f4222a0189a1deb2a53e204059f
2012-07-20SwPostItField: add aName memberMiklos Vajna1-0/+5
To handle roundtrip of office:name in ODF. Change-Id: I35dab189f7b9b8191ca92c647332e2271d4806f9
2012-07-16SwPostItField: added aInitials memberMiklos Vajna1-0/+5
Change-Id: I9cc8dcd2c8e1d9074b58195d37289a9b4cfe43cf
2012-07-14simplify include guardsThomas Arnhold25-25/+25
Change-Id: Id4210229b20a1d54b680ff1a2ccbcdd3684ecf5f
2012-07-09merge HeaderIsSharedFirst and FooterIsSharedFirst to FirstIsSharedMiklos Vajna1-8/+2
sw document model, xmloff and offapi supported these separately, but sw layout did not. It turns out it's not needed for Word interop, either, so better to just merge these, instead of implementing them independently without a good use-case. Change-Id: I5c3b334baa09cabec123745c7af3d65d830754fc
2012-07-09Merge branch 'feature/pdf-signing'Gökçen Eraslan1-1/+3
2012-07-07Add new chooseCertificate method to XDocumentDigitalSignatures UNO interface.Gökçen Eraslan1-1/+3
This method shows the certificate choosing dialog previously used in ODF signing and returns the selected certificate. For PDF signing support, we need to reuse existing CertifacateChooser class of xmlsecurity module. So the UNO api of ::com::sun::star::security::XDocumentDigitalSignatures is extended. Change-Id: I09f7d0ee180b16b588798820206780df359d133e
2012-07-02sw: initial HeaderTextFirst / FooterTextFirstMiklos Vajna1-0/+20
The header/footer text for the first page can now be written (document model ready), but layout doesn't take it into account yet. Also, SwDoc::ChgPageDesc() has some copy&paste, will fix that soon. Change-Id: Ic28659f028e7db4aa1b6eefc76a4e672127e2c98
2012-07-02BorderLine2.idl: add missing since tagMichael Stahl1-0/+4
Change-Id: I0c3763289d6ad55acbeb93940a82c88650e33a28
2012-06-29sw: initial HeaderIsSharedFirst / FooterIsSharedFirstMiklos Vajna1-0/+12
It's just like HeaderIsShared / FooterIsShared, enabled by default when header / footer is on. It does nothing yet, but it's read-writable. Motivation: https://wiki.oasis-open.org/office/HeaderFooterFirst Change-Id: I1ccfd0aedd1ac71e9f39b7fd43754264afafc1ef
2012-06-18Pass also scale and offset to createScreenCompatibleDeviceUsingBuffer()Tor Lillqvist1-1/+5
Pass on to VirtualDevice where used to set the MapMode of the device appropriately. Adapt DocumentLoader, use to scale the page rendering to exactly fit the virtual device. Change-Id: I4b0bc67e12114d3d9d493ff1aca2ef5d2cc78912
2012-06-12re-base on ALv2 code.Michael Meeks2521-61907/+39240
2012-06-11Add css.awt.XToolkit2Tor Lillqvist2-0/+47
Work in progress for Android, and possibly iOS, too. Change-Id: If65765cd781bf1bd28ce96af01adedc07d0eebae
2012-05-14Renamed FILE to DOCINFO_TITLE, which is more appropriate for this field.Kohei Yoshida1-6/+7
Change-Id: I1267629da8b66fc21c4ae2e78634c2093274aa61
2012-05-11Removing EXTENDED_DATE. There is really no such thing.Kohei Yoshida1-2/+0
This can be safely substituted by the normal DATE. Change-Id: I I6b4ccfa342a8d7b638b013cdce64a0b7ff477ec0
2012-05-11Better names for presentation specific field item types.Kohei Yoshida1-3/+4
Change-Id: Ib9bea60e05f1dcdd9501a3320f3b1185d5890d17
2012-05-11Added UNSPECIFIED to textfield::Type.Kohei Yoshida1-4/+7
Change-Id: I28fbab54ba71f01b989a47ab357583113e85fccb
2012-05-08New UNO API to deal with text range selections.Kohei Yoshida3-0/+94
Change-Id: I Ie868d9d2d8d56459f2013d91f836736cd3fd4d72
2012-05-05Added new constant group to enumerate text field types.Kohei Yoshida2-0/+70
Change-Id: Iee2cd5994ce5145e3449dd5b62309ae3cee6603d
2012-05-02offapi: missing @sinceMiklos Vajna1-0/+2
2012-05-02finish handling of w:pStyle in numbering (bnc#751028)Luboš Luňák1-0/+5
Now each such numbering should be properly assigned to the given paragraph style. Change-Id: I97a796dfb3f4a46f0fee0663852b3a40c3eaa922
2012-04-29make gbuild the default assumption of build.plBjoern Michaelsen1-1/+0
this removes dmake completely out of the build for migrated modules build.pl now assumes modules to be gbuild, unless there is a prj/dmake file Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b
2012-04-26Do not accidentally instantiate other exts when removing exts at startupStephan Bergmann1-0/+5
2012-04-26fdo#48870: Remove cookie handling code.Gábor Stefanik5-0/+9
2012-04-20idl fix symbol referencesTomas Hlavaty4-5/+5
2012-04-20fix idl #include guardsTomas Hlavaty8-11/+11
2012-04-20idl #ifndef fixTomas Hlavaty1-2/+2
2012-04-20idl type reference fixedTomas Hlavaty1-1/+1
2012-04-12offapi: remove obsolete XInplaceLayout (2nd try)Thomas Arnhold3-76/+0
This is related to 10e580c57b907420e8c6d816325445a40a720e4a
2012-04-08gbuild: "use" vs. "add"David Tardon2-3/+3
2012-04-06merge feature/gbuild_componentsDavid Tardon7-1011/+228
2012-04-02this methods don't throw, adapt documentationMarkus Mohrhard1-6/+0
2012-04-02Improved comment (after recent clean up)Stephan Bergmann1-1/+4
2012-04-02fdo#46808, Adapt UNO services to new styleNoel Grandin32-359/+202
Update selected IDL files to use new syntax. Update the makefiles to generate the necessary new include files. Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
2012-04-01merge origin/masterDavid Tardon19-70/+379
2012-03-28Changed some wording.Kohei Yoshida1-4/+4
2012-03-28document queryContentCells limitationLaurent Godard1-1/+6
add also a missing </p> in previous paragraph
2012-03-28add interface XDumper for qa/automated testingMarkus Mohrhard3-0/+71
2012-03-27fdo#46808, Adapt UNO serviecs to new style, Part 1Noel Grandin1-0/+0
Convert the IDL files in the udkapi module, and update the types.rdb database. Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
2012-03-21Clarify exampleStephan Bergmann1-1/+2
2012-03-18move addins out of offapi againDavid Tardon7-932/+0
2012-03-16Some include and comment clean upStephan Bergmann1-2/+1
2012-03-16Introduced SystemShellExecuteFlags::URIS_ONLYStephan Bergmann2-2/+10
2012-03-13Make Converter service new-style, for easier useStephan Bergmann1-0/+0