xref: /aoo4110/main/vcl/inc/vcl/symbol.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 
24 #ifndef _SV_SYMBOL_HXX
25 #define _SV_SYMBOL_HXX
26 
27 #include <vcl/sv.h>
28 
29 // ----------------
30 // - Symbol-Types -
31 // ----------------
32 
33 // By changes you must also change: rsc/vclrsc.hxx
34 typedef sal_uInt16 SymbolType;
35 #define SYMBOL_DONTKNOW 		((SymbolType)0)
36 #define SYMBOL_IMAGE			((SymbolType)1)
37 #define SYMBOL_ARROW_UP 		((SymbolType)2)
38 #define SYMBOL_ARROW_DOWN		((SymbolType)3)
39 #define SYMBOL_ARROW_LEFT		((SymbolType)4)
40 #define SYMBOL_ARROW_RIGHT		((SymbolType)5)
41 #define SYMBOL_SPIN_UP			((SymbolType)6)
42 #define SYMBOL_SPIN_DOWN		((SymbolType)7)
43 #define SYMBOL_SPIN_LEFT		((SymbolType)8)
44 #define SYMBOL_SPIN_RIGHT		((SymbolType)9)
45 #define SYMBOL_FIRST			((SymbolType)10)
46 #define SYMBOL_LAST 			((SymbolType)11)
47 #define SYMBOL_PREV 			((SymbolType)12)
48 #define SYMBOL_NEXT 			((SymbolType)13)
49 #define SYMBOL_PAGEUP			((SymbolType)14)
50 #define SYMBOL_PAGEDOWN 		((SymbolType)15)
51 #define SYMBOL_PLAY 			((SymbolType)16)
52 #define SYMBOL_REVERSEPLAY		((SymbolType)17)
53 #define SYMBOL_RECORD			((SymbolType)18)
54 #define SYMBOL_STOP 			((SymbolType)19)
55 #define SYMBOL_PAUSE			((SymbolType)20)
56 #define SYMBOL_WINDSTART		((SymbolType)21)
57 #define SYMBOL_WINDEND			((SymbolType)22)
58 #define SYMBOL_WINDBACKWARD 	((SymbolType)23)
59 #define SYMBOL_WINDFORWARD		((SymbolType)24)
60 #define SYMBOL_CLOSE			((SymbolType)25)
61 #define SYMBOL_ROLLUP			((SymbolType)26)
62 #define SYMBOL_ROLLDOWN 		((SymbolType)27)
63 #define SYMBOL_CHECKMARK		((SymbolType)28)
64 #define SYMBOL_RADIOCHECKMARK	((SymbolType)29)
65 #define SYMBOL_SPIN_UPDOWN		((SymbolType)30)
66 #define SYMBOL_FLOAT			((SymbolType)31)
67 #define SYMBOL_DOCK 			((SymbolType)32)
68 #define SYMBOL_HIDE 			((SymbolType)33)
69 #define SYMBOL_HELP 			((SymbolType)34)
70 #define SYMBOL_MENU 			SYMBOL_SPIN_DOWN
71 
72 #define SYMBOL_NOSYMBOL 		(SYMBOL_DONTKNOW)
73 
74 #endif // _SV_SYMBOL_HXX
75