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.
397 lines
16 KiB
397 lines
16 KiB
// Copyright © 2015 Abhishek Banthia |
|
|
|
import Cocoa |
|
|
|
class AppearanceViewController: ParentViewController { |
|
@IBOutlet var timeFormat: NSSegmentedControl! |
|
@IBOutlet var theme: NSSegmentedControl! |
|
@IBOutlet var informationLabel: NSTextField! |
|
@IBOutlet var sliderDayRangePopup: NSPopUpButton! |
|
@IBOutlet var visualEffectView: NSVisualEffectView! |
|
@IBOutlet var menubarMode: NSSegmentedControl! |
|
@IBOutlet var includeDayInMenubarControl: NSSegmentedControl! |
|
@IBOutlet var includeDateInMenubarControl: NSSegmentedControl! |
|
@IBOutlet var includePlaceNameControl: NSSegmentedControl! |
|
@IBOutlet var appearanceTab: NSTabView! |
|
@IBOutlet var appDisplayControl: NSSegmentedControl! |
|
|
|
private var themeDidChangeNotification: NSObjectProtocol? |
|
|
|
private var previewTimezones: [TimezoneData] = [] |
|
|
|
override func viewDidLoad() { |
|
super.viewDidLoad() |
|
|
|
informationLabel.stringValue = "Favourite a timezone to enable menubar display options.".localized() |
|
informationLabel.textColor = NSColor.secondaryLabelColor |
|
|
|
informationLabel.setAccessibilityIdentifier("InformationLabel") |
|
|
|
sliderDayRangePopup.removeAllItems() |
|
sliderDayRangePopup.addItems(withTitles: [ |
|
"1 day", |
|
"2 days", |
|
"3 days", |
|
"4 days", |
|
"5 days", |
|
"6 days", |
|
"7 days", |
|
]) |
|
|
|
setup() |
|
|
|
themeDidChangeNotification = NotificationCenter.default.addObserver(forName: .themeDidChangeNotification, object: nil, queue: OperationQueue.main) { _ in |
|
self.setup() |
|
self.animateBackgroundColorChange() |
|
self.view.needsDisplay = true // Let's make the color change permanent. |
|
self.previewPanelTableView.reloadData() |
|
} |
|
|
|
previewTimezones = [TimezoneData(with: ["customLabel": "San Francisco", |
|
"formattedAddress": "San Francisco", |
|
"place_id": "TestIdentifier", |
|
"timezoneID": "America/Los_Angeles", |
|
"nextUpdate": "", |
|
"note": "Your individual note about this location goes here!", |
|
"latitude": "37.7749295", |
|
"longitude": "-122.4194155"])] |
|
|
|
// Ensure the more beautiful tab is selected |
|
appearanceTab.selectTabViewItem(at: 0) |
|
|
|
// Setup Preview Pane |
|
previewPanelTableView.dataSource = self |
|
previewPanelTableView.delegate = self |
|
previewPanelTableView.reloadData() |
|
previewPanelTableView.selectionHighlightStyle = .none |
|
previewPanelTableView.enclosingScrollView?.hasVerticalScroller = false |
|
previewPanelTableView.enclosingScrollView?.wantsLayer = true |
|
previewPanelTableView.enclosingScrollView?.layer?.cornerRadius = 12 |
|
} |
|
|
|
deinit { |
|
if let themeDidChangeNotif = themeDidChangeNotification { |
|
NotificationCenter.default.removeObserver(themeDidChangeNotif) |
|
} |
|
} |
|
|
|
private func animateBackgroundColorChange() { |
|
let colorAnimation = CABasicAnimation(keyPath: "backgroundColor") |
|
colorAnimation.duration = 0.25 |
|
colorAnimation.fromValue = previousBackgroundColor.cgColor |
|
colorAnimation.toValue = Themer.shared().mainBackgroundColor().cgColor |
|
view.layer?.add(colorAnimation, forKey: "backgroundColor") |
|
} |
|
|
|
override func viewWillAppear() { |
|
super.viewWillAppear() |
|
|
|
if let menubarFavourites = DataStore.shared().menubarTimezones() { |
|
visualEffectView.isHidden = menubarFavourites.isEmpty ? false : true |
|
informationLabel.isHidden = menubarFavourites.isEmpty ? false : true |
|
} |
|
|
|
if let selectedIndex = DataStore.shared().retrieve(key: CLFutureSliderRange) as? NSNumber { |
|
sliderDayRangePopup.selectItem(at: selectedIndex.intValue) |
|
} |
|
|
|
if #available(macOS 10.14, *) { |
|
theme.setEnabled(true, forSegment: 2) |
|
} else { |
|
theme.setEnabled(false, forSegment: 2) |
|
} |
|
|
|
let shouldDisplayCompact = DataStore.shared().shouldDisplay(.menubarCompactMode) |
|
menubarMode.setSelected(true, forSegment: shouldDisplayCompact ? 0 : 1) |
|
|
|
// True is Menubar Only and False is Menubar + Dock |
|
let appDisplayOptions = DataStore.shared().shouldDisplay(.appDisplayOptions) |
|
appDisplayControl.setSelected(true, forSegment: appDisplayOptions ? 0 : 1) |
|
} |
|
|
|
@IBOutlet var timeFormatLabel: NSTextField! |
|
@IBOutlet var panelTheme: NSTextField! |
|
@IBOutlet var dayDisplayOptionsLabel: NSTextField! |
|
@IBOutlet var showSliderLabel: NSTextField! |
|
@IBOutlet var showSunriseLabel: NSTextField! |
|
@IBOutlet var showSecondsLabel: NSTextField! |
|
@IBOutlet var largerTextLabel: NSTextField! |
|
@IBOutlet var futureSliderRangeLabel: NSTextField! |
|
@IBOutlet var includeDateLabel: NSTextField! |
|
@IBOutlet var includeDayLabel: NSTextField! |
|
@IBOutlet var includePlaceLabel: NSTextField! |
|
@IBOutlet var appDisplayLabel: NSTextField! |
|
@IBOutlet var menubarModeLabel: NSTextField! |
|
@IBOutlet var previewLabel: NSTextField! |
|
@IBOutlet var miscelleaneousLabel: NSTextField! |
|
|
|
// Panel Preview |
|
@IBOutlet var previewPanelTableView: NSTableView! |
|
|
|
private func setup() { |
|
timeFormatLabel.stringValue = "Time Format".localized() |
|
panelTheme.stringValue = "Panel Theme".localized() |
|
dayDisplayOptionsLabel.stringValue = "Day Display Options".localized() |
|
showSliderLabel.stringValue = "Show Future Slider".localized() |
|
showSunriseLabel.stringValue = "Show Sunrise/Sunset".localized() |
|
showSecondsLabel.stringValue = "Display the time in seconds".localized() |
|
largerTextLabel.stringValue = "Larger Text".localized() |
|
futureSliderRangeLabel.stringValue = "Future Slider Range".localized() |
|
includeDateLabel.stringValue = "Include Date".localized() |
|
includeDayLabel.stringValue = "Include Day".localized() |
|
includePlaceLabel.stringValue = "Include Place Name".localized() |
|
menubarModeLabel.stringValue = "Menubar Mode".localized() |
|
previewLabel.stringValue = "Preview".localized() |
|
miscelleaneousLabel.stringValue = "Miscellaneous".localized() |
|
|
|
[timeFormatLabel, panelTheme, |
|
dayDisplayOptionsLabel, showSliderLabel, showSecondsLabel, |
|
showSunriseLabel, largerTextLabel, futureSliderRangeLabel, |
|
includeDayLabel, includeDateLabel, includePlaceLabel, appDisplayLabel, menubarModeLabel, |
|
previewLabel, miscelleaneousLabel].forEach { |
|
$0?.textColor = Themer.shared().mainTextColor() |
|
} |
|
} |
|
|
|
@IBAction func timeFormatSelectionChanged(_ sender: NSSegmentedControl) { |
|
let selection = NSNumber(value: sender.selectedSegment) |
|
|
|
UserDefaults.standard.set(selection, forKey: CL24hourFormatSelectedKey) |
|
|
|
Logger.log(object: ["Time Format": sender.selectedSegment == 0 ? "12 Hour Format" : "24 Hour Format"], for: "Time Format Selected") |
|
|
|
refresh(panel: true, floating: true) |
|
|
|
updateStatusItem() |
|
|
|
previewPanelTableView.reloadData() |
|
} |
|
|
|
private var previousBackgroundColor: NSColor = NSColor.white |
|
|
|
@IBAction func themeChanged(_ sender: NSSegmentedControl) { |
|
previousBackgroundColor = Themer.shared().mainBackgroundColor() |
|
|
|
Themer.shared().set(theme: sender.selectedSegment) |
|
|
|
refresh(panel: false, floating: true) |
|
|
|
guard let panelController = PanelController.panel() else { |
|
return |
|
} |
|
|
|
panelController.refreshBackgroundView() |
|
|
|
panelController.shutdownButton.image = Themer.shared().shutdownImage() |
|
panelController.preferencesButton.image = Themer.shared().preferenceImage() |
|
panelController.pinButton.image = Themer.shared().pinImage() |
|
panelController.sharingButton.image = Themer.shared().sharingImage() |
|
|
|
let defaultTimezones = panelController.defaultPreferences |
|
if defaultTimezones.isEmpty { |
|
panelController.updatePanelColor() |
|
} |
|
|
|
panelController.updateTableContent() |
|
|
|
switch sender.selectedSegment { |
|
case 0: |
|
Logger.log(object: ["themeSelected": "Light"], for: "Theme") |
|
case 1: |
|
Logger.log(object: ["themeSelected": "Dark"], for: "Theme") |
|
case 2: |
|
Logger.log(object: ["themeSelected": "System"], for: "Theme") |
|
default: |
|
Logger.log(object: ["themeSelected": "System"], for: "Theme") |
|
} |
|
} |
|
|
|
private func loggingStringForRelativeDisplaySelection(_ selection: Int) -> String { |
|
switch selection { |
|
case 0: |
|
return "Relative Day" |
|
case 1: |
|
return "Actual Day" |
|
case 2: |
|
return "Actual Date Day" |
|
case 3: |
|
return "Hide" |
|
default: |
|
return "Unexpected Selection" |
|
} |
|
} |
|
|
|
@IBAction func changeRelativeDayDisplay(_ sender: NSSegmentedControl) { |
|
Logger.log(object: ["dayPreference": loggingStringForRelativeDisplaySelection(sender.selectedSegment)], for: "RelativeDate") |
|
|
|
refresh(panel: true, floating: true) |
|
|
|
previewPanelTableView.reloadData() |
|
} |
|
|
|
@IBAction func showFutureSlider(_: Any) { |
|
refresh(panel: false, floating: true) |
|
} |
|
|
|
@IBAction func showSunriseSunset(_ sender: NSSegmentedControl) { |
|
Logger.log(object: ["Is It Displayed": sender.selectedSegment == 0 ? "YES" : "NO"], for: "Sunrise Sunset") |
|
previewPanelTableView.reloadData() |
|
} |
|
|
|
@IBAction func displayTimeWithSeconds(_ sender: NSSegmentedControl) { |
|
Logger.log(object: ["Displayed": sender.selectedSegment == 0 ? "YES" : "NO"], for: "Display Time With Seconds") |
|
|
|
if DataStore.shared().shouldDisplay(.seconds) { |
|
guard let panelController = PanelController.panel() else { return } |
|
panelController.pauseTimer() |
|
} |
|
|
|
updateStatusItem() |
|
previewPanelTableView.reloadData() |
|
} |
|
|
|
@IBAction func changeAppDisplayOptions(_ sender: NSSegmentedControl) { |
|
if sender.selectedSegment == 0 { |
|
Logger.log(object: ["Selection": "Menubar"], for: "Dock Mode") |
|
NSApp.setActivationPolicy(.accessory) |
|
} else { |
|
Logger.log(object: ["Selection": "Menubar and Dock"], for: "Dock Mode") |
|
NSApp.setActivationPolicy(.regular) |
|
} |
|
} |
|
|
|
private func refresh(panel: Bool, floating: Bool) { |
|
OperationQueue.main.addOperation { |
|
if panel, DataStore.shared().shouldDisplay(ViewType.showAppInForeground) == false { |
|
guard let panelController = PanelController.panel() else { return } |
|
|
|
let futureSliderBounds = panelController.futureSlider.bounds |
|
panelController.futureSlider.setNeedsDisplay(futureSliderBounds) |
|
|
|
panelController.updateDefaultPreferences() |
|
|
|
panelController.updateTableContent() |
|
panelController.setupMenubarTimer() |
|
} |
|
|
|
if floating, DataStore.shared().shouldDisplay(ViewType.showAppInForeground) { |
|
if DataStore.shared().shouldDisplay(ViewType.showAppInForeground) { |
|
let floatingWindow = FloatingWindowController.shared() |
|
floatingWindow.updateTableContent() |
|
floatingWindow.futureSlider.setNeedsDisplay(floatingWindow.futureSlider.bounds) |
|
|
|
if !panel { |
|
floatingWindow.updatePanelColor() |
|
} |
|
} |
|
} |
|
} |
|
} |
|
|
|
@IBAction func displayDayInMenubarAction(_: Any) { |
|
DataStore.shared().updateDayPreference() |
|
updateStatusItem() |
|
} |
|
|
|
@IBAction func displayDateInMenubarAction(_: Any) { |
|
DataStore.shared().updateDateInPreference() |
|
updateStatusItem() |
|
} |
|
|
|
@IBAction func displayPlaceInMenubarAction(_: Any) { |
|
updateStatusItem() |
|
} |
|
|
|
private func updateStatusItem() { |
|
guard let statusItem = (NSApplication.shared.delegate as? AppDelegate)?.statusItemForPanel() else { |
|
return |
|
} |
|
|
|
if DataStore.shared().shouldDisplay(.menubarCompactMode) { |
|
statusItem.setupStatusItem() |
|
} else { |
|
statusItem.performTimerWork() |
|
} |
|
} |
|
|
|
@IBAction func menubarModeChanged(_ sender: NSSegmentedControl) { |
|
guard let statusItem = (NSApplication.shared.delegate as? AppDelegate)?.statusItemForPanel() else { |
|
return |
|
} |
|
|
|
statusItem.setupStatusItem() |
|
|
|
if sender.selectedSegment == 0 { |
|
Logger.log(object: ["Context": "In Appearance View"], for: "Switched to Compact Mode") |
|
} else { |
|
Logger.log(object: ["Context": "In Appearance View"], for: "Switched to Standard Mode") |
|
} |
|
} |
|
|
|
@IBAction func fontSliderChanged(_: Any) { |
|
previewPanelTableView.reloadData() |
|
} |
|
|
|
@IBAction func toggleDSTTransitionOption(_: Any) { |
|
previewPanelTableView.reloadData() |
|
} |
|
} |
|
|
|
extension AppearanceViewController: NSTableViewDataSource, NSTableViewDelegate { |
|
func numberOfRows(in _: NSTableView) -> Int { |
|
return 1 |
|
} |
|
|
|
func tableView(_ tableView: NSTableView, viewFor _: NSTableColumn?, row: Int) -> NSView? { |
|
guard !previewTimezones.isEmpty else { |
|
return nil |
|
} |
|
|
|
guard let cellView = tableView.makeView(withIdentifier: NSUserInterfaceItemIdentifier(rawValue: "previewTimezoneCell"), owner: self) as? TimezoneCellView else { |
|
assertionFailure("Unable to create tableviewcell") |
|
return NSView() |
|
} |
|
|
|
let currentModel = previewTimezones[row] |
|
let operation = TimezoneDataOperations(with: currentModel) |
|
|
|
cellView.sunriseSetTime.stringValue = operation.formattedSunriseTime(with: 0) |
|
cellView.sunriseImage.image = currentModel.isSunriseOrSunset ? Themer.shared().sunriseImage() : Themer.shared().sunsetImage() |
|
cellView.relativeDate.stringValue = operation.date(with: 0, displayType: .panelDisplay) |
|
cellView.rowNumber = row |
|
cellView.customName.stringValue = currentModel.formattedTimezoneLabel() |
|
cellView.time.stringValue = operation.time(with: 0) |
|
if DataStore.shared().shouldDisplay(.dstTransitionInfo) { |
|
cellView.noteLabel.stringValue = "Heads up! DST Transition will occur in 3 days." |
|
} else if let note = currentModel.note, !note.isEmpty { |
|
cellView.noteLabel.stringValue = note |
|
} else { |
|
cellView.noteLabel.stringValue = CLEmptyString |
|
} |
|
cellView.currentLocationIndicator.isHidden = !currentModel.isSystemTimezone |
|
cellView.time.setAccessibilityIdentifier("ActualTime") |
|
cellView.layout(with: currentModel) |
|
|
|
cellView.setAccessibilityIdentifier(currentModel.formattedTimezoneLabel()) |
|
cellView.setAccessibilityLabel(currentModel.formattedTimezoneLabel()) |
|
|
|
return cellView |
|
} |
|
|
|
func tableView(_: NSTableView, heightOfRow row: Int) -> CGFloat { |
|
if let userFontSize = DataStore.shared().retrieve(key: CLUserFontSizePreference) as? NSNumber, previewTimezones.count > row { |
|
let model = previewTimezones[row] |
|
|
|
let rowHeight: Int = userFontSize == 4 ? 60 : 65 |
|
if let note = model.note, !note.isEmpty { |
|
return CGFloat(rowHeight + userFontSize.intValue + 25) |
|
} else if DataStore.shared().shouldDisplay(.dstTransitionInfo) { |
|
return CGFloat(rowHeight + userFontSize.intValue + 25) |
|
} |
|
|
|
return CGFloat(rowHeight + (userFontSize.intValue * 2)) |
|
} |
|
|
|
return 0 |
|
} |
|
}
|
|
|