xref: /aoo4110/main/svx/inc/svx/tabarea.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_AREA_HXX
24 #define _SVX_TAB_AREA_HXX
25 
26 // include ---------------------------------------------------------------
27 
28 #include <svtools/valueset.hxx>
29 #ifndef _IMAGEBTN_HXX //autogen
30 #include <vcl/button.hxx>
31 #endif
32 #ifndef _FIXED_HXX //autogen
33 #include <vcl/fixed.hxx>
34 #endif
35 #include <svx/dlgctrl.hxx>
36 #include <svx/xsetit.hxx>
37 #include <svx/xfillit0.hxx>
38 #include <svx/xfillit.hxx>
39 
40 // enum ------------------------------------------------------------------
41 
42 enum ColorModel
43 {
44 	CM_RGB,
45 	CM_CMYK // kann um weitere Modelle, z.B. HSV erweitert werden
46 };
47 
48 enum PageType
49 {
50 	PT_AREA,
51 	PT_GRADIENT,
52 	PT_HATCH,
53 	PT_BITMAP,
54 	PT_COLOR,
55 	PT_SHADOW,
56 	PT_TRANSPARENCE
57 };
58 
59 // define ----------------------------------------------------------------
60 
61 typedef sal_uInt16 ChangeType; // auch in tab_line.hxx (mitpflegen !!!)
62 
63 #define CT_NONE                 ( (ChangeType) 0x0000 )
64 #define CT_MODIFIED             ( (ChangeType) 0x0001 )
65 #define CT_CHANGED              ( (ChangeType) 0x0002 )
66 #define CT_SAVED                ( (ChangeType) 0x0004 )
67 
68 class SdrModel;
69 class SdrView;
70 
71 #endif // _SVX_TAB_AREA_HXX
72 
73