summaryrefslogtreecommitdiffstats
path: root/tests/auto/macnativeevents
Commit message (Collapse)AuthorAgeFilesLines
* Cocoa, Autotest: disable autotest that was added a bit prematureRichard Moe Gustavsen2010-08-171-2/+3
| | | | | | | | The test is actually correct, but cannot be enabled before a second revision on the setStackingOrder function in qwidget_mac.mm has been rewritten to handle inter-child window stacking order Reviewed-by: prasanth
* Cocoa: add autotest to be more safe regarding child window stackingRichard Moe Gustavsen2010-08-171-0/+80
| | | | | | | Autotests only. Use native events on mac to check that child windows stays on top of parent windows. Reviewed-by: prasanth
* Autotest: check that we receive key events on toplevel widgetsRichard Moe Gustavsen2010-04-302-8/+58
| | | | | | Autotest add to test db322e8aec1cae Reviewed-by: denis
* Mac: improve mac native events autotest APIRichard Moe Gustavsen2010-04-272-6/+0
| | | | Make it possible to add a delay between two events
* Autotest failure: dialogModality test fails on cocoa (macgui)Richard Moe Gustavsen2010-04-141-0/+24
| | | | | | | | | The reason is that it is using accessebility, which is not yet implemented in Qt/Cocoa. This patch just removes the test, and reimplements it using the native events test instead, which is a better solution anyway. Reviewed-by: msorvig
* Autotest: added more tests to macnativeevents (2)Richard Moe Gustavsen2010-04-075-14/+136
|
* Autotest: added more tests to macnativeeventsRichard Moe Gustavsen2010-04-079-87/+391
|
* Fix CI sytem build breakage.Morten Johan Sørvig2010-03-251-0/+0
| | | | (The .pro file name must match the dir name)
* Mac: new auto test: macnativeeventsRichard Moe Gustavsen2010-03-247-0/+1316
This test will utilize the new API I wrote back in the days for posting/listening for native mouse and keyboard events on mac. By being able to create low-level native events that you can post to the window server, we can write tests that not only test the widgets layer of Qt, but also the platform dependent code that translates native events into Qt events. Reviewed-by: msorvig