/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef INCLUDED_SC_INC_IMPORTFILTERDATA_HXX #define INCLUDED_SC_INC_IMPORTFILTERDATA_HXX #include #include #include namespace sc { /** * Stores data imported from the file that need to be processed at the end * of the import process. */ struct ImportPostProcessData : boost::noncopyable { /** * Data stream data needs to be post-processed because it requires * ScDocShell instance which is not available in the filter code. */ struct DataStream { enum InsertPos { InsertTop, InsertBottom }; OUString maURL; ScRange maRange; bool mbRefreshOnEmpty; InsertPos meInsertPos; DataStream(); }; boost::scoped_ptr mpDataStream; }; } #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ starbasic components can be translated via the pre-existing css.resource.StringResourceWithLocation mechanism * en-US res files go away, their strings are now the .hrc keys in the source code * remaining .res files are replaced by .mo files * in .res/.ui-lang-zip files, the old scheme missing translations of strings results in inserting the english original so something can be found, now the standard fallback of using the english original from the source key is used, so partial translations shrink dramatically in size * extract .hrc strings with hrcex which backs onto xgettext -C --add-comments --keyword=NC_:1c,2 --from-code=UTF-8 --no-wrap * extract .ui strings with uiex which backs onto xgettext --add-comments --no-wrap * qtz for gettext translations is generated at runtime as ascii-ified crc32 of content + "|" + msgid * [API CHANGE] remove deprecated binary .res resouce loader related uno apis com::sun::star::resource::OfficeResourceLoader com::sun::star::resource::XResourceBundleLoader com::sun::star::resource::XResourceBundle when translating strings via uno apis com.sun.star.resource.StringResourceWithLocation can continue to be used Change-Id: Ia2594a2672b7301d9c3421fdf31b6cfe7f3f8d0a
* all .ui files go from <interface> to <interface domain="MODULE"> e.g. vcl
* all .src files go away and the english source strings folded into the .hrc as NC_("context", "source string")
* ResMgr is dropped in favour of std::locale imbued by boost::locale::generator pointed at matching
  MODULE .mo files
* UIConfig translations are folded into the module .mo, so e.g. UIConfig_cui
  goes from l10n target to normal one, so the res/lang.zips of UI files go away
* translation via Translation::get(hrc-define-key, imbued-std::locale)
* python can now be translated with its inbuilt gettext support (we keep the name strings.hrc there
  to keep finding the .hrc file uniform) so magic numbers can go away there
* java and starbasic components can be translated via the pre-existing css.resource.StringResourceWithLocation
  mechanism
* en-US res files go away, their strings are now the .hrc keys in the source code
* remaining .res files are replaced by .mo files
* in .res/.ui-lang-zip files, the old scheme missing translations of strings
  results in inserting the english original so something can be found, now the
  standard fallback of using the english original from the source key is used, so
  partial translations shrink dramatically in size
* extract .hrc strings with hrcex which backs onto
   xgettext -C --add-comments --keyword=NC_:1c,2 --from-code=UTF-8 --no-wrap
* extract .ui strings with uiex which backs onto
   xgettext --add-comments --no-wrap
* qtz for gettext translations is generated at runtime as ascii-ified crc32 of
   content + "|" + msgid
* [API CHANGE] remove deprecated binary .res resouce loader related uno apis
      com::sun::star::resource::OfficeResourceLoader
      com::sun::star::resource::XResourceBundleLoader
      com::sun::star::resource::XResourceBundle
    when translating strings via uno apis
      com.sun.star.resource.StringResourceWithLocation
    can continue to be used

Change-Id: Ia2594a2672b7301d9c3421fdf31b6cfe7f3f8d0a
tdf#108427 Direct cursor: Add option to insert only spaces 2017-06-12T09:56:01+00:00 Samuel Mehrbrodt Samuel.Mehrbrodt@cib.de 2017-06-12T07:31:03+00:00 23cf6dbe4d35d0d9beeaa2193247c6f67a869c66 Change-Id: I1136688ec8af44c533f4dd40a9a4b24ea59992ef Reviewed-on: https://gerrit.libreoffice.org/38685 Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Change-Id: I1136688ec8af44c533f4dd40a9a4b24ea59992ef
Reviewed-on: https://gerrit.libreoffice.org/38685
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
related: tdf#90362: remove option from Formatting Aids 2016-11-21T15:29:24+00:00 Mike Kaganski mike.kaganski@collabora.com 2016-11-18T19:41:13+00:00 efbf399e773c6fc04496331b6ff1efde54bd4f9e The option to ignore protection breaks expected functionality (protection, including sections protected with password), and may cause problems mentioned in original bug. This only should be used in specific recovery situations. Moving it from user-visible page to Expert Configuration. (Previously, changing it in Expert Configuration hadn't effect.) Change-Id: Ice2f20200584acd6b476e002eb783820fa823611 Reviewed-on: https://gerrit.libreoffice.org/30968 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
The option to ignore protection breaks expected functionality
(protection, including sections protected with password), and may
cause problems mentioned in original bug. This only should be used
in specific recovery situations.

Moving it from user-visible page to Expert Configuration.
(Previously, changing it in Expert Configuration hadn't effect.)

Change-Id: Ice2f20200584acd6b476e002eb783820fa823611
Reviewed-on: https://gerrit.libreoffice.org/30968
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
tdf#102769 Options: Display formatting mark chars next to their labels 2016-09-30T00:35:00+00:00 Adolfo Jayme Barrientos fitojb@ubuntu.com 2016-09-30T00:35:00+00:00 96e1fcbb41fdfa070f96dc7a6c8c9b9281de1e9d Change-Id: I62b23057649fe08396913b3c17cc36935e46161d
Change-Id: I62b23057649fe08396913b3c17cc36935e46161d
tdf#90362 sw: config option for ignoring protected areas 2015-04-07T11:44:37+00:00 Miklos Vajna vmiklos@collabora.co.uk 2015-04-07T07:17:41+00:00 4a59caddac55002ccecb6fda538255bfe03c6d2d Change-Id: Idfa62aa5bbccf62ee85f863150e13f80b8b5db90 Reviewed-on: https://gerrit.libreoffice.org/15181 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
Change-Id: Idfa62aa5bbccf62ee85f863150e13f80b8b5db90
Reviewed-on: https://gerrit.libreoffice.org/15181
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
Related: fdo#45588 Use of different items for Formatting Marks 2014-08-16T21:02:26+00:00 Julien Nabet serval2412@yahoo.fr 2014-08-16T20:06:46+00:00 46b7a08767e17ff1ef086393c4e111a8ffa19d55 There's still help part to change See https://bugs.freedesktop.org/show_bug.cgi?id=45588#c9 Change-Id: Ieb69ebffc680b0352ed481524a95a78bca50ac83
There's still help part to change
See https://bugs.freedesktop.org/show_bug.cgi?id=45588#c9

Change-Id: Ieb69ebffc680b0352ed481524a95a78bca50ac83
fdo#76203 - use consistent titlecase for UI title labels 2014-06-23T09:01:25+00:00 Joren De Cuyper jorendc@libreoffice.org 2014-06-22T18:57:10+00:00 171efcb7acf367e8db53694489815452d2a9894a Change-Id: Icae67c083ca867c89cff7f9d5d44dbbe4aadcba9 Reviewed-on: https://gerrit.libreoffice.org/9858 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Change-Id: Icae67c083ca867c89cff7f9d5d44dbbe4aadcba9
Reviewed-on: https://gerrit.libreoffice.org/9858
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
convert writer formatting aids page to .ui 2013-05-31T16:55:35+00:00 Faisal M. Al-Otaibi fmalotaibi@kacst.edu.sa 2013-05-31T16:53:57+00:00 201604d7cf3cbe497c246154950fbda7b4d4dd49 Change-Id: Ia5ca3f74ebfea2a927fe8845f1a8237a96e32df7
Change-Id: Ia5ca3f74ebfea2a927fe8845f1a8237a96e32df7