summaryrefslogtreecommitdiffstats
path: root/client/qt4/ibus-client.h
blob: 97e4d1ca750a83520f5f62476f69f53769779e23 (plain)
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/* vim:set noet ts=4: */
/*
 * ibus - The Input Bus
 *
 * Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 * Boston, MA  02111-1307  USA
 */
#ifndef __IBUS_CLIENT_H_
#define __IBUS_CLIENT_H_

#ifdef QT4
#  include <QObject>
#  include <QList>
#  include <QVector>
#  include <QHash>
#  include <QInputContext>
#  include <QFileSystemWatcher>
#  include <QDBusMessage>
#else
#  include <qobject.h>
#  include <qptrlist.h>
#  include <qmemarray.h>
#  include <qdict.h> 
#  include <qinputcontext.h>
#  include <dbus/qdbusmessage.h>
#endif

class MyDBusConnection;
class IBusInputContext;

class IBusClient : public QObject {
	Q_OBJECT
public:
	IBusClient ();
	~IBusClient ();

public:

#ifndef Q_WS_X11
    bool filterEvent (IBusInputContext *ctx, const QEvent *event);
#endif

	bool isComposing (IBusInputContext const *ctx);
	void mouseHandler (IBusInputContext *ctx, int x, QMouseEvent *event);
	void widgetDestroyed (IBusInputContext *ctx, QWidget *widget);

#ifdef Q_WS_X11
	bool x11FilterEvent (IBusInputContext *ctx, QWidget *keywidget, XEvent *xevent);
#endif

public:
	QInputContext *createInputContext ();
	void releaseInputContext (IBusInputContext *ctx);
	void setCursorLocation (IBusInputContext *ctx, QRect &rect);
	void focusIn (IBusInputContext *ctx);
	void focusOut (IBusInputContext *ctx);
	void reset (IBusInputContext *ctx);
	void setCapabilities (IBusInputContext *ctx, int caps);

private slots:
	void slotDirectoryChanged (const QString &path);
	// void slotFileChanged (const QString &path);
	void slotIBusDisconnected ();
	void slotCommitString (QString ic, QString text);
	// void slotUpdatePreedit (QString ic, QString text, QVariant attrs, int cursor_pos, bool show);
	void slotUpdatePreedit (QDBusMessage message);
	void slotShowPreedit (QDBusMessage message);
	void slotHidePreedit (QDBusMessage message);

private:
	bool connectToBus ();
	void disconnectFromBus ();
	QString createInputContextRemote ();
	void findYenBarKeys ();

	MyDBusConnection *ibus;
#ifdef QT4
	QList <IBusInputContext *> context_list;
	QFileSystemWatcher watcher;
	QHash <QString, IBusInputContext *>context_dict;
#else
	QPtrList <IBusInputContext> context_list;
	QDict <IBusInputContext>context_dict;
#endif
	QString username;
	QString session;
	QString ibus_path;
	QString ibus_addr;

	/* hack japan keyboard */
	unsigned int japan_groups;
#ifdef QT4
	QVector <unsigned int> japan_yen_bar_keys;
#else
	QMemArray <unsigned int> japan_yen_bar_keys;
#endif

};

#endif // __IBUS_CLIENT_H_