summaryrefslogtreecommitdiffstats
path: root/tests/auto/qfontdialog/tst_qfontdialog_mac_helpers.mm
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qfontdialog/tst_qfontdialog_mac_helpers.mm')
-rw-r--r--tests/auto/qfontdialog/tst_qfontdialog_mac_helpers.mm26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/auto/qfontdialog/tst_qfontdialog_mac_helpers.mm b/tests/auto/qfontdialog/tst_qfontdialog_mac_helpers.mm
new file mode 100644
index 0000000..fbd6817
--- /dev/null
+++ b/tests/auto/qfontdialog/tst_qfontdialog_mac_helpers.mm
@@ -0,0 +1,26 @@
+#include <private/qt_mac_p.h>
+#include <AppKit/AppKit.h>
+
+void click_cocoa_button()
+{
+ QMacCocoaAutoReleasePool pool;
+ NSArray *windows = [NSApp windows];
+ for (NSWindow *window in windows) {
+ // This is NOT how one should do RTTI, but since I don't want to leak the class too much...
+ if ([[window delegate] respondsToSelector:@selector(qtFont)]) {
+ NSArray *subviews = [[window contentView] subviews];
+ for (NSView *view in subviews) {
+ if ([view isKindOfClass:[NSButton class]]
+ && [[static_cast<NSButton *>(view) title] isEqualTo:@"OK"]) {
+ [static_cast<NSButton *>(view) performClick:view];
+ [NSApp postEvent:[NSEvent otherEventWithType:NSApplicationDefined location:NSZeroPoint
+ modifierFlags:0 timestamp:0. windowNumber:0 context:0
+ subtype:SHRT_MAX data1:0 data2:0] atStart:NO];
+
+ break;
+ }
+ }
+ break;
+ }
+ }
+}