3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2 of the License, or (at your option) version 3.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with the program; if not, see <http://www.gnu.org/licenses/>
18 * Chris Lahey <clahey@ximian.com>
20 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
24 #ifndef __E_TEXT_EVENT_PROCESSOR_TYPES_H__
25 #define __E_TEXT_EVENT_PROCESSOR_TYPES_H__
31 typedef union _ETextEventProcessorEvent ETextEventProcessorEvent
;
37 E_TEP_START_OF_BUFFER
,
43 E_TEP_FORWARD_CHARACTER
,
44 E_TEP_BACKWARD_CHARACTER
,
52 E_TEP_FORWARD_PARAGRAPH
,
53 E_TEP_BACKWARD_PARAGRAPH
,
61 } ETextEventProcessorCommandPosition
;
74 E_TEP_SET_SELECT_BY_WORD
,
81 } ETextEventProcessorCommandAction
;
84 ETextEventProcessorCommandPosition position
;
85 ETextEventProcessorCommandAction action
;
89 } ETextEventProcessorCommand
;
97 } ETextEventProcessorEventButton
;
106 } ETextEventProcessorEventKey
;
113 } ETextEventProcessorEventMotion
;
115 union _ETextEventProcessorEvent
{
117 ETextEventProcessorEventButton button
;
118 ETextEventProcessorEventKey key
;
119 ETextEventProcessorEventMotion motion
;
122 typedef enum _ETextEventProcessorCaps
{
126 } ETextEventProcessorCaps
;
130 #endif /* __E_TEXT_EVENT_PROCESSOR_TYPES_H__ */