Branch libreoffice-5-0-4
[LibreOffice.git] / include / svx / swframeposstrings.hxx
blob22ac89e1231f1e78994d8552824764873846e979
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>
26 contains strings needed for positioning dialogs
27 of frames and drawing in Writer
29 class SvxSwFramePosString_Impl;
30 class SVX_DLLPUBLIC SvxSwFramePosString
32 SvxSwFramePosString_Impl* pImpl;
33 public:
34 SvxSwFramePosString();
35 ~SvxSwFramePosString();
36 enum StringId
38 LEFT ,
39 RIGHT ,
40 FROMLEFT ,
41 MIR_LEFT ,
42 MIR_RIGHT ,
43 MIR_FROMLEFT ,
44 FRAME ,
45 PRTAREA ,
46 REL_PG_LEFT ,
47 REL_PG_RIGHT ,
48 REL_FRM_LEFT ,
49 REL_FRM_RIGHT ,
50 MIR_REL_PG_LEFT ,
51 MIR_REL_PG_RIGHT ,
52 MIR_REL_FRM_LEFT ,
53 MIR_REL_FRM_RIGHT ,
54 REL_PG_FRAME ,
55 REL_PG_PRTAREA ,
56 REL_BASE ,
57 REL_CHAR ,
58 REL_ROW ,
59 REL_BORDER ,
60 REL_PRTAREA ,
61 FLY_REL_PG_LEFT ,
62 FLY_REL_PG_RIGHT ,
63 FLY_REL_PG_FRAME ,
64 FLY_REL_PG_PRTAREA ,
65 FLY_MIR_REL_PG_LEFT ,
66 FLY_MIR_REL_PG_RIGHT ,
67 TOP,
68 BOTTOM,
69 CENTER_HORI,
70 CENTER_VERT,
71 FROMTOP,
72 FROMBOTTOM,
73 BELOW,
74 FROMRIGHT,
75 REL_PG_TOP,
76 REL_PG_BOTTOM,
77 REL_FRM_TOP,
78 REL_FRM_BOTTOM,
79 REL_LINE,
81 STR_MAX
83 const OUString& GetString(StringId eId);
85 #endif
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */