Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个 Qt 后台任务,它根据用户输入生成文本。我的任务在文本输入字段打开时运行,我现在需要一种将文本插入到当前打开的任何应用程序的输入中的方法。我看过按键模拟,但找不到有效的方法。
你知道我能做什么吗?
PS。这适用于 Symbian^3(Belle) 和 Qt 以及 Symbian C++ 代码。
正在做的事情是
RWsSession sess=CCoeEnv::Static()->WsSession(); sess.SimulateKeyEvent(RFB::GetKeyEvent(code,ETrue)); User::After(200000); sess.Flush();