fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / include / tools / rcid.h
blobd257639a99f8e7a98973b86ce823a3b244b3e09f
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 _TOOLS_RCID_H
21 #define _TOOLS_RCID_H
23 #include <tools/resid.hxx>
25 // Definition of the version number
26 #define RSCVERSION_ID 200U
27 // Definition of an invalid identifier
28 #define RC_NO_ID (sal_uInt32(0xFFFFFFFF))
30 // Resource types
31 // Minimum is 0x100 due to MS-Windows resource types
32 // (RSC_NOTYPE=0x100) is defined in resid.hxx
33 #define RSC_BYNAME (RSC_NOTYPE + 0x01)
34 #define RSC_VERSIONCONTROL (RSC_NOTYPE + 0x02) // Version control
36 #define RSC_RESOURCE (RSC_NOTYPE + 0x10)
37 #define RSC_STRING (RSC_NOTYPE + 0x11)
38 #define RSC_BITMAP (RSC_NOTYPE + 0x13)
39 #define RSC_ACCEL (RSC_NOTYPE + 0x1a)
40 #define RSC_ACCELITEM (RSC_NOTYPE + 0x1b) // only used internally
41 #define RSC_MENU (RSC_NOTYPE + 0x1c)
42 #define RSC_MENUITEM (RSC_NOTYPE + 0x1d) // only used internally
43 #define RSC_KEYCODE (RSC_NOTYPE + 0x1f)
44 #define RSC_TIME (RSC_NOTYPE + 0x20)
45 #define RSC_DATE (RSC_NOTYPE + 0x21)
46 //#define RSC_INTERNATIONAL (RSC_NOTYPE + 0x22) // removed (2005-06-17)
47 #define RSC_IMAGE (RSC_NOTYPE + 0x23)
48 #define RSC_IMAGELIST (RSC_NOTYPE + 0x24)
50 #define RSC_MESSBOX (RSC_NOTYPE + 0x30)
51 #define RSC_INFOBOX (RSC_NOTYPE + 0x31)
52 #define RSC_WARNINGBOX (RSC_NOTYPE + 0x32)
53 #define RSC_ERRORBOX (RSC_NOTYPE + 0x33)
54 #define RSC_QUERYBOX (RSC_NOTYPE + 0x34)
55 #define RSC_WINDOW (RSC_NOTYPE + 0x35)
56 #define RSC_SYSWINDOW (RSC_NOTYPE + 0x36)
57 #define RSC_WORKWIN (RSC_NOTYPE + 0x37)
58 #define RSC_MDIWINDOW (RSC_NOTYPE + 0x38)
59 #define RSC_FLOATINGWINDOW (RSC_NOTYPE + 0x39)
60 #define RSC_DIALOG (RSC_NOTYPE + 0x3a)
61 #define RSC_MODELESSDIALOG (RSC_NOTYPE + 0x3b)
62 #define RSC_MODALDIALOG (RSC_NOTYPE + 0x3c)
63 #define RSC_CONTROL (RSC_NOTYPE + 0x44)
64 #define RSC_BUTTON (RSC_NOTYPE + 0x45)
65 #define RSC_PUSHBUTTON (RSC_NOTYPE + 0x46)
66 #define RSC_OKBUTTON (RSC_NOTYPE + 0x47)
67 #define RSC_CANCELBUTTON (RSC_NOTYPE + 0x48)
68 #define RSC_HELPBUTTON (RSC_NOTYPE + 0x49)
69 #define RSC_IMAGEBUTTON (RSC_NOTYPE + 0x4a)
70 #define RSC_MENUBUTTON (RSC_NOTYPE + 0x4b)
71 #define RSC_MOREBUTTON (RSC_NOTYPE + 0x4c)
72 #define RSC_SPINBUTTON (RSC_NOTYPE + 0x4d)
73 #define RSC_RADIOBUTTON (RSC_NOTYPE + 0x4e)
74 #define RSC_IMAGERADIOBUTTON (RSC_NOTYPE + 0x4f)
75 #define RSC_CHECKBOX (RSC_NOTYPE + 0x50)
76 #define RSC_TRISTATEBOX (RSC_NOTYPE + 0x51)
77 #define RSC_EDIT (RSC_NOTYPE + 0x52)
78 #define RSC_MULTILINEEDIT (RSC_NOTYPE + 0x53)
79 #define RSC_COMBOBOX (RSC_NOTYPE + 0x54)
80 #define RSC_LISTBOX (RSC_NOTYPE + 0x55)
81 #define RSC_MULTILISTBOX (RSC_NOTYPE + 0x56)
82 #define RSC_TEXT (RSC_NOTYPE + 0x57)
83 #define RSC_FIXEDLINE (RSC_NOTYPE + 0x58)
84 #define RSC_FIXEDBITMAP (RSC_NOTYPE + 0x59)
85 #define RSC_FIXEDIMAGE (RSC_NOTYPE + 0x5a)
86 #define RSC_GROUPBOX (RSC_NOTYPE + 0x5c)
87 #define RSC_SCROLLBAR (RSC_NOTYPE + 0x5d)
88 #define RSC_SCROLLBARBOX (RSC_NOTYPE + 0x5e)
89 #define RSC_SPLITTER (RSC_NOTYPE + 0x5f)
90 #define RSC_SPLITWINDOW (RSC_NOTYPE + 0x60)
91 #define RSC_SPINFIELD (RSC_NOTYPE + 0x61)
92 #define RSC_PATTERNFIELD (RSC_NOTYPE + 0x62)
93 #define RSC_NUMERICFIELD (RSC_NOTYPE + 0x63)
94 #define RSC_METRICFIELD (RSC_NOTYPE + 0x64)
95 #define RSC_CURRENCYFIELD (RSC_NOTYPE + 0x65)
96 #define RSC_DATEFIELD (RSC_NOTYPE + 0x66)
97 #define RSC_TIMEFIELD (RSC_NOTYPE + 0x67)
98 #define RSC_PATTERNBOX (RSC_NOTYPE + 0x68)
99 #define RSC_NUMERICBOX (RSC_NOTYPE + 0x69)
100 #define RSC_METRICBOX (RSC_NOTYPE + 0x6a)
101 #define RSC_CURRENCYBOX (RSC_NOTYPE + 0x6b)
102 #define RSC_DATEBOX (RSC_NOTYPE + 0x6c)
103 #define RSC_TIMEBOX (RSC_NOTYPE + 0x6d)
104 #define RSC_LONGCURRENCYFIELD (RSC_NOTYPE + 0x6e)
105 #define RSC_LONGCURRENCYBOX (RSC_NOTYPE + 0x6f)
106 #define RSC_TOOLBOXITEM (RSC_NOTYPE + 0x70)
107 #define RSC_TOOLBOX (RSC_NOTYPE + 0x71)
108 #define RSC_DOCKINGWINDOW (RSC_NOTYPE + 0x72)
109 #define RSC_STATUSBAR (RSC_NOTYPE + 0x73)
110 #define RSC_TABPAGE (RSC_NOTYPE + 0x74)
111 #define RSC_TABCONTROL (RSC_NOTYPE + 0x75)
112 #define RSC_TABDIALOG (RSC_NOTYPE + 0x76)
113 #define RSC_TABCONTROLITEM (RSC_NOTYPE + 0x77)
114 #define RSC_TREELISTBOX (RSC_NOTYPE + 0x78)
115 #define RSC_STRINGARRAY (RSC_NOTYPE + 0x79)
117 // (RSC_NOTYPE + 0x200) - (RSC_NOTYPE + 0x300) reserved for Sfx
119 #define RT_SYS_BITMAP (RSC_NOTYPE + 0xf2)
120 #define RT_SYS_STRING (RSC_NOTYPE + 0xf3) // special case
121 #define RT_SYS_FILE (RSC_NOTYPE + 0xf4) // not implemented
123 #endif
125 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */