xref: /AOO41X/main/vcl/inc/vcl/symbol.hxx (revision 1ecadb572e7010ff3b3382ad9bf179dbc6efadbb)
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 
28 #ifndef _SV_SYMBOL_HXX
29 #define _SV_SYMBOL_HXX
30 
31 #include <vcl/sv.h>
32 
33 // ----------------
34 // - Symbol-Types -
35 // ----------------
36 
37 // By changes you must also change: rsc/vclrsc.hxx
38 typedef sal_uInt16 SymbolType;
39 #define SYMBOL_DONTKNOW 		((SymbolType)0)
40 #define SYMBOL_IMAGE			((SymbolType)1)
41 #define SYMBOL_ARROW_UP 		((SymbolType)2)
42 #define SYMBOL_ARROW_DOWN		((SymbolType)3)
43 #define SYMBOL_ARROW_LEFT		((SymbolType)4)
44 #define SYMBOL_ARROW_RIGHT		((SymbolType)5)
45 #define SYMBOL_SPIN_UP			((SymbolType)6)
46 #define SYMBOL_SPIN_DOWN		((SymbolType)7)
47 #define SYMBOL_SPIN_LEFT		((SymbolType)8)
48 #define SYMBOL_SPIN_RIGHT		((SymbolType)9)
49 #define SYMBOL_FIRST			((SymbolType)10)
50 #define SYMBOL_LAST 			((SymbolType)11)
51 #define SYMBOL_PREV 			((SymbolType)12)
52 #define SYMBOL_NEXT 			((SymbolType)13)
53 #define SYMBOL_PAGEUP			((SymbolType)14)
54 #define SYMBOL_PAGEDOWN 		((SymbolType)15)
55 #define SYMBOL_PLAY 			((SymbolType)16)
56 #define SYMBOL_REVERSEPLAY		((SymbolType)17)
57 #define SYMBOL_RECORD			((SymbolType)18)
58 #define SYMBOL_STOP 			((SymbolType)19)
59 #define SYMBOL_PAUSE			((SymbolType)20)
60 #define SYMBOL_WINDSTART		((SymbolType)21)
61 #define SYMBOL_WINDEND			((SymbolType)22)
62 #define SYMBOL_WINDBACKWARD 	((SymbolType)23)
63 #define SYMBOL_WINDFORWARD		((SymbolType)24)
64 #define SYMBOL_CLOSE			((SymbolType)25)
65 #define SYMBOL_ROLLUP			((SymbolType)26)
66 #define SYMBOL_ROLLDOWN 		((SymbolType)27)
67 #define SYMBOL_CHECKMARK		((SymbolType)28)
68 #define SYMBOL_RADIOCHECKMARK	((SymbolType)29)
69 #define SYMBOL_SPIN_UPDOWN		((SymbolType)30)
70 #define SYMBOL_FLOAT			((SymbolType)31)
71 #define SYMBOL_DOCK 			((SymbolType)32)
72 #define SYMBOL_HIDE 			((SymbolType)33)
73 #define SYMBOL_HELP 			((SymbolType)34)
74 #define SYMBOL_MENU 			SYMBOL_SPIN_DOWN
75 
76 #define SYMBOL_NOSYMBOL 		(SYMBOL_DONTKNOW)
77 
78 #endif // _SV_SYMBOL_HXX
79