xref: /trunk/main/vcl/inc/vcl/cmdevt.h (revision e6b30a3d)
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 _VCL_CMDEVT_H
25 #define _VCL_CMDEVT_H
26 
27 // --------------------
28 // - CommandVoiceData -
29 // --------------------
30 
31 #define DICTATIONCOMMAND_SYSTEM			0x1000
32 #define DICTATIONCOMMAND_USER			0x2000
33 
34 #define DICTATIONCOMMAND_UNKNOWN		0x0001
35 #define DICTATIONCOMMAND_NEWPARAGRAPH	0x0002
36 #define DICTATIONCOMMAND_NEWLINE		0x0003
37 #define DICTATIONCOMMAND_BOLD_ON		0x0004
38 #define DICTATIONCOMMAND_BOLD_OFF		0x0005
39 #define DICTATIONCOMMAND_ITALIC_ON		0x0006
40 #define DICTATIONCOMMAND_ITALIC_OFF		0x0007
41 #define DICTATIONCOMMAND_UNDERLINE_ON	0x0008
42 #define DICTATIONCOMMAND_UNDERLINE_OFF	0x0009
43 #define DICTATIONCOMMAND_NUMBERING_ON	0x0010
44 #define DICTATIONCOMMAND_NUMBERING_OFF	0x0011
45 #define DICTATIONCOMMAND_TAB			0x0012
46 #define DICTATIONCOMMAND_LEFT			0x0013
47 #define DICTATIONCOMMAND_RIGHT			0x0014
48 #define DICTATIONCOMMAND_UP				0x0015
49 #define DICTATIONCOMMAND_DOWN			0x0016
50 #define DICTATIONCOMMAND_UNDO			0x0017
51 #define DICTATIONCOMMAND_REPEAT			0x0018
52 #define DICTATIONCOMMAND_DEL			0x0019
53 
54 #define DICTATIONCOMMAND_COMMANDMODE	(DICTATIONCOMMAND_SYSTEM + 1)
55 #define DICTATIONCOMMAND_DICTATIONMODE	(DICTATIONCOMMAND_SYSTEM + 2)
56 
57 #endif // _VCL_CMDEVT_H
58 
59 
60