1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
21 module com
{ module sun
{ module star
{ module awt
{
23 /** these values specify the different command types available.
26 published constants Command
30 /** specifies a requests for a context menu.
32 const short CONTEXTMENU
= 1;
35 /** specifies the beginning of a drag operation.
37 const short STARTDRAG
= 2;
40 /** specifies a mouse wheel operation.
42 const short WHEEL
= 3;
45 /** specifies the beginning of an auto scroll operation.
47 const short STARTAUTOSCROLL
= 4;
50 /** specifies an auto scroll operation.
52 const short AUTOSCROLL
= 5;
55 /** specifies a request for a voice operation.
57 const short VOICE
= 6;
60 /** specifies the beginning of an extended text input operation.
62 const short STARTEXTTEXTINPUT
= 7;
65 /** specifies an extended text input operation.
67 const short EXTTEXTINPUT
= 8;
70 /** specifies the end of an extended text input operation.
72 const short ENDEXTTEXTINPUT
= 9;
75 /** specifies that the input context has been changed.
77 const short INPUTCONTEXTCHANGE
= 10;
80 /** specifies the cursor position.
82 const short CURSORPOS
= 11;
85 /** specifies a paste selection command.
87 const short PASTESELECTION
= 12;
90 /** specifies that the state of a key modifier has changed.
92 const short MODKEYCHANGE
= 13;
95 /** specifies a Hangul hanja conversion command.
97 const short HANGUL_HANJA_CONVERSION
= 14;
100 /** specifies a user-defined command.
102 const short USER
= 4096;
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */