fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / include / svx / svdtypes.hxx
blobff5f36281244d8a85b89e1595b127c89926a1701
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 .
20 #ifndef _SVDTYPES_HXX
21 #define _SVDTYPES_HXX
23 #include <tools/solar.h>
25 ////////////////////////////////////////////////////////////////////////////////////////////////////
26 // @@@@ @@@@@ @@@@@ @@@@ @@@@@ @@@@@@ @@@@@ @@@@ @@@@@@
27 // @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@
28 // @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@
29 // @@@@ @@ @@ @@@@@ @@ @@ @@@@@ @@ @@@@ @@ @@
30 // @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@
31 // @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@
32 // @@@@ @@@@@ @@ @@ @@@@ @@@@@ @@@@ @@@@@ @@@@ @@
33 ////////////////////////////////////////////////////////////////////////////////////////////////////
35 const sal_uInt32 SdrInventor=sal_uInt32('S')*0x00000001+
36 sal_uInt32('V')*0x00000100+
37 sal_uInt32('D')*0x00010000+
38 sal_uInt32('r')*0x01000000;
40 // Kommandos fuer EndCreate()
41 enum SdrCreateCmd {SDRCREATE_NEXTPOINT, // Naechster Polygonpunkt, Kreissegment: Naechste Koordinate
42 SDRCREATE_NEXTOBJECT, // Naechstes Polygon im PolyPolygon
43 SDRCREATE_FORCEEND}; // Ende erzwungen
45 enum SdrDragMode
47 SDRDRAG_MOVE, // Verschieben
48 SDRDRAG_RESIZE, // Groesse aendern
49 SDRDRAG_ROTATE, // Drehen
50 SDRDRAG_MIRROR, // Spiegeln
51 SDRDRAG_SHEAR, // Schraegstellen
52 SDRDRAG_CROOK, // Kreisfoermig verbiegen
53 SDRDRAG_DISTORT, // Freies verzerren (Rect in beliebiges Viereck transformieren)
55 // new modes for interactive transparence and gradient tools
56 SDRDRAG_TRANSPARENCE,
57 SDRDRAG_GRADIENT,
59 // new mode for interactive cropping of graphics
60 SDRDRAG_CROP
64 // fuer SdrObject::ConvertToPoly()
65 enum SdrConvertType {SDRCONVERT_POLY, // reines Polygon erzeugen
66 SDRCONVERT_BEZIER, // alles Beziersegmente
67 SDRCONVERT_MIXED}; // Gemischtes Objekt (optimal)
69 ////////////////////////////////////////////////////////////////////////////////////////////////////
70 // @@ @@@@ @@ @@ @@@@@ @@@@@
71 // @@ @@ @@ @@ @@ @@ @@ @@
72 // @@ @@ @@ @@ @@ @@ @@ @@
73 // @@ @@@@@@ @@@@ @@@@ @@@@@
74 // @@ @@ @@ @@ @@ @@ @@
75 // @@ @@ @@ @@ @@ @@ @@
76 // @@@@@ @@ @@ @@ @@@@@ @@ @@
77 ////////////////////////////////////////////////////////////////////////////////////////////////////
79 ////////////////////////////////////////////////////////////////////////////////////////////////////
80 // Bei der Identifikation eines Layer kann es vorkommen, das dieser nicht
81 // vorhanden ist. SdrLayerAdmin::GetLayerID(const String&) liefert
82 // dann diesen Wert:
83 #define SDRLAYER_NOTFOUND 0xFF
84 // Man kann diesen Wert jodoch ohne Bedenken den Methoden des SdrLayerSet
85 // zuwerfen, bekommt dann jedoch immer sal_False, bzw. tut die Methode nix.
86 ////////////////////////////////////////////////////////////////////////////////////////////////////
87 // Typdeklaration fuer Layer-IDs
88 typedef sal_uInt8 SdrLayerID;
89 ////////////////////////////////////////////////////////////////////////////////////////////////////
91 ////////////////////////////////////////////////////////////////////////////////////////////////////
92 // @@@@@ @@@@ @@@@ @@@@@ @@@@ @@@@@ @@@@@@ @@ @@ @@@@ @@@@@@
93 // @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@
94 // @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@
95 // @@@@@ @@@@@@ @@ @@@ @@@@ @@@@ @@ @@ @@@@@ @@ @@ @@ @@@@ @@
96 // @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@
97 // @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@
98 // @@ @@ @@ @@@@@ @@@@@ @@@@ @@@@@ @@@@ @@@@@ @@ @@@@ @@
99 ////////////////////////////////////////////////////////////////////////////////////////////////////
100 enum SdrObjListKind {SDROBJLIST_UNKNOWN =0x00, // Unbekannt
101 // reine Objektlisten:
102 SDROBJLIST_GROUPOBJ =0x01, // Objektliste eines Gruppenobjekts
103 SDROBJLIST_VIRTOBJECTS=0x02, // Liste ist die Liste der virtuellen Objekte
104 SDROBJLIST_SYMBOLTABLE=0x03, // Liste ist die Symboltabelle
105 // Hier haben zur Not noch 12 weitere Listentypen Platz
106 // Pages:
107 SDROBJLIST_DRAWPAGE =0x10, // Liste ist eine Zeichenseite
108 SDROBJLIST_MASTERPAGE =0x11 // Liste ist eine Masterpage
109 // Hier haben zur Not noch 8 weitere Pagetypen Platz
110 }; // fuer die Surrogate reserviert
112 inline bool SdrIsPageKind(SdrObjListKind eK) { return eK>=SDROBJLIST_DRAWPAGE && eK<=0x1A; }
113 ////////////////////////////////////////////////////////////////////////////////////////////////////
115 ////////////////////////////////////////////////////////////////////////////////////////////////////
116 // @@@@@ @@@@@ @@@@@ @@@@@ @@@@ @@@@@@
117 // @@ @@ @@ @@ @@ @@ @@ @@ @@
118 // @@ @@ @@ @@ @@ @@ @@ @@ @@
119 // @@@@@ @@@@ @@@@@ @@@@ @@@@@@ @@
120 // @@ @@ @@ @@ @@ @@ @@ @@
121 // @@ @@ @@ @@ @@ @@ @@ @@
122 // @@ @@ @@@@@ @@ @@@@@ @@ @@ @@
123 ////////////////////////////////////////////////////////////////////////////////////////////////////
125 enum SdrRepeatFunc {SDRREPFUNC_OBJ_NONE,
126 // Mit Parameter
127 SDRREPFUNC_OBJ_MOVE, // Distanz
128 SDRREPFUNC_OBJ_RESIZE, // Faktor, Referenz(%) bezogen auf MarkRect
129 SDRREPFUNC_OBJ_SETSNAPRECT, // Rectangle
130 SDRREPFUNC_OBJ_SETLOGICRECT, // Rectangle
131 SDRREPFUNC_OBJ_ROTATE, // Drehwinkel, Referenz(%) bezogen auf MarkRect
132 SDRREPFUNC_OBJ_SHEAR, // Winkel,Faktor, Referenz(%) bezogen auf MarkRect
133 SDRREPFUNC_OBJ_CROOKROTATE,
134 SDRREPFUNC_OBJ_CROOKSLANT,
135 SDRREPFUNC_OBJ_CROOKSTRETCH,
136 SDRREPFUNC_OBJ_ALIGN, // Hor/Vert/bBound
137 SDRREPFUNC_OBJ_SETATTRIBUTES,// ItemSet
138 SDRREPFUNC_OBJ_SETSTYLESHEET,// StyleSheet*
139 // Ohne Parameter
140 SDRREPFUNC_OBJ_DELETE,
141 SDRREPFUNC_OBJ_COMBINE_POLYPOLY,
142 SDRREPFUNC_OBJ_COMBINE_ONEPOLY,
143 SDRREPFUNC_OBJ_DISMANTLE_POLYS,
144 SDRREPFUNC_OBJ_DISMANTLE_LINES,
145 SDRREPFUNC_OBJ_CONVERTTOPOLY,
146 SDRREPFUNC_OBJ_CONVERTTOPATH,
147 SDRREPFUNC_OBJ_GROUP,
148 SDRREPFUNC_OBJ_UNGROUP,
149 SDRREPFUNC_OBJ_PUTTOTOP,
150 SDRREPFUNC_OBJ_PUTTOBTM,
151 SDRREPFUNC_OBJ_MOVTOTOP,
152 SDRREPFUNC_OBJ_MOVTOBTM,
153 SDRREPFUNC_OBJ_REVORDER,
154 SDRREPFUNC_OBJ_IMPORTMTF,
155 SDRREPFUNC_PAGE_DELETE,
156 SDRREPFUNC_LAST};
158 ////////////////////////////////////////////////////////////////////////////////////////////////////
160 #endif //_SVDTYPES_HXX
162 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */