/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef _SWCONT_HXX #define _SWCONT_HXX #include class SwContentType; // synchronize order and number with ResIds!! #define CONTENT_TYPE_OUTLINE 0 #define CONTENT_TYPE_TABLE 1 #define CONTENT_TYPE_FRAME 2 #define CONTENT_TYPE_GRAPHIC 3 #define CONTENT_TYPE_OLE 4 #define CONTENT_TYPE_BOOKMARK 5 #define CONTENT_TYPE_REGION 6 #define CONTENT_TYPE_URLFIELD 7 #define CONTENT_TYPE_REFERENCE 8 #define CONTENT_TYPE_INDEX 9 #define CONTENT_TYPE_POSTIT 10 #define CONTENT_TYPE_DRAWOBJECT 11 #define CONTENT_TYPE_MAX CONTENT_TYPE_DRAWOBJECT +1 // types for global document #define GLOBAL_CONTENT_REGION 100 #define GLOBAL_CONTENT_INDEX 101 #define GLOBAL_CONTENT_TEXT 102 #define GLOBAL_CONTENT_MAX 3 // strings for context menus #define CONTEXT_COUNT 12 #define GLOBAL_CONTEXT_COUNT 14 // modes for Drag 'n Drop #define REGION_MODE_NONE 0 #define REGION_MODE_LINK 1 #define REGION_MODE_EMBEDDED 2 //---------------------------------------------------------------------------- //---------------------------------------------------------------------------- //mini rtti class SwTypeNumber { sal_uInt8 nTypeId; public: SwTypeNumber(sal_uInt8 nId) :nTypeId(nId){} virtual ~SwTypeNumber(); virtual sal_uInt8 GetTypeId(); }; //---------------------------------------------------------------------------- class SwContent : public SwTypeNumber { const SwContentType* pParent; String sContentName; long nYPosition; sal_Bool bInvisible; public: SwContent(const SwContentType* pCnt, const String& rName, long nYPos ); virtual sal_Bool IsProtect() const; const SwContentType* GetParent() const {return pParent;} const String& GetName() const {return sContentName;} int operator==(const SwContent& /*rCont*/) const { // they're never equal, otherwise they'd fall out of the array return sal_False; } int operator<(const SwContent& rCont) const { // at first sort by position and then by name return nYPosition != rCont.nYPosition ? nYPosition < rCont.nYPosition : sContentName < rCont.sContentName; } long GetYPos() const {return nYPosition;} sal_Bool IsInvisible() const {return bInvisible;} void SetInvisible(){ bInvisible = sal_True;} }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ ue='distro/collabora/libreoffice-7-6+backports'>distro/collabora/libreoffice-7-6+backports LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-07-21migrate to boost::gettextCaolán McNamara
* 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
2017-04-21gbuild: Remove MSVC 2013 legacy codeDavid Ostrovsky
Uwinapi is discontinued. Change-Id: I063b4d0d8fab2d60de168e960a63b8181158ac01 Reviewed-on: https://gerrit.libreoffice.org/23198 Reviewed-by: David Ostrovsky <david@ostrovsky.org> Tested-by: David Ostrovsky <david@ostrovsky.org>
2016-12-05drop unneeded dep on boost_headersDavid Tardon
Change-Id: I351badba30556ec06ebfa8a360cc58e89f206372
2016-12-05convert test helper library to dynamicDavid Tardon
Change-Id: I5992cc7ac9ffb3974fa49bb7feec4b0212032386
2016-12-05rename to better match the purposeDavid Tardon
Change-Id: I7cd8e551c284045fbe782cc9756e283d466fd1bc