initial import for sdlhaa & sdlhim
[sdlhildon] / sdlhim / src / modifier.h
1 /* This file is part of SDL_him - SDL Hildon Input Method addon
2  * Copyright (C) 2010 Javier S. Pedro
3  * Modified from hildon-input-method-framework
4  * Copyright (C) 2005-2007 Nokia Corporation.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA or see <http://www.gnu.org/licenses/>.
20  */
21
22 #ifndef MODIFIER_H_
23 #define MODIFIER_H_
24
25 /* The following comes from hildon-input-method-protocol, but does not come
26  * with hildon-im-protocol. We use it internally. 
27  */
28
29 typedef enum HildonIMInternalModifierMask {
30         HILDON_IM_SHIFT_STICKY_MASK     = 1 << 0,
31         HILDON_IM_SHIFT_LOCK_MASK       = 1 << 1,
32         HILDON_IM_LEVEL_STICKY_MASK     = 1 << 2,
33         HILDON_IM_LEVEL_LOCK_MASK       = 1 << 3,
34         HILDON_IM_COMPOSE_MASK          = 1 << 4,
35         HILDON_IM_DEAD_KEY_MASK         = 1 << 5
36 } HildonIMInternalModifierMask;
37
38 #endif
39