summaryrefslogtreecommitdiff
path: root/platform/macos/app/MapDocument.h
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2016-06-13 14:47:13 -0700
committerMinh Nguyễn <mxn@1ec5.org>2016-06-18 14:58:07 -0700
commit061854990ffe495910a5f0dc7c6bb5d394f772e9 (patch)
treee0f4581369d44fb3c7501abaa8d624588e2ab3fc /platform/macos/app/MapDocument.h
parentd564302c6d376da123f01028124b1702b13ad1ef (diff)
downloadqtlocation-mapboxgl-061854990ffe495910a5f0dc7c6bb5d394f772e9.tar.gz
[macos] Renamed OS X SDK to macOS SDK
Also renamed as many references to OS X as possible to macOS in documentation. Cherry-picked from b9702ef41a4cfdd0ab3107cfe5cec16ba3a4c230.
Diffstat (limited to 'platform/macos/app/MapDocument.h')
-rw-r--r--platform/macos/app/MapDocument.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/platform/macos/app/MapDocument.h b/platform/macos/app/MapDocument.h
new file mode 100644
index 0000000000..86ad05e6e2
--- /dev/null
+++ b/platform/macos/app/MapDocument.h
@@ -0,0 +1,14 @@
+#import <Cocoa/Cocoa.h>
+
+@class MGLMapView;
+
+@interface MapDocument : NSDocument
+
+@property (weak) IBOutlet MGLMapView *mapView;
+
+- (IBAction)setStyle:(id)sender;
+- (IBAction)chooseCustomStyle:(id)sender;
+
+- (IBAction)reload:(id)sender;
+
+@end