1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
/*
* Copyright (C) 2001-2003, Richard J. Moore <rich@kde.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "global.h"
#include "jseventmapper.h"
#include <tqevent.h>
namespace KJSEmbed {
/** Used internally for the event handler table. */
struct EventType
{
EventType( KJS::Identifier _id, TQEvent::Type _type ) :
id(_id), type(_type) {;}
const KJS::Identifier id;
const TQEvent::Type type;
};
static EventType events[] = {
EventType(KJS::Identifier("timerEvent"), TQEvent::Timer),
#ifdef ENABLE_CHILDEVENTS
EventType( KJS::Identifier("childInsertEvent"), TQEvent::ChildInserted ),
EventType( KJS::Identifier("childRemoveEvent"), TQEvent::ChildRemoved ),
#endif
EventType( KJS::Identifier("mouseReleaseEvent"), TQEvent::MouseButtonRelease ),
EventType( KJS::Identifier("mouseMoveEvent"), TQEvent::MouseMove ),
EventType( KJS::Identifier("mouseDoubleClickEvent"), TQEvent::MouseButtonDblClick ),
EventType( KJS::Identifier("mousePressEvent"), TQEvent::MouseButtonPress ),
EventType( KJS::Identifier("keyPressEvent"), TQEvent::KeyPress ),
EventType( KJS::Identifier("keyReleaseEvent"), TQEvent::KeyRelease ),
EventType( KJS::Identifier("paintEvent"), TQEvent::Paint ),
EventType( KJS::Identifier("moveEvent"), TQEvent::Move ),
EventType( KJS::Identifier("resizeEvent"), TQEvent::Resize ),
EventType( KJS::Identifier("closeEvent"), TQEvent::Close ),
EventType( KJS::Identifier("showEvent"), TQEvent::Show ),
EventType( KJS::Identifier("hideEvent"), TQEvent::Hide ),
EventType( KJS::Identifier("dragEnterEvent"), TQEvent::DragEnter ),
EventType( KJS::Identifier("dragMoveEvent"), TQEvent::DragMove ),
EventType( KJS::Identifier("dragLeaveEvent"), TQEvent::DragLeave ),
EventType( KJS::Identifier("dragResponseEvent"), TQEvent::DragResponse ),
EventType( KJS::Identifier("dropEvent"), TQEvent::Drop ),
EventType( KJS::Identifier(), TQEvent::None )
};
JSEventMapper::JSEventMapper()
{
int i = 0;
do {
addEvent( events[i].id, events[i].type );
i++;
} while( events[i].type != TQEvent::None );
}
JSEventMapper::~JSEventMapper()
{
}
void JSEventMapper::addEvent( const KJS::Identifier &name, TQEvent::Type t )
{
handlerToEvent.insert( name.qstring(), (const uint *) t );
eventToHandler.insert( (long) t, &name );
}
TQEvent::Type JSEventMapper::findEventType( const KJS::Identifier &name ) const
{
uint evt = (uint)(long)handlerToEvent[ name.qstring() ];
return static_cast<TQEvent::Type>( evt );
}
} // namespace KJSEmbed
// Local Variables:
// c-basic-offset: 4
// End:
|