Changeset 846 for trunk/src/gui/kernel/qwidget_wince.cpp
- Timestamp:
- May 5, 2011, 5:36:53 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.7.2 (added) merged: 845 /branches/vendor/nokia/qt/current merged: 844 /branches/vendor/nokia/qt/4.6.3 removed
- Property svn:mergeinfo changed
-
trunk/src/gui/kernel/qwidget_wince.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 47 47 48 48 const QString qt_reg_winclass(QWidget *w); // defined in qapplication_win.cpp 49 extern "C" LRESULT CALLBACK QtWndProc(HWND, UINT, WPARAM, LPARAM);49 extern "C" LRESULT QT_WIN_CALLBACK QtWndProc(HWND, UINT, WPARAM, LPARAM); 50 50 51 51 //#define TABLET_DEBUG … … 64 64 typedef BOOL (API *PtrWTQueueSizeSet)(HCTX, int); 65 65 66 #ifndef QT_NO_TABLETEVENT 66 67 static void qt_tablet_init_wce(); 67 68 static void qt_tablet_cleanup_wce(); … … 136 137 qt_tablet_widget = 0; 137 138 } 139 #endif // QT_NO_TABLETEVENT 138 140 139 141 … … 359 361 } 360 362 363 #ifndef QT_NO_TABLETEVENT 361 364 if (q != qt_tablet_widget && QWidgetPrivate::mapper) 362 365 qt_tablet_init_wce(); 366 #endif // QT_NO_TABLETEVENT 363 367 364 368 if (q->testAttribute(Qt::WA_DropSiteRegistered)) … … 495 499 SetWindowLong(internalWinId(), GWL_STYLE, style); 496 500 SetWindowLong(internalWinId(), GWL_EXSTYLE, GetWindowLong (internalWinId(), GWL_EXSTYLE) & ~ WS_EX_NODRAG); 501 qt_wince_unmaximize(this); 497 502 } 498 503 if (isVisible() && newstate & Qt::WindowMaximized) … … 587 592 588 593 // The procedure does nothing, but is required for mousegrabbing to work 589 LRESULT CALLBACK qJournalRecordProc(int nCode, WPARAM wParam, LPARAM lParam) {594 LRESULT QT_WIN_CALLBACK qJournalRecordProc(int nCode, WPARAM wParam, LPARAM lParam) { 590 595 Q_UNUSED(nCode); 591 596 Q_UNUSED(wParam);
Note:
See TracChangeset
for help on using the changeset viewer.