Archived:Handle change in screen orientation in Qt
valderind4
(Talk | contribs) m (moved Handle change in screen oriantation in Qt to Handle change in screen orientation in Qt for Symbian: the new title is more specific) |
hamishwillee
(Talk | contribs) m (Text replace - "<code cpp>" to "<code cpp-qt>") |
||
| (19 intermediate revisions by 4 users not shown) | |||
| Line 1: | Line 1: | ||
| − | {{ | + | {{Archived|timestamp=20120213040924|user=[[User:Hamishwillee|<br />----]]|[[:Category:Qt Quick|Qt Quick]] should be used for all UI development on mobile devices. The approach described in this article (based on {{Qapiname|QWidget}}) is deprecated.}} |
| − | + | [[Category:Qt C++ UI]][[Category:UI]][[Category:Code Examples]] | |
| − | {{ | + | {{Abstract|This code example shows how to get notification when the screen mode changes using [http://doc.qt.nokia.com/stable/qwidget.html#resizeEvent QWidget::resizeEvent()]. This method gets called when the screen mode changes, so you have to implement that virtual method in your class in order to handle orientation change events.}} |
| − | | | + | {{ArticleMetaData <!-- v1.2 --> |
| − | |platform=S60 3rd Edition, FP1, FP2<br>S60 5th Edition | + | |sourcecode= [[Media:QtResizeEvent.zip]] |
| − | | | + | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> |
| − | | | + | |devices= Nokia 5800 XpressMusic |
| − | | | + | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> |
| − | | | + | |platform= S60 3rd Edition, FP1, FP2<br>S60 5th Edition |
| − | |keywords=QWidget::resizeEvent() | + | |devicecompatability= <!-- Compatible devices (e.g.: All* (must have GPS) ) --> |
| + | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> | ||
| + | |signing= Self-Signed | ||
| + | |capabilities= None | ||
| + | |keywords= QWidget::resizeEvent() | ||
| + | |language= <!-- Language category code for non-English topics - e.g. Lang-Chinese --> | ||
| + | |translated-by= <!-- [[User:XXXX]] --> | ||
| + | |translated-from-title= <!-- Title only --> | ||
| + | |translated-from-id= <!-- Id of translated revision --> | ||
| + | |review-by= <!-- After re-review: [[User:username]] --> | ||
| + | |review-timestamp= <!-- After re-review: YYYYMMDD --> | ||
| + | |update-by= <!-- After significant update: [[User:username]]--> | ||
| + | |update-timestamp= <!-- After significant update: YYYYMMDD --> | ||
| + | |creationdate= 20090626 | ||
| + | |author= [[User:Savaj]] | ||
}} | }} | ||
| − | + | {{Warning|'''This article does not work properly in Qt 4.7 in Symbian'''. It can be rectified with the change described below.<br /> | |
| − | + | The issue is in the example code's {{Icode|ResizeEvent::GetScreenCoordinates()}} method. The {{Icode|GetScreenCoordinates}} uses {{Icode|QDesktopWidget::availableGeometry}} and {{Icode|QDesktopWidget::screenGeometry}} methods. In all cases these methods do not reflect ''current'' screen geometry values during {{Icode|QWidget::resizeEvent}} call as the respective values are only changed ''after'' the resizeEvent has occured. This means that e.g. during the startup of the application these may return wrong values as the values are not yet set properly. | |
| − | + | If the whole screen geometry information is needed from QDesktopWidget it's advised to connect to QApplication::desktop()'s workAreaResized(int) signal and call {{Icode|QApplication::desktop()->availableGeometry()}} in the connected slot function. This works in Qt 4.7.3 in Symbian but not (due to bug) in Qt 4.6. | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| + | See following bug report for more details. The [http://bugreports.qt.nokia.com/browse/QTBUG-14058 QTBUG-14058]'s fix introduces documentation for QDesktopWidget on this issue. | ||
| + | In many cases application should however get simply the geometry of the main window using {{Icode|QMainWindow::width()}} and {{Icode|::height()}} methods during {{Icode|QMainWindow}}'s {{Icode|resizeEvent}}.}} | ||
==Source== | ==Source== | ||
| − | <code cpp> | + | <code cpp-qt> |
//resizeEvent() method get called when user change screen mode. | //resizeEvent() method get called when user change screen mode. | ||
void ResizeEvent::resizeEvent (QResizeEvent* event) | void ResizeEvent::resizeEvent (QResizeEvent* event) | ||
| Line 44: | Line 53: | ||
'''Normal screen'''<br><br> | '''Normal screen'''<br><br> | ||
| − | [[ | + | [[File:ResizeEvent2.JPG]] |
'''Screen after changing mode to portrait'''<br><br> | '''Screen after changing mode to portrait'''<br><br> | ||
| − | [[ | + | [[File:ResizeEvent1.JPG]] |
==Related link== | ==Related link== | ||
| − | * [[ | + | * [[Archived:Listening for screen orientation changes in Qt]] |
==Download Code Example== | ==Download Code Example== | ||
| − | * | + | * [[File:QtResizeEvent.zip]] shows new screen size when user change screen mode. This example is tested on Nokia 5800 XpressMusic. |
| − | <br> | + | <br>[[Category:MeeGo Harmattan]] [[Category:Symbian]] |
| − | + | ||
| − | + | ||
| − | + | ||
| − | [[Category: | + | |
Revision as of 04:14, 11 October 2012
Qt Quick should be used for all UI development on mobile devices. The approach described in this article (based on QWidget) is deprecated.
This code example shows how to get notification when the screen mode changes using QWidget::resizeEvent(). This method gets called when the screen mode changes, so you have to implement that virtual method in your class in order to handle orientation change events.
Article Metadata
Code Example
Tested with
Compatibility
S60 5th Edition
Platform Security
Article
The issue is in the example code's ResizeEvent::GetScreenCoordinates() method. The GetScreenCoordinates uses QDesktopWidget::availableGeometry and QDesktopWidget::screenGeometry methods. In all cases these methods do not reflect current screen geometry values during QWidget::resizeEvent call as the respective values are only changed after the resizeEvent has occured. This means that e.g. during the startup of the application these may return wrong values as the values are not yet set properly.
If the whole screen geometry information is needed from QDesktopWidget it's advised to connect to QApplication::desktop()'s workAreaResized(int) signal and call QApplication::desktop()->availableGeometry() in the connected slot function. This works in Qt 4.7.3 in Symbian but not (due to bug) in Qt 4.6.
See following bug report for more details. The QTBUG-14058's fix introduces documentation for QDesktopWidget on this issue.
In many cases application should however get simply the geometry of the main window using QMainWindow::width() and ::height() methods during QMainWindow's resizeEvent.
Contents |
Source
//resizeEvent() method get called when user change screen mode.
void ResizeEvent::resizeEvent (QResizeEvent* event)
{
QSize widgetSize = event->size();
//Resize your custom control according to new size.
QMainWindow::resizeEvent(event);
}
Postconditions
The code snippet is expected to notify change in screen mode.
Screen after changing mode to portrait
Related link
Download Code Example
- File:QtResizeEvent.zip shows new screen size when user change screen mode. This example is tested on Nokia 5800 XpressMusic.

