bump product version to 6.3.0.0.beta1
[LibreOffice.git] / include / svx / swframeposstrings.hxx
blob0a52979a02191d0dd67c5de446234866c6db37a5
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 INCLUDED_SVX_SWFRAMEPOSSTRINGS_HXX
20 #define INCLUDED_SVX_SWFRAMEPOSSTRINGS_HXX
22 #include <rtl/ustring.hxx>
23 #include <svx/svxdllapi.h>
24 #include <memory>
27 contains strings needed for positioning dialogs
28 of frames and drawing in Writer
30 class SVX_DLLPUBLIC SvxSwFramePosString
32 public:
33 enum StringId
35 LEFT ,
36 RIGHT ,
37 FROMLEFT ,
38 MIR_LEFT ,
39 MIR_RIGHT ,
40 MIR_FROMLEFT ,
41 FRAME ,
42 PRTAREA ,
43 REL_PG_LEFT ,
44 REL_PG_RIGHT ,
45 REL_FRM_LEFT ,
46 REL_FRM_RIGHT ,
47 MIR_REL_PG_LEFT ,
48 MIR_REL_PG_RIGHT ,
49 MIR_REL_FRM_LEFT ,
50 MIR_REL_FRM_RIGHT ,
51 REL_PG_FRAME ,
52 REL_PG_PRTAREA ,
53 REL_BASE ,
54 REL_CHAR ,
55 REL_ROW ,
56 REL_BORDER ,
57 REL_PRTAREA ,
58 FLY_REL_PG_LEFT ,
59 FLY_REL_PG_RIGHT ,
60 FLY_REL_PG_FRAME ,
61 FLY_REL_PG_PRTAREA ,
62 FLY_MIR_REL_PG_LEFT ,
63 FLY_MIR_REL_PG_RIGHT ,
64 TOP,
65 BOTTOM,
66 CENTER_HORI,
67 CENTER_VERT,
68 FROMTOP,
69 FROMBOTTOM,
70 BELOW,
71 FROMRIGHT,
72 REL_PG_TOP,
73 REL_PG_BOTTOM,
74 REL_FRM_TOP,
75 REL_FRM_BOTTOM,
76 REL_LINE,
78 STR_MAX
80 static OUString GetString(StringId eId);
82 #endif
84 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */