Changeset 98


Ignore:
Timestamp:
Aug 3, 2009, 11:30:38 PM (16 years ago)
Author:
Dmitry A. Kuminov
Message:

gui: Added deferred window size/move request processing.

Location:
trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/corelib/kernel/qeventdispatcher_pm.cpp

    r89 r98  
    13251325}
    13261326
     1327
     1328
     1329
     1330
     1331
     1332
     1333
    13271334QT_END_NAMESPACE
  • trunk/src/corelib/kernel/qeventdispatcher_pm_p.h

    r89 r98  
    9090    void startingUp();
    9191    void closingDown();
     92
     93
    9294};
    9395
  • trunk/src/gui/kernel/qapplication_pm.cpp

    r95 r98  
    5353
    5454#include "qset.h"
     55
     56
    5557
    5658#include "qwidget_p.h"
     
    270272 *****************************************************************************/
    271273
     274
     275
     276
     277
     278
     279
     280
     281
     282
     283
     284
     285
     286
     287
     288
     289
     290
     291
     292
     293
    272294/*****************************************************************************
    273295    GUI event dispatcher
    274296 *****************************************************************************/
    275297
     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
    276343void QApplicationPrivate::createEventDispatcher()
    277344{
    278     // @todo implement
     345    Q_Q(QApplication);
     346    if (q->type() != QApplication::Tty)
     347        eventDispatcher = new QGuiEventDispatcherPM(q);
     348    else
     349        eventDispatcher = new QEventDispatcherPM(q);
    279350}
    280351
Note: See TracChangeset for help on using the changeset viewer.