Problem on move focus out of QListWidget in a full screen widget
Hi,
I've developed a widget (Qt for symbian) shown in full screen mode, with a QListWidget instance on it. The handset has no touch screen.
When I focus into the QListWidget using navigation key, the Done/Exit menu isn't show due to full screen mode, and I find there is no way to move focus out of it.
Anyone can help with is issue?
Thanks.
Re: Problem on move focus out of QListWidget in a full screen widget
Finally work out an OK solution by myself.
Even in full screen mode QListWidget didn't capture the left and right softkey(keyCode 63554 and 63555). So a just rewrite the keyPressEvent() in the main widget, capture those keys and setFocus() to an other widget.
Re: Problem on move focus out of QListWidget in a full screen widget
Thanks for taking the time to share your solution. Where possible people now using QML classes because the Widget classes are deprecated (and don't look all that great).