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.
64 lines
2.0 KiB
64 lines
2.0 KiB
9 years ago
|
//
|
||
|
// CLOnboardingWindowController.m
|
||
|
// Clocker
|
||
|
//
|
||
|
// Created by Abhishek Banthia on 1/19/16.
|
||
|
//
|
||
|
//
|
||
|
|
||
|
#import "CLOnboardingWindowController.h"
|
||
|
#import <QuartzCore/QuartzCore.h>
|
||
|
|
||
|
@interface CLOnboardingWindowController ()
|
||
|
|
||
|
@end
|
||
|
|
||
|
static CLOnboardingWindowController *sharedOnboardingWindow;
|
||
|
|
||
|
@implementation CLOnboardingWindowController
|
||
|
|
||
|
- (void)windowDidLoad {
|
||
|
[super windowDidLoad];
|
||
|
|
||
|
CALayer *viewLayer = [CALayer layer];
|
||
|
[viewLayer setBackgroundColor:CGColorCreateGenericRGB(255.0, 255.0, 255.0, 0.8)]; //RGB plus Alpha Channel
|
||
|
[self.window.contentView setWantsLayer:YES]; // view's backing store is using a Core Animation Layer
|
||
|
[self.window.contentView setLayer:viewLayer];
|
||
|
self.window.titlebarAppearsTransparent = YES;
|
||
|
|
||
|
self.window.backgroundColor = [NSColor whiteColor];
|
||
|
|
||
|
self.window.titleVisibility = NSWindowTitleHidden;
|
||
|
|
||
|
// Implement this method to handle any initialization after your window controller's window has been loaded from its nib file.
|
||
|
}
|
||
|
|
||
|
+ (instancetype)sharedWindow
|
||
|
{
|
||
|
if (sharedOnboardingWindow == nil)
|
||
|
{
|
||
|
/*Using a thread safe pattern*/
|
||
|
static dispatch_once_t onceToken;
|
||
|
dispatch_once(&onceToken, ^{
|
||
|
sharedOnboardingWindow = [[self alloc] initWithWindowNibName:@"CLOnboardingWindow"];
|
||
|
|
||
|
});
|
||
|
}
|
||
|
return sharedOnboardingWindow;
|
||
|
}
|
||
|
|
||
|
- (IBAction)continueButtonPressed:(id)sender
|
||
|
{
|
||
|
|
||
|
self.introViewController = [[CLIntroViewController alloc] initWithNibName:@"CLIntroView" bundle:nil];
|
||
|
[[self.window animator] setContentSize:self.introViewController.view.frame.size];
|
||
|
[[self.window animator] setContentView:self.introViewController.view];
|
||
|
|
||
|
CGFloat xPos = NSWidth([[self.window screen] frame])/2 - NSWidth([self.window frame])/2;
|
||
|
CGFloat yPos = NSHeight([[self.window screen] frame])/2 - NSHeight([self.window frame])/2;
|
||
|
[self.window setFrame:NSMakeRect(xPos, yPos, NSWidth([self.window frame]), NSHeight([self.window frame])) display:YES];
|
||
|
}
|
||
|
|
||
|
|
||
|
@end
|