2

我为我的 Ubuntu 桌面构建了 Maliit (https://wiki.maliit.org/Main_Page) 虚拟屏幕键盘,它与包含的示例应用程序配合得很好。我还能够制作自己的简单 Qt 示例应用程序,当小部件获得焦点时会显示键盘。

我现在正尝试将虚拟键盘部署到在我的目标板上运行的带有触摸屏的嵌入式 Linux 系统。目标板上没有安装 X11,我使用 QWS ( -qws ) 运行了很多 Qt 应用程序。

Maliit 架构 ( http://maliit.org/doc/framework/latest/architecture.html ) 需要一个服务器实例来与应用程序通信,并且应用程序使用 QApplication::setInputContext 设置它的输入上下文。

在 Ubuntu 上,我只是这样做:

export QT_IM_MODULE=Maliit
maliit-server -software &
maliit-exampleapp-plainqt

键盘出现了,一切正常(当然我有 X11)!

在嵌入式板上,我在一个 SSH 会话中执行:

export QT_IM_MODULE=Maliit
dbus-launch --auto-syntax maliit-server -software -qws

然后是另一个 SSH 会话:

export QT_IM_MODULE=Maliit
source /find_dbus_address.sh
echo $DBUS_SESSION_BUS_ADDRESS
maliit-exampleapp-plainqt -qws

但我总是得到错误:

QApplication::setInputContext: called with 0 input context

这意味着示例应用程序在以下行中的 main 失败:

// Workaround for lighthouse Qt
kit.setInputContext(QInputContextFactory::create("Maliit", &kit));

嵌入式板上“ps”命令的输出显示如下:

  191 user     1692 S    -sh
  192 user    39608 S    maliit-server -software -qws
  196 user     2092 S    /usr/bin/dbus-daemon --fork --print-pid 4 --print-address 6 --session
  201 user     1692 R    ps

所以服务器并没有像在 Ubuntu 中那样主动运行……而是处于“可中断睡眠”状态。鼠标确实在这种状态下移动。我仍然收到 0 输入上下文错误。

这里有一个错误 --> https://bugs.maliit.org/show_bug.cgi?id=185声称带有 Maliit 的 QWS 正在为他工作,至少他可以看到输入..

还有一种可能绕过 DBUS 的 Maliit 模式(请参见此处 --> http://www.jonnor.com/2012/03/)并且我仍然会收到“0输入上下文”错误:

所以我试着在我的嵌入式板上做:

export QT_IM_MODULE=MaliitDirect ; echo $QT_IM_MODULE ; maliit-exampleapp-embedded -qws

并且总是收到:

QApplication::setInputContext: called with 0 input context
Unable to embedded Maliit input method widget

我在 Ubuntu 12.04 桌面上构建了 Qt 4.8.2 Embedded,并且可以使用 -qws 以及示例应用程序启动 maliit-server,并且可以看到使用 QWS 的虚拟键盘工作得很好。我正在为插件和 maliit-framework 使用 git repo 的最新克隆。

我的问题是在目标上运行为我的 ARM 板编译的相同 maliit-server 和示例应用程序。我经常收到错误 QApplication::setInputContext: called with 0 input context。

我使用 DBUS dbus-monitor 工具进行了一些监控。我最初在我的板上打开了 1 个 SSH 会话并运行evaldbus-launch --auto-syntax并复制了 DBUS_SESSION_BUS。然后我打开了 2 个新的 SSH 会话。

在我做的第一个中:

$ export DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-vVNCW9zP7e,guid=75ecd72645dfb9b4358048db506dfec
$ export QT_IM_MODULE=Maliit
$ maliit-server -software -qws

在第二个中,我做了:

$ export DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-vVNCW9zP7e,guid=75ecd72645dfb9b4358048db506dfecb
$ export QT_IM_MODULE=Maliit
$ maliit-exampleapp-settings -qws

但是,我立即面临:

[9;0]QApplication::setInputContext: called with 0 input context
SettingsWidget::connected()
SettingsWidget::pluginSettingsReceived()
Setting layout QVariant(QString, "nemo-keyboard.qml:")

在 dbus-monitor shell 中,我看到:

desktop.DBus; member=NameOwnerChanged
   string ":1.6"
   string ""
   string ":1.6"
method call sender=:1.6 -> dest=org.freedesktop.DBus serial=1 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=Hello
signal sender=org.freedesktop.DBus -> dest=(null destination) serial=8 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged
   string "org.maliit.server"
   string ""
   string ":1.6"
method call sender=:1.6 -> dest=org.freedesktop.DBus serial=2 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=RequestName
   string "org.maliit.server"
   uint32 4
signal sender=org.freedesktop.DBus -> dest=(null destination) serial=9 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged
   string ":1.7"
   string ""
   string ":1.7"
method call sender=:1.7 -> dest=org.freedesktop.DBus serial=1 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=Hello
method call sender=:1.7 -> dest=org.maliit.server serial=2 path=/org/maliit/server/address; interface=org.freedesktop.DBus.Properties; member=Get
   string "org.maliit.Server.Address"
   string "address"
method return sender=:1.6 -> dest=:1.7 reply_serial=2
   variant       string "unix:abstract=/tmp/maliit-server/dbus-CPgFHrxwAi,guid=dfc1dfc367a647e36e6e4c3c506e00db"

有人知道这里发生了什么吗?DBUS 可能与 QInputContextFactory 失败有关吗?我能否以某种方式获得有关失败原因以及为什么无法设置输入上下文的更多信息?

感谢您的帮助 -

4

1 回答 1

3

难以置信,如此简单的修复。只需像这样设置 QT_PLUGIN_PATH :

export QT_PLUGIN_PATH=/home/user/plugins
于 2012-10-09T13:03:10.173 回答