aboutsummaryrefslogtreecommitdiffstats
path: root/ui/macosx/macos_compat.h
diff options
context:
space:
mode:
authorRoland Knall <rknall@gmail.com>2018-11-01 12:09:02 +0100
committerRoland Knall <rknall@gmail.com>2018-11-01 15:02:36 +0000
commit5769a72963210da88551fbd7c553c1e2d82a7a0b (patch)
treed3b7e6eb709d5dab0f5136128b9123fb2fbfbda5 /ui/macosx/macos_compat.h
parent7306e2b8ee1231f2b889547dc75be54463c14d8d (diff)
macOs: Fix build fix for tab view
Fix the build for displaying the tabs wrongly on mac Change-Id: I58265b7cf9a4758885ef1add13417c42a467be9d Reviewed-on: https://code.wireshark.org/review/30462 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
Diffstat (limited to 'ui/macosx/macos_compat.h')
-rw-r--r--ui/macosx/macos_compat.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/ui/macosx/macos_compat.h b/ui/macosx/macos_compat.h
new file mode 100644
index 0000000000..515bb9eae6
--- /dev/null
+++ b/ui/macosx/macos_compat.h
@@ -0,0 +1,36 @@
+/* cocoa_bridge.h
+ *
+ * This code was taken directly from:
+ * https://forum.qt.io/topic/82609/remove-native-mac-menu-items-such-as-show-tab-bar
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef MACOS_COMPAT_H
+#define MACOS_COMPAT_H
+
+#import <Cocoa/Cocoa.h>
+
+#if !defined(MAC_OS_X_VERSION_10_9)
+# define MAC_OS_X_VERSION_10_9 1090
+#endif
+
+#if !defined(MAC_OS_X_VERSION_10_10)
+# define MAC_OS_X_VERSION_10_10 101000
+#endif
+
+#if !defined(MAC_OS_X_VERSION_10_12)
+# define MAC_OS_X_VERSION_10_12 101200
+#endif
+
+#if (MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_12)
+@interface NSWindow (macOS10_12_SDK)
++ (void)setAllowsAutomaticWindowTabbing:(BOOL)allow;
+@end
+#endif
+
+#endif // MACOS_COMPAT_H