fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / include / svx / flagsdef.hxx
blob0b2ea7a6aa70a08baec1a8fa3a92efa60aa24fd8
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 _SVX_FLAGSDEF_HXX
20 #define _SVX_FLAGSDEF_HXX
22 // defines ---------------------------------------------------------------
24 // copy from border.hxx
25 // Border-Modes for paragraphs, textframes and tables
26 #define SW_BORDER_MODE_PARA 0x01
27 #define SW_BORDER_MODE_TABLE 0x02
28 #define SW_BORDER_MODE_FRAME 0x04
30 // flags for SvxBackgroundTabPage
31 #define SVX_SHOW_SELECTOR 0x01
32 #define SVX_SHOW_PARACTL 0x02
33 #define SVX_ENABLE_TRANSPARENCY 0x04
34 #define SVX_SHOW_TBLCTL 0x08
36 // flags for SvxBorderTabPage
37 #define SVX_HIDESHADOWCTL 0x01
39 // copy from chardlg.hxx
40 #define DISABLE_CASEMAP ((sal_uInt16)0x0001)
41 #define DISABLE_WORDLINE ((sal_uInt16)0x0002)
42 #define DISABLE_BLINK ((sal_uInt16)0x0004)
43 #define DISABLE_UNDERLINE_COLOR ((sal_uInt16)0x0008)
45 #define DISABLE_LANGUAGE ((sal_uInt16)0x0010)
46 #define DISABLE_HIDE_LANGUAGE ((sal_uInt16)0x0020)
48 // flags for SvxCharBasePage's child class
49 #define SVX_PREVIEW_CHARACTER 0x01
50 // flags for SvxCharNamePage
51 #define SVX_RELATIVE_MODE 0x02
52 // flags for SvxCharEffectsPage
53 #define SVX_ENABLE_FLASH 0x04
56 // copy from numfmt.hxx
57 #define SVX_NUMVAL_STANDARD -1234.12345678901234
58 #define SVX_NUMVAL_CURRENCY -1234
59 #define SVX_NUMVAL_PERCENT -0.1295
60 #define SVX_NUMVAL_TIME 36525.5678935185
61 #define SVX_NUMVAL_DATE 36525.5678935185
62 #define SVX_NUMVAL_BOOLEAN 1
64 // copy from page.hxx
65 // enum ------------------------------------------------------------------
67 enum SvxModeType
69 SVX_PAGE_MODE_STANDARD,
70 SVX_PAGE_MODE_CENTER,
71 SVX_PAGE_MODE_PRESENTATION
73 // define ----------------------------------------------------------------
75 // 1/2 cm in TWIPS
76 // Is also used for minimum size of LayFrms of any kind
77 #define MM50 283 //from original svx/inc/paragrph.hxx
79 //--------------from original svx/inc/tabstpge.hxx
80 #define TABTYPE_LEFT 0x0001
81 #define TABTYPE_RIGHT 0x0002
82 #define TABTYPE_CENTER 0x0004
83 #define TABTYPE_DEZIMAL 0x0008
84 #define TABTYPE_ALL 0x000F
86 #define TABFILL_NONE 0x0010
87 #define TABFILL_POINT 0x0020
88 #define TABFILL_DASHLINE 0x0040
89 #define TABFILL_SOLIDLINE 0x0080
90 #define TABFILL_SPECIAL 0x0100
91 #define TABFILL_ALL 0x01F0
93 //-----
95 #endif
97 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */