Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / offapi / com / sun / star / text / WritingMode2.idl
blob98f58b4adfd4fc07df2edb3ebde70f595f170d5c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef __com_sun_star_text_WritingMode2_idl__
20 #define __com_sun_star_text_WritingMode2_idl__
24 module com { module sun { module star { module text {
27 /** this set of constants describes different writing directions
29 <p>In addition to numerous explicit writing directions, it allows allows to specify to take the writing
30 direction from the object's context.</p>
32 published constants WritingMode2
35 /** text within lines is written left-to-right. Lines and blocks are placed
36 top-to-bottom.
37 <p>
38 Typically, this is the writing mode for normal "alphabetic" text.
40 const short LR_TB = 0;
43 /** text within a line are written right-to-left. Lines and blocks are
44 placed top-to-bottom.
45 <p>
46 Typically, this writing mode is used in Arabic and Hebrew text.
48 const short RL_TB = 1;
51 /** text within a line is written top-to-bottom. Lines and blocks are
52 placed right-to-left.
53 <p>
54 Typically, this writing mode is used in Chinese and Japanese text.
56 const short TB_RL = 2;
59 /** text within a line is written top-to-bottom. Lines and blocks are
60 placed left-to-right.
61 <p>
62 Typically, this writing mode is used in Mongolian text.
64 const short TB_LR = 3;
67 /** obtain writing mode from the current page.
69 <p>May not be used in page styles.</p>
71 @deprecated
72 Use CONTEXT instead.
74 const short PAGE = 4;
76 /** obtain actual writing mode from the context of the object.
78 const short CONTEXT = 4;
82 }; }; }; };
84 #endif
86 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */