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 277 278 279 280 275 281 /***************************************************************************** 276 282 Platform specific QApplication members … … 286 292 } 287 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 288 363 /***************************************************************************** 289 364 QApplication cursor stack 290 365 *****************************************************************************/ 291 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 292 381 /***************************************************************************** 293 382 Routines to find a Qt widget from a screen position 294 383 *****************************************************************************/ 295 384 385 386 387 388 389 390 296 391 /***************************************************************************** 297 392 Main event loop 298 393 *****************************************************************************/ 394 395 396 397 398 399 400 401 402 299 403 300 404 /***************************************************************************** … … 315 419 *****************************************************************************/ 316 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 317 437 /***************************************************************************** 318 438 Popup widget mechanism … … 329 449 *****************************************************************************/ 330 450 451 452 453 454 455 456 457 458 459 460 331 461 /***************************************************************************** 332 462 Event translation; translates PM events to Qt events
Note:
See TracChangeset
for help on using the changeset viewer.