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.

96 lines
3.5 KiB

//
// CLRatingCellView.m
// Clocker
//
// Created by Abhishek Banthia on 12/11/15.
//
//
#import "CLRatingCellView.h"
#import "iRate.h"
#import <QuartzCore/QuartzCore.h>
#import "PanelController.h"
@implementation CLRatingCellView
- (void)drawRect:(NSRect)dirtyRect {
[super drawRect:dirtyRect];
// Drawing code here.
}
- (IBAction)actionOnNegativeFeedback:(id)sender
{
NSButton *leftButton = (NSButton *)sender;
9 years ago
if ([leftButton.title isEqualToString:NSLocalizedString(@"Not Really", nil)]) {
[self setAnimatedStringValue:NSLocalizedString(@"AskForFeedbackMessage", nil) andTextField:self.leftField];
}
else
{
//Make the row disappear and call remind later
PanelController *panelRef = [[[NSApplication sharedApplication] mainWindow] windowController];
panelRef.showReviewCell = NO;
[panelRef updateDefaultPreferences];
[panelRef closePanel];
[[iRate sharedInstance] remindLater];
}
}
- (IBAction)actionOnPositiveFeedback:(id)sender
{
NSButton *rightButton = (NSButton *)sender;
9 years ago
if ([rightButton.title isEqualToString:NSLocalizedString(@"Yes!", nil)]) {
[self setAnimatedStringValue:NSLocalizedString(@"AskForRatingMessage", nil) andTextField:self.leftField];
}
else
{
//Make the row disappear and call rate
[[iRate sharedInstance] rate];
PanelController *panelRef = [[[NSApplication sharedApplication] mainWindow] windowController];
panelRef.showReviewCell = NO;
[panelRef updateDefaultPreferences];
}
}
- (void) setAnimatedStringValue:(NSString *)aString andTextField:(NSTextField *)textfield
{
if ([[textfield stringValue] isEqual: aString])
{
return;
}
[NSAnimationContext runAnimationGroup:^(NSAnimationContext *context) {
[context setDuration: 1.0];
[context setTimingFunction: [CAMediaTimingFunction functionWithName: kCAMediaTimingFunctionEaseOut]];
[self.imageView.animator setAlphaValue:0.0];
[self.leftButton.animator setAlphaValue:0.0];
[self.rightButton.animator setAlphaValue:0.0];
[textfield.animator setAlphaValue: 0.0];
}
completionHandler:^{
[textfield setStringValue: aString];
[NSAnimationContext runAnimationGroup:^(NSAnimationContext *context) {
[context setDuration: 1.0];
[context setTimingFunction: [CAMediaTimingFunction functionWithName: kCAMediaTimingFunctionEaseIn]];
[self.imageView.animator setAlphaValue: 1.0];
[textfield.animator setAlphaValue: 1.0];
[self.leftButton.animator setAlphaValue:1.0];
[self.rightButton.animator setAlphaValue:1.0];
9 years ago
if ([self.leftButton.title isEqualToString:NSLocalizedString(@"Not Really", nil)]) {
[self.leftButton.animator setTitle:NSLocalizedString(@"NoSelected", nil)];
}
9 years ago
if ([self.rightButton.title isEqualToString:NSLocalizedString(@"Yes!", nil)]) {
[self.rightButton.animator setTitle:NSLocalizedString(@"YesSelected", nil)];
}
} completionHandler: ^{
}];
}];
}
@end