xref: /aoo4110/main/svx/inc/svx/tabline.hxx (revision b1cdbd2c)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 #ifndef _SVX_TAB_LINE_HXX
24 #define _SVX_TAB_LINE_HXX
25 
26 // include ---------------------------------------------------------------
27 
28 #ifndef _IMAGEBTN_HXX //autogen
29 #include <vcl/button.hxx>
30 #endif
31 #ifndef _GROUP_HXX //autogen
32 #include <vcl/group.hxx>
33 #endif
34 #include <svtools/stdctrl.hxx>
35 #include <svx/svdpage.hxx>
36 #include <svx/xlineit0.hxx>
37 #include <svx/xlineit.hxx>
38 #include <svx/xsetit.hxx>
39 #include <svx/dlgctrl.hxx>
40 #include <vcl/menubtn.hxx>
41 class SvxBrushItem;
42 // define ----------------------------------------------------------------
43 
44 typedef sal_uInt16 ChangeType; // auch in tab_area.hxx (mitpflegen !!!)
45 
46 #define CT_NONE                 ( (ChangeType) 0x0000 )
47 #define CT_MODIFIED             ( (ChangeType) 0x0001 )
48 #define CT_CHANGED              ( (ChangeType) 0x0002 )
49 #define CT_SAVED                ( (ChangeType) 0x0004 )
50 
51 class SdrModel;
52 class SdrObject;
53 
54 //defines fuer die Symbolauswahl auf der Page
55 //Positive Werte (0,...n) gibt den Indes in pSymbollist an, sonst :
56 #define SVX_SYMBOLTYPE_NONE	      (-3)  //Symbol unsichtbar
57 #define SVX_SYMBOLTYPE_AUTO	      (-2)  //Symbol automatisch erzeugen
58 #define SVX_SYMBOLTYPE_BRUSHITEM  (-1)  //Symbol ist als Graphic im Item enthalten:
59 #define SVX_SYMBOLTYPE_UNKNOWN  (-100) //unbekannt/nicht initialisiert
60 
61 #endif // _SVX_TAB_LINE_HXX
62 
63