A small menubar app that allows you to switch between R versions quickly (if you have multiple versions of R framework installed). https://rud.is/rswitch
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
1.6 KiB

5 years ago
//
// plotPopupViewController.swift
// wktest
//
// Created by hrbrmstr on 9/9/19.
// Copyright © 2019 Bob Rudis. All rights reserved.
//
import Cocoa
import WebKit
class plotPopupViewController: NSViewController {
var webView: WKWebView!
var urlPath: String = ""
open override func viewDidLoad() {
super.viewDidLoad()
}
func setupWebView(configuration: WKWebViewConfiguration) {
webView = WKWebView(frame: view.bounds, configuration: configuration)
webView.autoresizingMask = [.width, .height]
webView.uiDelegate = self
webView.navigationDelegate = self
view.addSubview(webView)
}
4 years ago
5 years ago
func loadWebView(urlIn: String) {
urlPath = urlIn
4 years ago
5 years ago
if let url = URL(string: urlPath) {
5 years ago
let urlRequest = URLRequest(url: url)
if (url.path.starts(with: "/export")) {
} else {
webView.load(urlRequest)
}
5 years ago
}
}
override func viewDidAppear() {
super.viewDidAppear()
}
}
extension plotPopupViewController: WKUIDelegate {
func webViewDidClose(_ webView: WKWebView) {
self.view.window?.close()
}
4 years ago
func webView(_ webView: WKWebView, runOpenPanelWith parameters: WKOpenPanelParameters, initiatedByFrame frame: WKFrameInfo, completionHandler: @escaping ([URL]?) -> Void) {
}
5 years ago
}
extension plotPopupViewController: WKNavigationDelegate {
4 years ago
4 years ago
open func webView(_ webView: WKWebView, didStartProvisionalNavigation navigation: WKNavigation!) {}
4 years ago
4 years ago
func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) { }
4 years ago
5 years ago
}
4 years ago