Changeset 95 for trunk/src/gui/kernel/qapplication_pm.cpp
- Timestamp:
- Jul 31, 2009, 1:13:57 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gui/kernel/qapplication_pm.cpp
r92 r95 82 82 static bool qt_try_modal(QWidget *, QMSG *, int& ret); 83 83 84 static QWidget *qt_button_down = 0; // widget got last button-down 84 QWidget *qt_button_down = 0; // widget got last button-down 85 QPointer<QWidget> qt_last_mouse_receiver = 0; 85 86 86 87 static HWND autoCaptureWnd = NULLHANDLE; … … 273 274 *****************************************************************************/ 274 275 276 void QApplicationPrivate::createEventDispatcher() 277 { 278 // @todo implement 279 } 280 275 281 /***************************************************************************** 276 282 Platform specific QApplication members … … 286 292 } 287 293 294 void QApplication::setCursorFlashTime(int msecs) 295 { 296 // @todo implement 297 } 298 299 300 int QApplication::cursorFlashTime() 301 { 302 // @todo implement 303 return 0; 304 } 305 306 void QApplication::setDoubleClickInterval(int ms) 307 { 308 // @todo implement 309 } 310 311 int QApplication::doubleClickInterval() 312 { 313 // @todo implement 314 return 0; 315 } 316 317 318 void QApplication::setKeyboardInputInterval(int ms) 319 { 320 // @todo implement 321 } 322 323 int QApplication::keyboardInputInterval() 324 { 325 // @todo implement 326 return 0; 327 } 328 329 #ifndef QT_NO_WHEELEVENT 330 void QApplication::setWheelScrollLines(int n) 331 { 332 // @todo implement 333 } 334 335 int QApplication::wheelScrollLines() 336 { 337 // @todo implement 338 return 0; 339 } 340 #endif //QT_NO_WHEELEVENT 341 342 void QApplication::setEffectEnabled(Qt::UIEffect effect, bool enable) 343 { 344 // @todo implement 345 } 346 347 bool QApplication::isEffectEnabled(Qt::UIEffect effect) 348 { 349 // @todo implement 350 return false; 351 } 352 353 void QApplication::beep() 354 { 355 // @todo implement 356 } 357 358 void QApplication::alert(QWidget *widget, int duration) 359 { 360 // @todo implement 361 } 362 288 363 /***************************************************************************** 289 364 QApplication cursor stack 290 365 *****************************************************************************/ 291 366 367 #ifndef QT_NO_CURSOR 368 369 void QApplication::setOverrideCursor(const QCursor &cursor) 370 { 371 // @todo implement 372 } 373 374 void QApplication::restoreOverrideCursor() 375 { 376 // @todo implement 377 } 378 379 #endif 380 292 381 /***************************************************************************** 293 382 Routines to find a Qt widget from a screen position 294 383 *****************************************************************************/ 295 384 385 QWidget *QApplication::topLevelAt(const QPoint &pos) 386 { 387 // @todo implement 388 return 0; 389 } 390 296 391 /***************************************************************************** 297 392 Main event loop 298 393 *****************************************************************************/ 394 395 // QtWndProc() receives all messages from the main event loop 396 397 extern "C" 398 MRESULT EXPENTRY QtWndProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2) 399 { 400 // @todo implement 401 return FALSE; 402 } 299 403 300 404 /***************************************************************************** … … 315 419 *****************************************************************************/ 316 420 421 bool QApplicationPrivate::modalState() 422 { 423 // @todo implement 424 return false; 425 } 426 427 void QApplicationPrivate::enterModal_sys(QWidget *widget) 428 { 429 // @todo implement 430 } 431 432 void QApplicationPrivate::leaveModal_sys(QWidget *widget) 433 { 434 // @todo implement 435 } 436 317 437 /***************************************************************************** 318 438 Popup widget mechanism … … 329 449 *****************************************************************************/ 330 450 451 void QApplicationPrivate::openPopup(QWidget *popup) 452 { 453 // @todo implement 454 } 455 456 void QApplicationPrivate::closePopup(QWidget *popup) 457 { 458 // @todo implement 459 } 460 331 461 /***************************************************************************** 332 462 Event translation; translates PM events to Qt events
Note:
See TracChangeset
for help on using the changeset viewer.