xref: /aoo4110/main/svl/inc/svl/memberid.hrc (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 _MEMBERID_HRC
25#define _MEMBERID_HRC
26
27#define SFX_MEMBERID(nUserData)	( ( (nUserData) >> 20 ) & 0xFF )
28#define SFX_SLOTID(nUserData)	( (nUserData) & 0xFFFF )
29
30#define MID_X		1
31#define MID_Y		2
32#define MID_RECT_LEFT    3
33#define MID_RECT_TOP     4
34#define MID_WIDTH   5
35#define MID_HEIGHT  6
36#define MID_RECT_RIGHT   7
37
38// SvxSizeItem
39#define MID_SIZE_SIZE       0
40#define MID_SIZE_WIDTH      1
41#define MID_SIZE_HEIGHT     2
42
43// SvxSearchItem
44#define MID_SEARCH_STYLEFAMILY          1
45#define MID_SEARCH_CELLTYPE             2
46#define MID_SEARCH_ROWDIRECTION         3
47#define MID_SEARCH_ALLTABLES            4
48#define MID_SEARCH_BACKWARD             5
49#define MID_SEARCH_PATTERN              6
50#define MID_SEARCH_CONTENT              7
51#define MID_SEARCH_ASIANOPTIONS         8
52#define MID_SEARCH_ALGORITHMTYPE        9
53#define MID_SEARCH_FLAGS                10
54#define MID_SEARCH_SEARCHSTRING         11
55#define MID_SEARCH_REPLACESTRING        12
56#define MID_SEARCH_LOCALE               13
57#define MID_SEARCH_CHANGEDCHARS         14
58#define MID_SEARCH_DELETEDCHARS         15
59#define MID_SEARCH_INSERTEDCHARS        16
60#define MID_SEARCH_TRANSLITERATEFLAGS   17
61#define MID_SEARCH_COMMAND          	18
62
63
64#endif
65
66