Bug 31297
Summary: | [Qt] Input method support is broken in QGraphicsWebView | ||
---|---|---|---|
Product: | WebKit | Reporter: | Simon Hausmann <hausmann> |
Component: | New Bugs | Assignee: | Simon Hausmann <hausmann> |
Status: | RESOLVED FIXED | ||
Severity: | Normal | CC: | joseph.ligman, koshuin, laszlo.gombos, tonikitoo |
Priority: | P3 | Keywords: | Qt |
Version: | 528+ (Nightly build) | ||
Hardware: | All | ||
OS: | OS X 10.5 | ||
Bug Depends on: | |||
Bug Blocks: | 29799 |
Simon Hausmann
As it stands right now the SoftwareInputPanelRequest event isn't sent on QWebPage::handleSoftwareInputPanel().
That prevents the input method from coming on on S60. But there may be more issues.
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Simon Hausmann
http://trac.webkit.org/changeset/50801 fixes the issue in WebKit.
The remaining brokeness is somewhere in QGraphicsView, as the issue is also reproducible without WebKit but a simple QGraphicsTextItem instead.
The latest investigation shows that the graphicsview's viewport is the focus widget known to the input method, which of course means that the calls to inputMethodQuery() will not end up in QGraphicsView::inputMethodQuery() and therefore never reach the focused graphics item in the scene.
Closing this bug nevertheless as the WebKit part is fixed.