From d335b1c4adae82d1f86bcb1d08e8fa4753e10bff Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sat, 27 May 2017 11:20:05 -0700 Subject: [PATCH] Add main window storyboard. --- Evergreen.xcodeproj/project.pbxproj | 16 +- Evergreen/Base.lproj/MainWindow.storyboard | 564 ++++++++++++++++++ .../MainWindow/MainWindowController.swift | 4 +- 3 files changed, 580 insertions(+), 4 deletions(-) create mode 100644 Evergreen/Base.lproj/MainWindow.storyboard diff --git a/Evergreen.xcodeproj/project.pbxproj b/Evergreen.xcodeproj/project.pbxproj index 1439b23ec..b90fdd015 100644 --- a/Evergreen.xcodeproj/project.pbxproj +++ b/Evergreen.xcodeproj/project.pbxproj @@ -57,6 +57,7 @@ 849A97A91ED9F9AA007D329B /* AddFeedSheet.xib in Resources */ = {isa = PBXBuildFile; fileRef = 849A97A71ED9F9AA007D329B /* AddFeedSheet.xib */; }; 849A97AC1ED9F9BC007D329B /* AddFolderSheet.xib in Resources */ = {isa = PBXBuildFile; fileRef = 849A97AA1ED9F9BC007D329B /* AddFolderSheet.xib */; }; 849A97AF1ED9FA08007D329B /* FeedList.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 849A97AD1ED9FA08007D329B /* FeedList.storyboard */; }; + 849A97B21ED9FA69007D329B /* MainWindow.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 849A97B01ED9FA69007D329B /* MainWindow.storyboard */; }; 849C64641ED37A5D003D8FC0 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 849C64631ED37A5D003D8FC0 /* AppDelegate.swift */; }; 849C64661ED37A5D003D8FC0 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 849C64651ED37A5D003D8FC0 /* ViewController.swift */; }; 849C64681ED37A5D003D8FC0 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 849C64671ED37A5D003D8FC0 /* Assets.xcassets */; }; @@ -393,6 +394,7 @@ 849A97A81ED9F9AA007D329B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Evergreen/Base.lproj/AddFeedSheet.xib; sourceTree = SOURCE_ROOT; }; 849A97AB1ED9F9BC007D329B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Evergreen/Base.lproj/AddFolderSheet.xib; sourceTree = SOURCE_ROOT; }; 849A97AE1ED9FA08007D329B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Evergreen/Base.lproj/FeedList.storyboard; sourceTree = SOURCE_ROOT; }; + 849A97B11ED9FA69007D329B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Evergreen/Base.lproj/MainWindow.storyboard; sourceTree = SOURCE_ROOT; }; 849C64601ED37A5D003D8FC0 /* Evergreen.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Evergreen.app; sourceTree = BUILT_PRODUCTS_DIR; }; 849C64631ED37A5D003D8FC0 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = Evergreen/AppDelegate.swift; sourceTree = ""; }; 849C64651ED37A5D003D8FC0 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = ViewController.swift; path = Evergreen/ViewController.swift; sourceTree = ""; }; @@ -453,7 +455,7 @@ 842E45E11ED8C681000A8B52 /* MainWindow */ = { isa = PBXGroup; children = ( - 849C64691ED37A5D003D8FC0 /* Main.storyboard */, + 849A97B01ED9FA69007D329B /* MainWindow.storyboard */, 842E45E21ED8C681000A8B52 /* KeyboardDelegateProtocol.swift */, 849A975D1ED9EB72007D329B /* MainWindowController.swift */, 842E45E41ED8C6B7000A8B52 /* MainWindowSplitView.swift */, @@ -628,6 +630,7 @@ children = ( 842E45E61ED8C747000A8B52 /* DB5.plist */, 849C64671ED37A5D003D8FC0 /* Assets.xcassets */, + 849C64691ED37A5D003D8FC0 /* Main.storyboard */, 842E45CD1ED8C308000A8B52 /* AppConstants.swift */, 849C64631ED37A5D003D8FC0 /* AppDelegate.swift */, 849C64651ED37A5D003D8FC0 /* ViewController.swift */, @@ -1060,6 +1063,7 @@ 849A97AF1ED9FA08007D329B /* FeedList.storyboard in Resources */, 849C64681ED37A5D003D8FC0 /* Assets.xcassets in Resources */, 849C646B1ED37A5D003D8FC0 /* Main.storyboard in Resources */, + 849A97B21ED9FA69007D329B /* MainWindow.storyboard in Resources */, 849A979C1ED9EFEB007D329B /* styleSheet.css in Resources */, 849A97A61ED9F94D007D329B /* Preferences.storyboard in Resources */, ); @@ -1230,13 +1234,21 @@ name = FeedList.storyboard; sourceTree = ""; }; + 849A97B01ED9FA69007D329B /* MainWindow.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 849A97B11ED9FA69007D329B /* Base */, + ); + name = MainWindow.storyboard; + sourceTree = ""; + }; 849C64691ED37A5D003D8FC0 /* Main.storyboard */ = { isa = PBXVariantGroup; children = ( 849C646A1ED37A5D003D8FC0 /* Base */, ); name = Main.storyboard; - path = ..; + path = Evergreen; sourceTree = ""; }; /* End PBXVariantGroup section */ diff --git a/Evergreen/Base.lproj/MainWindow.storyboard b/Evergreen/Base.lproj/MainWindow.storyboard new file mode 100644 index 000000000..7e0f9d112 --- /dev/null +++ b/Evergreen/Base.lproj/MainWindow.storyboard @@ -0,0 +1,564 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Evergreen/MainWindow/MainWindowController.swift b/Evergreen/MainWindow/MainWindowController.swift index 159301803..57ddc50cf 100644 --- a/Evergreen/MainWindow/MainWindowController.swift +++ b/Evergreen/MainWindow/MainWindowController.swift @@ -19,8 +19,8 @@ class MainWindowController : NSWindowController, NSUserInterfaceValidations { super.windowDidLoad() -// window?.titleVisibility = .hidden - window?.setFrameUsingName(kWindowFrameKey, force: true) + window?.titleVisibility = .hidden + window?.setFrameUsingName(kWindowFrameKey, force: true) detailSplitViewItem?.minimumThickness = 384