/* -*- 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/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef INCLUDED_EDITENG_FRMDIR_HXX #define INCLUDED_EDITENG_FRMDIR_HXX #include /** * Defines possible text directions in frames. * A scoped enum over the constants in css::text:WritingMode2. */ enum class SvxFrameDirection { /** used as an error return value in SW */ Unknown = -1, /** Horizontal, from left to right, from top to bottom (typical for western languages). */ Horizontal_LR_TB = css::text::WritingMode2::LR_TB, /** Horizontal, from right to left, from top to bottom (typical for arabic/hebrew languages). */ Horizontal_RL_TB = css::text::WritingMode2::RL_TB, /** Vertical, from top to bottom, from right to left (typical for asian languages). */ Vertical_RL_TB = css::text::WritingMode2::TB_RL, /** Vertical, from top to bottom, from left to right (typical for mongol language). */ Vertical_LR_TB = css::text::WritingMode2::TB_LR, /** Use the value from the environment, can only be used in frames. */ Environment = css::text::WritingMode2::CONTEXT, /** Vertical, from bottom to top, from left to right. */ Vertical_LR_BT = css::text::WritingMode2::BT_LR, }; const char* getFrmDirResId(size_t nIndex); #endif // INCLUDED_EDITENG_FRMDIR_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/include/i18nutil
AgeCommit message (Expand)Author
2021-11-02Add comments to two arrays mentioning that they must match the enum PaperTor Lillqvist
2021-10-14[API CHANGE] Fix all bad UNOIDL identifiers across offapiStephan Bergmann
2021-09-17improve commentNoel Grandin
2021-09-16speedup CharacterClassificationImpl::toUpperNoel Grandin
2021-09-01clang-tidy:readability-redundant-member-initNoel Grandin
2021-07-13Add PowerPoint compatible screen size for ImpressJun NOGATA
2021-01-22tdf#135590 rotated paper sizes reported as portrait size they are notCaolán McNamara
2020-11-21tdf#123936 Formatting files in module include with clang-formatPhilipp Hofer
2020-11-17loplugin:stringviewparam check methods tooNoel
2020-11-04negative returnsCaolán McNamara
2020-10-22long->tools::Long in hwpfilter..ooxNoel
2020-05-03use more compact namespace syntax in /includeNoel Grandin
2020-03-06mark some more classes hidden in --enable-mergelibs modeNoel Grandin
2019-11-19make some classes module-privateNoel Grandin
2019-07-23Fix typoAndrea Gelmini
2019-06-12Move isIVSSelector, isCJKIVSCharacter to i18nutil/unicode.hxxStephan Bergmann
2018-12-20Fix typo in codeAndrea Gelmini
2018-11-29Adds 16k papers to print files in vcl and paper files in i18nutilDaniel Silva
2018-11-07tdf#42949 Fix IWYU warnings in include/i18nutil/*Gabor Kelemen
2018-10-31loplugin:useuniqueptr in oneToOneMappingWithFlagNoel Grandin
2018-10-18loplugin:staticvar in hwpfilter..salNoel Grandin
2018-06-27fix thread-unsafe return of a reference to a staticLuboš Luňák
2018-03-07Clarify that IGNORE_DIACRITICS_CTL is not only CTL, despite its nameEike Rathke
2018-01-24loplugin:unused-returns in drawinglayer..svxNoel Grandin
2018-01-15More loplugin:cstylecast: i18nutilStephan Bergmann
2018-01-12More loplugin:cstylecast: i18nutilStephan Bergmann
2017-12-13Make loplugin:salcall look into macros tooStephan Bergmann
2017-12-07loplugin:salcall handle static methodsNoel Grandin
2017-11-11Remove duplication of Paper enum as #definesTor Lillqvist
2017-11-01loplugin:finalclasses in h*,i*,j*Noel Grandin
2017-10-23loplugin:includeform: i18nutilStephan Bergmann
2017-10-04move stuff in i18npool/i18nutil in own namespaceNoel Grandin
2017-07-17loplugin:constparams in i18nutil,sotNoel Grandin
2017-03-31use actual UNO enums in i18nutilNoel Grandin
2017-03-01Blind fix for 64-bit Windows buildsNoel Grandin
2017-03-01typesafe wrappers for css::i18nutil::TransliterationModulesNoel Grandin
2017-02-16fix commentsNoel Grandin
2017-01-26Remove dynamic exception specificationsStephan Bergmann
2017-01-19New loplugin:dynexcspec: Add @throws documentation, i18nutilStephan Bergmann
2017-01-09New loplugin:externvar: i18npoolStephan Bergmann
2016-09-20Related cid#1371289: Improve code to not depend on missing move assignmentStephan Bergmann
2016-09-20Remove redundant default ctor definitionStephan Bergmann
2016-09-13loplugin:override: No more need for the "MSVC dtor override" workaroundStephan Bergmann
2016-05-11convert MappingType to scoped enumNoel Grandin