After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 389 B After Width: | Height: | Size: 389 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 627 B |
@ -1,45 +0,0 @@
|
||||
//
|
||||
// PreferencesWindowController.h
|
||||
// Clocker
|
||||
//
|
||||
// Created by Abhishek Banthia on 11/4/15.
|
||||
// Copyright (c) 2015 Abhishek Banthia All rights reserved.
|
||||
//
|
||||
|
||||
// Copyright (c) 2015, Abhishek Banthia
|
||||
// All rights reserved.
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without modification,
|
||||
// are permitted provided that the following conditions are met:
|
||||
//
|
||||
// Redistributions of source code must retain the above copyright notice,
|
||||
// this list of conditions and the following disclaimer.
|
||||
//
|
||||
// Redistributions in binary form must reproduce the above copyright notice,
|
||||
// this list of conditions and the following disclaimer in the documentation and/or
|
||||
// other materials provided with the distribution.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
// IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
||||
// INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
||||
// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
#import <Cocoa/Cocoa.h> |
||||
|
||||
@class AvailableTimezonesPanel; |
||||
|
||||
@interface c : NSWindowController <NSCopying, NSTableViewDelegate, NSTableViewDataSource> |
||||
|
||||
@property (strong, nonatomic) NSMutableArray *timeZoneArray; |
||||
@property (strong, nonatomic) NSMutableArray *selectedTimeZones; |
||||
@property (strong, nonatomic) NSArray *filteredArray; |
||||
@property (atomic, assign) BOOL launchOnLogin; |
||||
|
||||
+ (instancetype)sharedPreferences; |
||||
|
||||
@end |
@ -1,456 +0,0 @@
|
||||
// |
||||
// PreferencesWindowController.m |
||||
// Clocker |
||||
// |
||||
// Created by Abhishek Banthia on 11/4/15. |
||||
// Copyright (c) 2015 Abhishek Banthia All rights reserved. |
||||
// |
||||
|
||||
// Copyright (c) 2015, Abhishek Banthia |
||||
// All rights reserved. |
||||
// |
||||
// Redistribution and use in source and binary forms, with or without modification, |
||||
// are permitted provided that the following conditions are met: |
||||
// |
||||
// Redistributions of source code must retain the above copyright notice, |
||||
// this list of conditions and the following disclaimer. |
||||
// |
||||
// Redistributions in binary form must reproduce the above copyright notice, |
||||
// this list of conditions and the following disclaimer in the documentation and/or |
||||
// other materials provided with the distribution. |
||||
// |
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
||||
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
||||
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
||||
// IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, |
||||
// INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
||||
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
||||
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
||||
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, |
||||
// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
|
||||
|
||||
#import "PreferencesWindowController.h" |
||||
#import "Panel.h" |
||||
#import "PanelController.h" |
||||
#import "ApplicationDelegate.h" |
||||
#import <QuartzCore/QuartzCore.h> |
||||
#import "CommonStrings.h" |
||||
|
||||
NSString *const CLPredicateKey = @"SELF CONTAINS[cd]%@"; |
||||
NSString *const CLPreferencesNibIdentifier = @"PreferencesWindow"; |
||||
NSString *const CLPreferencesTimezoneNameColumnIdentifier = @"timezoneName"; |
||||
NSString *const CLPreferencesAbbreviationColumnIdentifier = @"abbreviation"; |
||||
NSString *const CLPreferencesCustomLabelColumnIdentifier = @"label"; |
||||
NSString *const CLPreferencesAvailableTimezoneColumnIdentifier = @"availableTimezones"; |
||||
|
||||
@interface PreferencesWindowController () |
||||
|
||||
@property (weak) IBOutlet NSTableView *timezoneTableView; |
||||
@property (strong) IBOutlet Panel *timezonePanel; |
||||
@property (strong) IBOutlet NSView *customView; |
||||
|
||||
@property (weak) IBOutlet NSTableView *availableTimezoneTableView; |
||||
@property (weak) IBOutlet NSSearchField *searchField; |
||||
|
||||
@property (weak) IBOutlet NSButton *is24HourFormatSelected; |
||||
@property (weak) IBOutlet NSTextField *messageLabel; |
||||
|
||||
@end |
||||
|
||||
static PreferencesWindowController *sharedPreferences = nil; |
||||
|
||||
@implementation PreferencesWindowController |
||||
|
||||
- (void)windowDidLoad { |
||||
[super windowDidLoad]; |
||||
|
||||
CALayer *viewLayer = [CALayer layer]; |
||||
[viewLayer setBackgroundColor:CGColorCreateGenericRGB(255.0, 255.0, 255.0, 0.8)]; //RGB plus Alpha Channel |
||||
[self.customView setWantsLayer:YES]; // view's backing store is using a Core Animation Layer |
||||
[self.customView setLayer:viewLayer]; |
||||
|
||||
self.window.titleVisibility = NSWindowTitleHidden; |
||||
|
||||
NSMutableArray *defaultTimeZones = [[NSUserDefaults standardUserDefaults] objectForKey:CLDefaultPreferenceKey]; |
||||
|
||||
if (!self.timeZoneArray || !self.selectedTimeZones) |
||||
{ |
||||
self.timeZoneArray = [[NSMutableArray alloc] initWithArray:[NSTimeZone knownTimeZoneNames]]; |
||||
self.selectedTimeZones = [[NSMutableArray alloc] initWithArray:defaultTimeZones]; |
||||
self.filteredArray = [[NSArray alloc] init]; |
||||
} |
||||
|
||||
self.messageLabel.stringValue = CLEmptyString; |
||||
|
||||
[self.timezoneTableView reloadData]; |
||||
[self.availableTimezoneTableView reloadData]; |
||||
|
||||
//Register for drag and drop |
||||
[self.timezoneTableView registerForDraggedTypes: [NSArray arrayWithObject: CLDragSessionKey]]; |
||||
} |
||||
|
||||
-(id)copyWithZone:(NSZone *)zone |
||||
{ |
||||
id copy = [[[self class] alloc] initWithWindowNibName:CLPreferencesNibIdentifier]; |
||||
|
||||
if (copy) |
||||
{ |
||||
self.timeZoneArray = [[NSMutableArray alloc] initWithArray:[NSTimeZone knownTimeZoneNames]]; |
||||
} |
||||
|
||||
return copy; |
||||
} |
||||
|
||||
-(BOOL)acceptsFirstResponder |
||||
{ |
||||
return YES; |
||||
} |
||||
|
||||
+ (instancetype)sharedPreferences |
||||
{ |
||||
if (sharedPreferences == nil) |
||||
{ |
||||
/*Using a thread safe pattern*/ |
||||
static dispatch_once_t onceToken; |
||||
dispatch_once(&onceToken, ^{ |
||||
sharedPreferences = [[self alloc] initWithWindowNibName:CLPreferencesNibIdentifier]; |
||||
|
||||
}); |
||||
} |
||||
|
||||
return sharedPreferences; |
||||
} |
||||
|
||||
-(NSInteger)numberOfRowsInTableView:(NSTableView *)tableView |
||||
{ |
||||
if (tableView == self.timezoneTableView) { |
||||
return self.selectedTimeZones.count; |
||||
} |
||||
else |
||||
{ |
||||
if (self.searchField.stringValue.length > 0) { |
||||
return self.filteredArray.count; |
||||
} |
||||
return self.timeZoneArray.count; |
||||
} |
||||
|
||||
return 0; |
||||
} |
||||
|
||||
- (nullable id)tableView:(NSTableView *)tableView objectValueForTableColumn:(nullable NSTableColumn *)tableColumn row:(NSInteger)row |
||||
{ |
||||
if ([[tableColumn identifier] isEqualToString:CLPreferencesTimezoneNameColumnIdentifier]) |
||||
{ |
||||
return self.selectedTimeZones[row][CLTimezoneName]; |
||||
} |
||||
else if([[tableColumn identifier] isEqualToString:CLPreferencesAvailableTimezoneColumnIdentifier]) |
||||
{ |
||||
if (self.searchField.stringValue.length > 0) |
||||
{ |
||||
return self.filteredArray[row]; |
||||
} |
||||
|
||||
return self.timeZoneArray[row]; |
||||
} |
||||
else if([[tableColumn identifier] isEqualToString:CLPreferencesCustomLabelColumnIdentifier]) |
||||
{ |
||||
return self.selectedTimeZones[row][CLCustomLabel]; |
||||
} |
||||
if ([tableColumn.identifier isEqualToString:CLPreferencesAbbreviationColumnIdentifier]) |
||||
{ |
||||
if (self.searchField.stringValue.length > 0) |
||||
{ |
||||
return [NSTimeZone timeZoneWithName:self.filteredArray[row]].abbreviation; |
||||
} |
||||
|
||||
return [NSTimeZone timeZoneWithName:self.timeZoneArray[row]].abbreviation; |
||||
} |
||||
|
||||
return nil; |
||||
|
||||
} |
||||
|
||||
-(void)tableView:(NSTableView *)tableView setObjectValue:(id)object forTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row |
||||
{ |
||||
if ([object isKindOfClass:[NSString class]]) |
||||
{ |
||||
NSDictionary *timezoneDictionary = self.selectedTimeZones[row]; |
||||
NSDictionary *mutableTimeZoneDict = [timezoneDictionary mutableCopy]; |
||||
[mutableTimeZoneDict setValue:object forKey:CLCustomLabel]; |
||||
[self.selectedTimeZones replaceObjectAtIndex:row withObject:mutableTimeZoneDict]; |
||||
[[NSUserDefaults standardUserDefaults] setObject:self.selectedTimeZones forKey:CLDefaultPreferenceKey]; |
||||
|
||||
[self refreshMainTableview]; |
||||
} |
||||
} |
||||
|
||||
- (IBAction)addTimeZone:(id)sender |
||||
{ |
||||
[self.window beginSheet:self.timezonePanel completionHandler:^(NSModalResponse returnCode) { |
||||
}]; |
||||
} |
||||
|
||||
- (IBAction)addToFavorites:(id)sender |
||||
{ |
||||
if (self.availableTimezoneTableView.selectedRow == -1) |
||||
{ |
||||
self.messageLabel.stringValue = @"Please select a timezone!"; |
||||
[NSTimer scheduledTimerWithTimeInterval:5 target:self selector:@selector(clearLabel) userInfo:nil repeats:NO]; |
||||
return; |
||||
} |
||||
|
||||
NSString *selectedTimezone; |
||||
|
||||
if (self.selectedTimeZones.count > 10) |
||||
{ |
||||
self.messageLabel.stringValue = NSLocalizedString(@"MaximumTimezoneMessage", nil); |
||||
[NSTimer scheduledTimerWithTimeInterval:5 target:self selector:@selector(clearLabel) userInfo:nil repeats:NO]; |
||||
return; |
||||
} |
||||
|
||||
for (NSDictionary *timezoneDictionary in self.selectedTimeZones) |
||||
{ |
||||
NSString *name = timezoneDictionary[CLTimezoneName]; |
||||
|
||||
if (self.searchField.stringValue.length > 0) { |
||||
if ([name isEqualToString:self.filteredArray[self.availableTimezoneTableView.selectedRow]]) |
||||
{ |
||||
self.messageLabel.stringValue = NSLocalizedString(@"DuplicateTimezoneMessage", nil); |
||||
[NSTimer scheduledTimerWithTimeInterval:5 target:self selector:@selector(clearLabel) userInfo:nil repeats:NO]; |
||||
return; |
||||
} |
||||
} |
||||
else if ([name isEqualToString:self.timeZoneArray[self.availableTimezoneTableView.selectedRow]]) |
||||
{ |
||||
self.messageLabel.stringValue = NSLocalizedString(@"DuplicateTimezoneMessage", nil); |
||||
[NSTimer scheduledTimerWithTimeInterval:5 target:self selector:@selector(clearLabel) userInfo:nil repeats:NO]; |
||||
return; |
||||
} |
||||
} |
||||
|
||||
|
||||
selectedTimezone = self.searchField.stringValue.length > 0 ? |
||||
self.filteredArray[self.availableTimezoneTableView.selectedRow] : |
||||
self.timeZoneArray[self.availableTimezoneTableView.selectedRow]; |
||||
|
||||
NSDictionary *newTimezoneToAdd = @{CLTimezoneName : selectedTimezone, |
||||
CLCustomLabel : CLEmptyString}; |
||||
|
||||
[self.selectedTimeZones addObject:newTimezoneToAdd]; |
||||
|
||||
NSArray *defaultTimeZones = [[NSUserDefaults standardUserDefaults] objectForKey:CLDefaultPreferenceKey]; |
||||
NSMutableArray *newDefaults; |
||||
|
||||
if (defaultTimeZones == nil) |
||||
{ |
||||
defaultTimeZones = [[NSMutableArray alloc] init]; |
||||
} |
||||
|
||||
newDefaults = [[NSMutableArray alloc] initWithArray:defaultTimeZones]; |
||||
|
||||
[newDefaults addObject:newTimezoneToAdd]; |
||||
|
||||
[[NSUserDefaults standardUserDefaults] setObject:newDefaults forKey:CLDefaultPreferenceKey]; |
||||
|
||||
[self.timezoneTableView reloadData]; |
||||
|
||||
[self refreshMainTableview]; |
||||
|
||||
[self.timezonePanel close]; |
||||
} |
||||
|
||||
- (void)clearLabel |
||||
{ |
||||
self.messageLabel.stringValue = CLEmptyString; |
||||
} |
||||
|
||||
- (IBAction)closePanel:(id)sender |
||||
{ |
||||
[self.timezonePanel close]; |
||||
} |
||||
|
||||
- (IBAction)removeFromFavourites:(id)sender |
||||
{ |
||||
|
||||
if ([self.timezoneTableView numberOfRows] == 1) { |
||||
|
||||
return; |
||||
} |
||||
|
||||
NSMutableArray *itemsToRemove = [NSMutableArray array]; |
||||
|
||||
if (self.timezoneTableView.selectedRow == -1) |
||||
{ |
||||
return; |
||||
} |
||||
|
||||
[self.timezoneTableView.selectedRowIndexes enumerateIndexesUsingBlock:^(NSUInteger idx, BOOL * _Nonnull stop) { |
||||
|
||||
[itemsToRemove addObject:self.selectedTimeZones[idx]]; |
||||
|
||||
}]; |
||||
|
||||
[self.selectedTimeZones removeObjectsInArray:itemsToRemove]; |
||||
|
||||
NSMutableArray *newDefaults = [[NSMutableArray alloc] initWithArray:self.selectedTimeZones]; |
||||
|
||||
[[NSUserDefaults standardUserDefaults] setObject:newDefaults forKey:CLDefaultPreferenceKey]; |
||||
|
||||
[self.timezoneTableView reloadData]; |
||||
|
||||
[self refreshMainTableview]; |
||||
} |
||||
|
||||
-(void)keyDown:(NSEvent *)theEvent |
||||
{ |
||||
[super keyDown:theEvent]; |
||||
|
||||
if (theEvent.keyCode == 53) { |
||||
[self.timezonePanel close]; |
||||
} |
||||
|
||||
} |
||||
|
||||
-(void)keyUp:(NSEvent *)theEvent |
||||
{ |
||||
if (theEvent.keyCode == 53) { |
||||
[self.timezonePanel close]; |
||||
} |
||||
} |
||||
|
||||
- (IBAction)filterArray:(id)sender |
||||
{ |
||||
|
||||
if (self.searchField.stringValue.length > 0) { |
||||
NSPredicate *predicate = [NSPredicate predicateWithFormat:CLPredicateKey, self.searchField.stringValue]; |
||||
|
||||
self.filteredArray = [self.timeZoneArray filteredArrayUsingPredicate:predicate]; |
||||
} |
||||
|
||||
[self.availableTimezoneTableView reloadData]; |
||||
} |
||||
- (IBAction)timeFormatSelectionChanged:(id)sender { |
||||
|
||||
NSButton *is24HourFormatSelected = (NSButton *)sender; |
||||
|
||||
[[NSUserDefaults standardUserDefaults] setObject:[NSNumber numberWithInteger:is24HourFormatSelected.state] forKey:CL24hourFormatSelectedKey]; |
||||
|
||||
[self refreshMainTableview]; |
||||
} |
||||
|
||||
- (void)refreshMainTableview |
||||
{ |
||||
ApplicationDelegate *appDelegate = [[NSApplication sharedApplication] delegate]; |
||||
|
||||
PanelController *panelController = appDelegate.panelController; |
||||
|
||||
[panelController updateDefaultPreferences]; |
||||
|
||||
[panelController.mainTableview reloadData]; |
||||
|
||||
} |
||||
|
||||
#pragma mark Reordering |
||||
|
||||
- (BOOL)tableView:(NSTableView *)tableView writeRowsWithIndexes:(NSIndexSet *)rowIndexes toPasteboard:(NSPasteboard *)pboard |
||||
{ |
||||
|
||||
NSData *data = [NSKeyedArchiver archivedDataWithRootObject:rowIndexes]; |
||||
|
||||
[pboard declareTypes:[NSArray arrayWithObject:CLDragSessionKey] owner:self]; |
||||
|
||||
[pboard setData:data forType:CLDragSessionKey]; |
||||
|
||||
return YES; |
||||
} |
||||
|
||||
|
||||
-(BOOL)tableView:(NSTableView *)tableView acceptDrop:(id<NSDraggingInfo>)info row:(NSInteger)row dropOperation:(NSTableViewDropOperation)dropOperation |
||||
{ |
||||
if (row == self.selectedTimeZones.count) { |
||||
row--; |
||||
} |
||||
|
||||
NSPasteboard *pBoard = [info draggingPasteboard]; |
||||
|
||||
NSData *data = [pBoard dataForType:CLDragSessionKey]; |
||||
|
||||
NSIndexSet *rowIndexes = [NSKeyedUnarchiver unarchiveObjectWithData:data]; |
||||
|
||||
[self.selectedTimeZones exchangeObjectAtIndex:rowIndexes.firstIndex withObjectAtIndex:row]; |
||||
|
||||
[[NSUserDefaults standardUserDefaults] setObject:self.selectedTimeZones forKey:CLDefaultPreferenceKey]; |
||||
|
||||
[self.timezoneTableView reloadData]; |
||||
|
||||
[self refreshMainTableview]; |
||||
|
||||
return YES; |
||||
} |
||||
|
||||
-(NSDragOperation)tableView:(NSTableView *)tableView validateDrop:(id<NSDraggingInfo>)info proposedRow:(NSInteger)row proposedDropOperation:(NSTableViewDropOperation)dropOperation |
||||
{ |
||||
return NSDragOperationEvery; |
||||
} |
||||
|
||||
|
||||
- (BOOL)launchOnLogin |
||||
{ |
||||
LSSharedFileListRef loginItemsListRef = LSSharedFileListCreate(NULL, kLSSharedFileListSessionLoginItems, NULL); |
||||
CFArrayRef snapshotRef = LSSharedFileListCopySnapshot(loginItemsListRef, NULL); |
||||
NSArray* loginItems = CFBridgingRelease(snapshotRef); |
||||
NSURL *bundleURL = [NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]]; |
||||
for (id item in loginItems) { |
||||
LSSharedFileListItemRef itemRef = (__bridge LSSharedFileListItemRef)item; |
||||
CFURLRef itemURLRef; |
||||
if (LSSharedFileListItemResolve(itemRef, 0, &itemURLRef, NULL) == noErr) { |
||||
NSURL *itemURL = (NSURL *)CFBridgingRelease(itemURLRef); |
||||
if ([itemURL isEqual:bundleURL]) { |
||||
return YES; |
||||
} |
||||
} |
||||
} |
||||
return NO; |
||||
} |
||||
|
||||
-(void)setLaunchOnLogin:(BOOL)launchOnLogin |
||||
{ |
||||
NSURL *bundleURL = [NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]]; |
||||
LSSharedFileListRef loginItemsListRef = LSSharedFileListCreate(NULL, kLSSharedFileListSessionLoginItems, NULL); |
||||
|
||||
if (launchOnLogin) { |
||||
NSDictionary *properties; |
||||
properties = [NSDictionary dictionaryWithObject:[NSNumber numberWithBool:YES] forKey:@"com.apple.loginitem.HideOnLaunch"]; |
||||
LSSharedFileListItemRef itemRef = LSSharedFileListInsertItemURL(loginItemsListRef, kLSSharedFileListItemLast, NULL, NULL, (__bridge CFURLRef)bundleURL, (__bridge CFDictionaryRef)properties,NULL); |
||||
if (itemRef) { |
||||
CFRelease(itemRef); |
||||
} |
||||
} else { |
||||
LSSharedFileListRef loginItemsListRef = LSSharedFileListCreate(NULL, kLSSharedFileListSessionLoginItems, NULL); |
||||
CFArrayRef snapshotRef = LSSharedFileListCopySnapshot(loginItemsListRef, NULL); |
||||
NSArray* loginItems = CFBridgingRelease(snapshotRef); |
||||
|
||||
for (id item in loginItems) { |
||||
LSSharedFileListItemRef itemRef = (__bridge LSSharedFileListItemRef)item; |
||||
CFURLRef itemURLRef; |
||||
if (LSSharedFileListItemResolve(itemRef, 0, &itemURLRef, NULL) == noErr) { |
||||
NSURL *itemURL = (NSURL *)CFBridgingRelease(itemURLRef); |
||||
if ([itemURL isEqual:bundleURL]) { |
||||
LSSharedFileListItemRemove(loginItemsListRef, itemRef); |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
- (IBAction)openAboutUsWindow:(id)sender |
||||
{ |
||||
self.aboutUsWindow = [CLAboutWindowController sharedReference]; |
||||
[self.aboutUsWindow showWindow:nil]; |
||||
[NSApp activateIgnoringOtherApps:YES]; |
||||
} |
||||
|
||||
|
||||
|
||||
@end |
@ -1,29 +0,0 @@
|
||||
/* |
||||
Localizable.strings |
||||
Clocker |
||||
|
||||
Created by Abhishek Banthia on 11/17/15. |
||||
|
||||
*/ |
||||
|
||||
"Yesterday" = "Gestern"; |
||||
"Today" = "Heute"; |
||||
"Tomorrow" = "Morgen"; |
||||
"MaximumTimezoneMessage" = "Maximal 10 Zeitzonen erlaubt!"; |
||||
"DuplicateTimezoneMessage" = "Zeitzone bereits angewählt!"; |
||||
|
||||
//Rating App |
||||
"Not Really" = "Nicht wirklich"; |
||||
"Yes!" = "Ja!"; |
||||
"AskForRatingMessage" = "Bewerten Sie uns im App Store, dann?"; |
||||
"AskForFeedbackMessage" = "Kümmern Sie geben uns ein Feedback?"; |
||||
"NoSelected" = "Nein, Danke"; |
||||
"YesSelected" = "Ja, sure"; |
||||
|
||||
|
||||
"iRateMessageTitle" = "Bewerte %@"; |
||||
"iRateAppMessage" = "Wenn dir %@ gefällt, würdest Du es bitte bewerten? Dies wird nicht länger als eine Minute dauern. Danke für die Unterstützung!"; |
||||
"iRateGameMessage" = "Wenn dir %@ gefällt, würdest Du es bitte bewerten? Dies wird nicht länger als eine Minute dauern. Danke für die Unterstützung!"; |
||||
"iRateCancelButton" = "Nein, danke"; |
||||
"iRateRateButton" = "Jetzt bewerten"; |
||||
"iRateRemindButton" = "Später erinnern"; |
@ -1,652 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="8191" systemVersion="15B42" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"> |
||||
<dependencies> |
||||
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="8191"/> |
||||
</dependencies> |
||||
<objects> |
||||
<customObject id="-2" userLabel="File's Owner" customClass="NSApplication"> |
||||
<connections> |
||||
<outlet property="delegate" destination="494" id="495"/> |
||||
</connections> |
||||
</customObject> |
||||
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/> |
||||
<customObject id="-3" userLabel="Application" customClass="NSObject"/> |
||||
<menu title="AMainMenu" systemMenu="main" id="29"> |
||||
<items> |
||||
<menuItem title="Clocker" id="56"> |
||||
<menu key="submenu" title="Clocker" systemMenu="apple" id="57"> |
||||
<items> |
||||
<menuItem title="About Clocker" id="58"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="orderFrontStandardAboutPanel:" target="-2" id="142"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="236"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Preferences…" keyEquivalent="," id="129"/> |
||||
<menuItem isSeparatorItem="YES" id="143"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Services" id="131"> |
||||
<menu key="submenu" title="Services" systemMenu="services" id="130"/> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="144"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Hide Clocker" keyEquivalent="h" id="134"> |
||||
<connections> |
||||
<action selector="hide:" target="-1" id="367"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Hide Others" keyEquivalent="h" id="145"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="hideOtherApplications:" target="-1" id="368"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Show All" id="150"> |
||||
<connections> |
||||
<action selector="unhideAllApplications:" target="-1" id="370"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="149"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Quit Clocker" keyEquivalent="q" id="136"> |
||||
<connections> |
||||
<action selector="terminate:" target="-3" id="449"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="File" id="83"> |
||||
<menu key="submenu" title="File" id="81"> |
||||
<items> |
||||
<menuItem title="New" keyEquivalent="n" id="82"> |
||||
<connections> |
||||
<action selector="newDocument:" target="-1" id="373"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Open…" keyEquivalent="o" id="72"> |
||||
<connections> |
||||
<action selector="openDocument:" target="-1" id="374"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Open Recent" id="124"> |
||||
<menu key="submenu" title="Open Recent" systemMenu="recentDocuments" id="125"> |
||||
<items> |
||||
<menuItem title="Clear Menu" id="126"> |
||||
<connections> |
||||
<action selector="clearRecentDocuments:" target="-1" id="127"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="79"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Close" keyEquivalent="w" id="73"> |
||||
<connections> |
||||
<action selector="performClose:" target="-1" id="193"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Save…" keyEquivalent="s" id="75"> |
||||
<connections> |
||||
<action selector="saveDocument:" target="-1" id="362"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Revert to Saved" id="112"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="revertDocumentToSaved:" target="-1" id="364"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="74"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Page Setup..." keyEquivalent="P" id="77"> |
||||
<modifierMask key="keyEquivalentModifierMask" shift="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="runPageLayout:" target="-1" id="87"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Print…" keyEquivalent="p" id="78"> |
||||
<connections> |
||||
<action selector="print:" target="-1" id="86"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Edit" id="217"> |
||||
<menu key="submenu" title="Edit" id="205"> |
||||
<items> |
||||
<menuItem title="Undo" keyEquivalent="z" id="207"> |
||||
<connections> |
||||
<action selector="undo:" target="-1" id="223"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Redo" keyEquivalent="Z" id="215"> |
||||
<modifierMask key="keyEquivalentModifierMask" shift="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="redo:" target="-1" id="231"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="206"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Cut" keyEquivalent="x" id="199"> |
||||
<connections> |
||||
<action selector="cut:" target="-1" id="228"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Copy" keyEquivalent="c" id="197"> |
||||
<connections> |
||||
<action selector="copy:" target="-1" id="224"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Paste" keyEquivalent="v" id="203"> |
||||
<connections> |
||||
<action selector="paste:" target="-1" id="226"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Paste and Match Style" keyEquivalent="V" id="485"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="pasteAsPlainText:" target="-1" id="486"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Delete" id="202"> |
||||
<connections> |
||||
<action selector="delete:" target="-1" id="235"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Select All" keyEquivalent="a" id="198"> |
||||
<connections> |
||||
<action selector="selectAll:" target="-1" id="232"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="214"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Find" id="218"> |
||||
<menu key="submenu" title="Find" id="220"> |
||||
<items> |
||||
<menuItem title="Find…" tag="1" keyEquivalent="f" id="209"> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="241"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Find and Replace…" tag="12" keyEquivalent="f" id="534"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="535"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Find Next" tag="2" keyEquivalent="g" id="208"> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="487"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Find Previous" tag="3" keyEquivalent="G" id="213"> |
||||
<modifierMask key="keyEquivalentModifierMask" shift="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="488"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Use Selection for Find" tag="7" keyEquivalent="e" id="221"> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="489"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Jump to Selection" keyEquivalent="j" id="210"> |
||||
<connections> |
||||
<action selector="centerSelectionInVisibleArea:" target="-1" id="245"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Spelling and Grammar" id="216"> |
||||
<menu key="submenu" title="Spelling and Grammar" id="200"> |
||||
<items> |
||||
<menuItem title="Show Spelling and Grammar" keyEquivalent=":" id="204"> |
||||
<connections> |
||||
<action selector="showGuessPanel:" target="-1" id="230"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Check Document Now" keyEquivalent=";" id="201"> |
||||
<connections> |
||||
<action selector="checkSpelling:" target="-1" id="225"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="453"/> |
||||
<menuItem title="Check Spelling While Typing" id="219"> |
||||
<connections> |
||||
<action selector="toggleContinuousSpellChecking:" target="-1" id="222"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Check Grammar With Spelling" id="346"> |
||||
<connections> |
||||
<action selector="toggleGrammarChecking:" target="-1" id="347"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Correct Spelling Automatically" id="454"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="toggleAutomaticSpellingCorrection:" target="-1" id="456"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Substitutions" id="348"> |
||||
<menu key="submenu" title="Substitutions" id="349"> |
||||
<items> |
||||
<menuItem title="Show Substitutions" id="457"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="orderFrontSubstitutionsPanel:" target="-1" id="458"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="459"/> |
||||
<menuItem title="Smart Copy/Paste" tag="1" keyEquivalent="f" id="350"> |
||||
<connections> |
||||
<action selector="toggleSmartInsertDelete:" target="-1" id="355"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Smart Quotes" tag="2" keyEquivalent="g" id="351"> |
||||
<connections> |
||||
<action selector="toggleAutomaticQuoteSubstitution:" target="-1" id="356"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Smart Dashes" id="460"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="toggleAutomaticDashSubstitution:" target="-1" id="461"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Smart Links" tag="3" keyEquivalent="G" id="354"> |
||||
<modifierMask key="keyEquivalentModifierMask" shift="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="toggleAutomaticLinkDetection:" target="-1" id="357"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Text Replacement" id="462"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="toggleAutomaticTextReplacement:" target="-1" id="463"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Transformations" id="450"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Transformations" id="451"> |
||||
<items> |
||||
<menuItem title="Make Upper Case" id="452"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="uppercaseWord:" target="-1" id="464"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Make Lower Case" id="465"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="lowercaseWord:" target="-1" id="468"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Capitalize" id="466"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="capitalizeWord:" target="-1" id="467"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Speech" id="211"> |
||||
<menu key="submenu" title="Speech" id="212"> |
||||
<items> |
||||
<menuItem title="Start Speaking" id="196"> |
||||
<connections> |
||||
<action selector="startSpeaking:" target="-1" id="233"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Stop Speaking" id="195"> |
||||
<connections> |
||||
<action selector="stopSpeaking:" target="-1" id="227"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Format" id="375"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Format" id="376"> |
||||
<items> |
||||
<menuItem title="Font" id="377"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Font" systemMenu="font" id="388"> |
||||
<items> |
||||
<menuItem title="Show Fonts" keyEquivalent="t" id="389"> |
||||
<connections> |
||||
<action selector="orderFrontFontPanel:" target="420" id="424"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Bold" tag="2" keyEquivalent="b" id="390"> |
||||
<connections> |
||||
<action selector="addFontTrait:" target="420" id="421"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Italic" tag="1" keyEquivalent="i" id="391"> |
||||
<connections> |
||||
<action selector="addFontTrait:" target="420" id="422"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Underline" keyEquivalent="u" id="392"> |
||||
<connections> |
||||
<action selector="underline:" target="-1" id="432"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="393"/> |
||||
<menuItem title="Bigger" tag="3" keyEquivalent="+" id="394"> |
||||
<connections> |
||||
<action selector="modifyFont:" target="420" id="425"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Smaller" tag="4" keyEquivalent="-" id="395"> |
||||
<connections> |
||||
<action selector="modifyFont:" target="420" id="423"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="396"/> |
||||
<menuItem title="Kern" id="397"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Kern" id="415"> |
||||
<items> |
||||
<menuItem title="Use Default" id="416"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="useStandardKerning:" target="-1" id="438"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Use None" id="417"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="turnOffKerning:" target="-1" id="441"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Tighten" id="418"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="tightenKerning:" target="-1" id="431"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Loosen" id="419"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="loosenKerning:" target="-1" id="435"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Ligature" id="398"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Ligature" id="411"> |
||||
<items> |
||||
<menuItem title="Use Default" id="412"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="useStandardLigatures:" target="-1" id="439"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Use None" id="413"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="turnOffLigatures:" target="-1" id="440"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Use All" id="414"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="useAllLigatures:" target="-1" id="434"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Baseline" id="399"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Baseline" id="405"> |
||||
<items> |
||||
<menuItem title="Use Default" id="406"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="unscript:" target="-1" id="437"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Superscript" id="407"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="superscript:" target="-1" id="430"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Subscript" id="408"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="subscript:" target="-1" id="429"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Raise" id="409"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="raiseBaseline:" target="-1" id="426"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Lower" id="410"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="lowerBaseline:" target="-1" id="427"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="400"/> |
||||
<menuItem title="Show Colors" keyEquivalent="C" id="401"> |
||||
<connections> |
||||
<action selector="orderFrontColorPanel:" target="-1" id="433"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="402"/> |
||||
<menuItem title="Copy Style" keyEquivalent="c" id="403"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="copyFont:" target="-1" id="428"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Paste Style" keyEquivalent="v" id="404"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="pasteFont:" target="-1" id="436"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Text" id="496"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Text" id="497"> |
||||
<items> |
||||
<menuItem title="Align Left" keyEquivalent="{" id="498"> |
||||
<connections> |
||||
<action selector="alignLeft:" target="-1" id="524"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Center" keyEquivalent="|" id="499"> |
||||
<connections> |
||||
<action selector="alignCenter:" target="-1" id="518"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Justify" id="500"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="alignJustified:" target="-1" id="523"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Align Right" keyEquivalent="}" id="501"> |
||||
<connections> |
||||
<action selector="alignRight:" target="-1" id="521"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="502"/> |
||||
<menuItem title="Writing Direction" id="503"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Writing Direction" id="508"> |
||||
<items> |
||||
<menuItem title="Paragraph" enabled="NO" id="509"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
</menuItem> |
||||
<menuItem id="510"> |
||||
<string key="title"> Default</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeBaseWritingDirectionNatural:" target="-1" id="525"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem id="511"> |
||||
<string key="title"> Left to Right</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeBaseWritingDirectionLeftToRight:" target="-1" id="526"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem id="512"> |
||||
<string key="title"> Right to Left</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeBaseWritingDirectionRightToLeft:" target="-1" id="527"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="513"/> |
||||
<menuItem title="Selection" enabled="NO" id="514"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
</menuItem> |
||||
<menuItem id="515"> |
||||
<string key="title"> Default</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeTextWritingDirectionNatural:" target="-1" id="528"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem id="516"> |
||||
<string key="title"> Left to Right</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeTextWritingDirectionLeftToRight:" target="-1" id="529"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem id="517"> |
||||
<string key="title"> Right to Left</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeTextWritingDirectionRightToLeft:" target="-1" id="530"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="504"/> |
||||
<menuItem title="Show Ruler" id="505"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="toggleRuler:" target="-1" id="520"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Copy Ruler" keyEquivalent="c" id="506"> |
||||
<modifierMask key="keyEquivalentModifierMask" control="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="copyRuler:" target="-1" id="522"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Paste Ruler" keyEquivalent="v" id="507"> |
||||
<modifierMask key="keyEquivalentModifierMask" control="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="pasteRuler:" target="-1" id="519"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="View" id="295"> |
||||
<menu key="submenu" title="View" id="296"> |
||||
<items> |
||||
<menuItem title="Show Toolbar" keyEquivalent="t" id="297"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="toggleToolbarShown:" target="-1" id="366"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Customize Toolbar…" id="298"> |
||||
<connections> |
||||
<action selector="runToolbarCustomizationPalette:" target="-1" id="365"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Window" id="19"> |
||||
<menu key="submenu" title="Window" systemMenu="window" id="24"> |
||||
<items> |
||||
<menuItem title="Minimize" keyEquivalent="m" id="23"> |
||||
<connections> |
||||
<action selector="performMiniaturize:" target="-1" id="37"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Zoom" id="239"> |
||||
<connections> |
||||
<action selector="performZoom:" target="-1" id="240"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="92"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Bring All to Front" id="5"> |
||||
<connections> |
||||
<action selector="arrangeInFront:" target="-1" id="39"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Help" id="490"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Help" systemMenu="help" id="491"> |
||||
<items> |
||||
<menuItem title="Clocker Help" keyEquivalent="?" id="492"> |
||||
<connections> |
||||
<action selector="showHelp:" target="-1" id="493"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
<customObject id="494" customClass="ApplicationDelegate"/> |
||||
<customObject id="420" customClass="NSFontManager"/> |
||||
</objects> |
||||
</document> |
@ -1,261 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="9531" systemVersion="15C50" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES"> |
||||
<dependencies> |
||||
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="9531"/> |
||||
</dependencies> |
||||
<objects> |
||||
<customObject id="-2" userLabel="File's Owner" customClass="PanelController"> |
||||
<connections> |
||||
<outlet property="backgroundView" destination="6" id="20"/> |
||||
<outlet property="mainTableview" destination="dFw-ts-8OZ" id="wwJ-jA-lCy"/> |
||||
<outlet property="preferencesButton" destination="OFy-u1-TnH" id="SId-Ih-ssT"/> |
||||
<outlet property="scrollViewHeight" destination="QcT-N0-G4s" id="EHr-Co-L0Z"/> |
||||
<outlet property="shutdownButton" destination="nTt-pf-Hw2" id="gCK-0D-gnK"/> |
||||
<outlet property="window" destination="5" id="7"/> |
||||
</connections> |
||||
</customObject> |
||||
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/> |
||||
<customObject id="-3" userLabel="Application" customClass="NSObject"/> |
||||
<window allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" restorable="NO" oneShot="NO" releasedWhenClosed="NO" showsToolbarButton="NO" visibleAtLaunch="NO" animationBehavior="none" id="5" customClass="Panel"> |
||||
<windowStyleMask key="styleMask" utility="YES" nonactivatingPanel="YES" texturedBackground="YES"/> |
||||
<windowCollectionBehavior key="collectionBehavior" moveToActiveSpace="YES" ignoresCycle="YES"/> |
||||
<windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> |
||||
<rect key="contentRect" x="162" y="101" width="280" height="273"/> |
||||
<rect key="screenRect" x="0.0" y="0.0" width="1280" height="777"/> |
||||
<view key="contentView" id="6" customClass="BackgroundView"> |
||||
<rect key="frame" x="0.0" y="0.0" width="280" height="273"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<subviews> |
||||
<scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="56" horizontalPageScroll="10" verticalLineScroll="56" verticalPageScroll="10" hasHorizontalScroller="NO" hasVerticalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="4Gd-Nv-fXr"> |
||||
<rect key="frame" x="-1" y="0.0" width="282" height="265"/> |
||||
<clipView key="contentView" id="4MZ-Di-yNR"> |
||||
<rect key="frame" x="0.0" y="0.0" width="282" height="265"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<tableView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" columnSelection="YES" multipleSelection="NO" autosaveColumns="NO" rowHeight="55" viewBased="YES" id="dFw-ts-8OZ"> |
||||
<rect key="frame" x="0.0" y="0.0" width="282" height="0.0"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<size key="intercellSpacing" width="3" height="1"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
<tableViewGridLines key="gridStyleMask" dashed="YES"/> |
||||
<color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> |
||||
<tableColumns> |
||||
<tableColumn width="279" minWidth="40" maxWidth="1000" id="LTt-db-Dwv"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="7LK-2q-H3f"> |
||||
<font key="font" metaFont="system"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
<prototypeCellViews> |
||||
<tableCellView identifier="timeZoneCell" id="qbN-ba-fho"> |
||||
<rect key="frame" x="1" y="0.0" width="279" height="60"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" tag="100" translatesAutoresizingMaskIntoConstraints="NO" id="etF-33-bCB"> |
||||
<rect key="frame" x="8" y="26" width="144" height="26"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="140" id="32b-h6-joo"/> |
||||
<constraint firstAttribute="height" constant="26" id="vod-YN-iNX"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" placeholderString="Timezone Name" id="rnh-AP-ooc"> |
||||
<font key="font" size="15" name="Helvetica-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
<textField verticalHuggingPriority="750" tag="102" translatesAutoresizingMaskIntoConstraints="NO" id="QUd-7D-q14"> |
||||
<rect key="frame" x="8" y="9" width="104" height="22"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="22" id="42Y-hy-Uo7"/> |
||||
<constraint firstAttribute="width" constant="100" id="fkH-oq-qvM"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" placeholderString="Date" id="74U-rv-5xj"> |
||||
<font key="font" size="13" name="Helvetica-Bold"/> |
||||
<color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" tag="101" translatesAutoresizingMaskIntoConstraints="NO" id="vnv-J2-7r1"> |
||||
<rect key="frame" x="127" y="17" width="146" height="33"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="33" id="3WU-de-OQL"/> |
||||
<constraint firstAttribute="width" constant="142" id="cQV-gJ-zMz"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" placeholderString="23:46" id="g8s-EU-UHx"> |
||||
<font key="font" size="31" name="Helvetica-Light"/> |
||||
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstItem="QUd-7D-q14" firstAttribute="leading" secondItem="qbN-ba-fho" secondAttribute="leading" constant="10" id="0Qz-Ev-efP"/> |
||||
<constraint firstItem="etF-33-bCB" firstAttribute="top" secondItem="qbN-ba-fho" secondAttribute="top" constant="8" id="Lct-kG-usb"/> |
||||
<constraint firstItem="vnv-J2-7r1" firstAttribute="centerY" secondItem="qbN-ba-fho" secondAttribute="centerY" constant="-3.5" id="TuQ-gE-ZUh"/> |
||||
<constraint firstItem="QUd-7D-q14" firstAttribute="top" secondItem="etF-33-bCB" secondAttribute="bottom" constant="-5" id="VO6-Zn-eA3"/> |
||||
<constraint firstItem="etF-33-bCB" firstAttribute="leading" secondItem="qbN-ba-fho" secondAttribute="leading" constant="10" id="ueW-ow-ZRq"/> |
||||
<constraint firstAttribute="trailing" secondItem="vnv-J2-7r1" secondAttribute="trailing" constant="8" id="zXo-eA-0bQ"/> |
||||
</constraints> |
||||
<connections> |
||||
<outlet property="textField" destination="etF-33-bCB" id="6fd-cc-Qq2"/> |
||||
</connections> |
||||
</tableCellView> |
||||
<tableCellView identifier="ratingCellView" id="cGe-a3-aQ4" customClass="CLRatingCellView"> |
||||
<rect key="frame" x="1" y="61" width="279" height="51"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ZQb-WM-ySu"> |
||||
<rect key="frame" x="92" y="31" width="105" height="20"/> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Enjoying Clocker?" id="wVy-8p-Coe"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="wmr-oC-KAA"> |
||||
<rect key="frame" x="29" y="2" width="112" height="25"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="14" id="1az-PB-UfL"/> |
||||
<constraint firstAttribute="width" constant="100" id="sdp-Wc-iFX"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="push" title="Not Really" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="NwZ-x6-Rzx"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="actionOnNegativeFeedback:" target="cGe-a3-aQ4" id="dWt-hz-K1P"/> |
||||
</connections> |
||||
</button> |
||||
<imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="rb5-Zz-Ydj"> |
||||
<rect key="frame" x="72" y="31" width="16" height="16"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="16" id="IGB-EE-dbx"/> |
||||
<constraint firstAttribute="height" constant="16" id="WpC-Kd-S4x"/> |
||||
</constraints> |
||||
<imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="ClockerIcon-16" id="Brt-bL-O6m"/> |
||||
</imageView> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="M34-ia-ua6"> |
||||
<rect key="frame" x="134" y="2" width="112" height="25"/> |
||||
<buttonCell key="cell" type="push" title="Yes!" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="ztX-tu-ZtW"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="actionOnPositiveFeedback:" target="cGe-a3-aQ4" id="YFi-6a-giS"/> |
||||
</connections> |
||||
</button> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstItem="ZQb-WM-ySu" firstAttribute="centerX" secondItem="cGe-a3-aQ4" secondAttribute="centerX" constant="5" id="2P2-M0-N3M"/> |
||||
<constraint firstItem="M34-ia-ua6" firstAttribute="centerX" secondItem="cGe-a3-aQ4" secondAttribute="centerX" constant="50" id="7bw-x2-pOw"/> |
||||
<constraint firstItem="wmr-oC-KAA" firstAttribute="centerX" secondItem="cGe-a3-aQ4" secondAttribute="centerX" constant="-55" id="AtB-hH-Nhl"/> |
||||
<constraint firstItem="ZQb-WM-ySu" firstAttribute="leading" secondItem="rb5-Zz-Ydj" secondAttribute="trailing" constant="6" id="FMv-md-2JA"/> |
||||
<constraint firstItem="rb5-Zz-Ydj" firstAttribute="top" secondItem="cGe-a3-aQ4" secondAttribute="top" constant="4" id="NN0-7u-PIj"/> |
||||
<constraint firstItem="M34-ia-ua6" firstAttribute="height" secondItem="wmr-oC-KAA" secondAttribute="height" id="Ntv-eP-Osa"/> |
||||
<constraint firstItem="M34-ia-ua6" firstAttribute="width" secondItem="wmr-oC-KAA" secondAttribute="width" id="Uht-2A-ZRG"/> |
||||
<constraint firstItem="ZQb-WM-ySu" firstAttribute="top" secondItem="cGe-a3-aQ4" secondAttribute="top" id="aqj-Kt-PuX"/> |
||||
<constraint firstItem="M34-ia-ua6" firstAttribute="top" secondItem="ZQb-WM-ySu" secondAttribute="bottom" constant="8" id="nE3-Nj-BEf"/> |
||||
<constraint firstItem="wmr-oC-KAA" firstAttribute="top" secondItem="ZQb-WM-ySu" secondAttribute="bottom" constant="8" id="p6E-PG-Qqt"/> |
||||
</constraints> |
||||
<connections> |
||||
<outlet property="imageView" destination="rb5-Zz-Ydj" id="rZZ-Rl-c8V"/> |
||||
<outlet property="leftButton" destination="wmr-oC-KAA" id="OXY-gb-83X"/> |
||||
<outlet property="leftField" destination="ZQb-WM-ySu" id="5Ic-ou-Dbe"/> |
||||
<outlet property="rightButton" destination="M34-ia-ua6" id="5h7-8i-aoP"/> |
||||
</connections> |
||||
</tableCellView> |
||||
</prototypeCellViews> |
||||
</tableColumn> |
||||
</tableColumns> |
||||
<connections> |
||||
<outlet property="dataSource" destination="-2" id="Q9t-Yx-hmz"/> |
||||
<outlet property="delegate" destination="-2" id="AqY-uU-Noo"/> |
||||
</connections> |
||||
</tableView> |
||||
</subviews> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</clipView> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="265" id="QcT-N0-G4s"/> |
||||
</constraints> |
||||
<scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="DJr-1R-9LK"> |
||||
<rect key="frame" x="-100" y="-100" width="223" height="15"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="cfu-8V-LKK"> |
||||
<rect key="frame" x="-100" y="-100" width="15" height="102"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
</scrollView> |
||||
<textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="HR1-ZK-Ey0"> |
||||
<rect key="frame" x="0.0" y="2" width="280" height="22"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="22" id="IxM-FF-J1F"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" state="on" alignment="center" placeholderString="Clocker" drawsBackground="YES" id="KVB-OA-XfT"> |
||||
<font key="font" size="17" name="Palatino-Bold"/> |
||||
<color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="OFy-u1-TnH"> |
||||
<rect key="frame" x="246" y="1" width="29" height="19"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="29" id="MIQ-4K-E5A"/> |
||||
<constraint firstAttribute="height" constant="18" id="X7D-ep-wB4"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="recessed" bezelStyle="recessed" image="NSActionTemplate" imagePosition="only" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="vYm-fs-Zjd"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" metaFont="systemBold" size="12"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="openPreferences:" target="-2" id="0Yc-Eq-obQ"/> |
||||
</connections> |
||||
</button> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="nTt-pf-Hw2"> |
||||
<rect key="frame" x="0.0" y="1" width="29" height="19"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="29" id="8kZ-Pj-VK6"/> |
||||
<constraint firstAttribute="height" constant="18" id="sVG-VE-3q4"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="recessed" bezelStyle="recessed" image="PowerIcon" imagePosition="only" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="sUh-16-Fhk"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES" changeBackground="YES" changeGray="YES"/> |
||||
<font key="font" metaFont="systemBold" size="12"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="terminate:" target="-1" id="fpZ-pt-UiU"/> |
||||
</connections> |
||||
</button> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstItem="4Gd-Nv-fXr" firstAttribute="top" secondItem="6" secondAttribute="top" constant="8" id="1g0-Hm-7Gh"/> |
||||
<constraint firstAttribute="trailing" secondItem="HR1-ZK-Ey0" secondAttribute="trailing" id="1ol-mo-aQU"/> |
||||
<constraint firstAttribute="bottom" secondItem="HR1-ZK-Ey0" secondAttribute="bottom" constant="2" id="Jtb-Nx-FYR"/> |
||||
<constraint firstAttribute="bottom" secondItem="nTt-pf-Hw2" secondAttribute="bottom" constant="2" id="QoV-TI-KVJ"/> |
||||
<constraint firstAttribute="bottom" secondItem="OFy-u1-TnH" secondAttribute="bottom" constant="2" id="Ubf-Mv-WMp"/> |
||||
<constraint firstAttribute="trailing" secondItem="4Gd-Nv-fXr" secondAttribute="trailing" constant="-1" id="XP6-W0-2XT"/> |
||||
<constraint firstItem="HR1-ZK-Ey0" firstAttribute="leading" secondItem="6" secondAttribute="leading" id="XQ8-hU-ayC"/> |
||||
<constraint firstItem="4Gd-Nv-fXr" firstAttribute="leading" secondItem="6" secondAttribute="leading" constant="-1" id="fHc-VQ-mJ3"/> |
||||
<constraint firstAttribute="trailing" secondItem="OFy-u1-TnH" secondAttribute="trailing" constant="5" id="p2a-qj-LHE"/> |
||||
<constraint firstItem="nTt-pf-Hw2" firstAttribute="leading" secondItem="6" secondAttribute="leading" id="pKl-Ay-0cB"/> |
||||
</constraints> |
||||
</view> |
||||
<connections> |
||||
<outlet property="delegate" destination="-2" id="8"/> |
||||
</connections> |
||||
<point key="canvasLocation" x="230" y="392.5"/> |
||||
</window> |
||||
<userDefaultsController representsSharedInstance="YES" id="O3B-kK-4vm"/> |
||||
</objects> |
||||
<resources> |
||||
<image name="ClockerIcon-16" width="16" height="16"/> |
||||
<image name="NSActionTemplate" width="14" height="14"/> |
||||
<image name="PowerIcon" width="270" height="270"/> |
||||
</resources> |
||||
</document> |
@ -1,338 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="9531" systemVersion="15C50" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES"> |
||||
<dependencies> |
||||
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="9531"/> |
||||
</dependencies> |
||||
<objects> |
||||
<customObject id="-2" userLabel="File's Owner" customClass="PreferencesWindowController"> |
||||
<connections> |
||||
<outlet property="availableTimezoneTableView" destination="6Hm-XH-CMI" id="GA1-tc-E9E"/> |
||||
<outlet property="customView" destination="se5-gp-TjO" id="h4S-tD-eLU"/> |
||||
<outlet property="is24HourFormatSelected" destination="N47-gw-Pay" id="2MV-F1-uYf"/> |
||||
<outlet property="messageLabel" destination="Rty-6T-aPw" id="Qg4-mk-P90"/> |
||||
<outlet property="searchField" destination="5jL-eb-qdB" id="K6C-JS-ko0"/> |
||||
<outlet property="timezonePanel" destination="Z6I-Ny-aGx" id="tXP-KH-Xfi"/> |
||||
<outlet property="timezoneTableView" destination="oKD-AN-gPT" id="oD2-n0-4jf"/> |
||||
<outlet property="window" destination="F0z-JX-Cv5" id="gIp-Ho-8D9"/> |
||||
</connections> |
||||
</customObject> |
||||
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/> |
||||
<customObject id="-3" userLabel="Application" customClass="NSObject"/> |
||||
<window identifier="Selected Timezones" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" oneShot="NO" releasedWhenClosed="NO" animationBehavior="documentWindow" id="F0z-JX-Cv5"> |
||||
<windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES"/> |
||||
<windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> |
||||
<rect key="contentRect" x="407" y="179" width="439" height="373"/> |
||||
<rect key="screenRect" x="0.0" y="0.0" width="1280" height="777"/> |
||||
<value key="minSize" type="size" width="439" height="351"/> |
||||
<view key="contentView" id="se5-gp-TjO"> |
||||
<rect key="frame" x="0.0" y="0.0" width="439" height="373"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<button toolTip="Add a timezone" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="DCz-qN-ydK"> |
||||
<rect key="frame" x="11" y="67" width="21" height="22"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="20" id="aUK-f8-pvY"/> |
||||
<constraint firstAttribute="width" constant="21" id="hAr-3f-KNJ"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="smallSquare" bezelStyle="smallSquare" image="NSAddTemplate" imagePosition="overlaps" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="rjd-Yu-81P"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" metaFont="system"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="addTimeZone:" target="-2" id="dXi-qw-Vu2"/> |
||||
</connections> |
||||
</button> |
||||
<button toolTip="Remove a timezone" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ixe-Sn-8qT"> |
||||
<rect key="frame" x="32" y="67" width="21" height="22"/> |
||||
<buttonCell key="cell" type="smallSquare" bezelStyle="smallSquare" image="NSRemoveTemplate" imagePosition="overlaps" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="SVO-Wt-Mfb"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" metaFont="system"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="removeFromFavourites:" target="-2" id="65F-Jn-DMw"/> |
||||
</connections> |
||||
</button> |
||||
<scrollView focusRingType="none" autohidesScrollers="YES" horizontalLineScroll="22" horizontalPageScroll="10" verticalLineScroll="22" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cI0-M7-C9h"> |
||||
<rect key="frame" x="10" y="94" width="419" height="271"/> |
||||
<clipView key="contentView" id="WWk-6i-nI7"> |
||||
<rect key="frame" x="1" y="0.0" width="417" height="270"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<tableView focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" alternatingRowBackgroundColors="YES" columnSelection="YES" autosaveColumns="NO" rowHeight="20" headerView="dKI-Ue-9QX" id="oKD-AN-gPT"> |
||||
<rect key="frame" x="0.0" y="0.0" width="417" height="247"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<size key="intercellSpacing" width="3" height="2"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> |
||||
<tableColumns> |
||||
<tableColumn identifier="timezoneName" editable="NO" width="252.75" minWidth="40" maxWidth="1000" id="CJN-Eu-3s5"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" title="Ausgewählte Zeitzone (n)"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="Vu3-3D-aDG"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
</tableColumn> |
||||
<tableColumn identifier="label" width="158" minWidth="10" maxWidth="3.4028234663852886e+38" id="JQH-66-pCg"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Etikette"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="LZP-1p-Y2P"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
</tableColumn> |
||||
</tableColumns> |
||||
<connections> |
||||
<outlet property="dataSource" destination="-2" id="do8-kY-7j3"/> |
||||
<outlet property="delegate" destination="-2" id="whN-25-mkj"/> |
||||
</connections> |
||||
</tableView> |
||||
</subviews> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</clipView> |
||||
<scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="Hxj-Tc-UWs"> |
||||
<rect key="frame" x="1" y="228" width="417" height="16"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="s9V-58-jwp"> |
||||
<rect key="frame" x="-14" y="-7" width="15" height="0.0"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<tableHeaderView key="headerView" id="dKI-Ue-9QX"> |
||||
<rect key="frame" x="0.0" y="0.0" width="417" height="23"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</tableHeaderView> |
||||
</scrollView> |
||||
<button toolTip="Clocker will start on each system launch" translatesAutoresizingMaskIntoConstraints="NO" id="GDz-2Z-uX5" customClass="ColoredButton"> |
||||
<rect key="frame" x="9" y="18" width="202" height="18"/> |
||||
<buttonCell key="cell" type="check" title="Starten Clocker beim Systemstart" bezelStyle="regularSquare" imagePosition="left" inset="2" id="h45-jZ-cPY"> |
||||
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> |
||||
<font key="font" size="12" name="Helvetica-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<binding destination="-2" name="value" keyPath="self.launchOnLogin" id="Vqw-iQ-qOe"/> |
||||
</connections> |
||||
</button> |
||||
<button toolTip="Show time using a 24-hour format" translatesAutoresizingMaskIntoConstraints="NO" id="N47-gw-Pay" customClass="ColoredButton"> |
||||
<rect key="frame" x="9" y="40" width="343" height="22"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="339" id="0eX-T7-EbU"/> |
||||
<constraint firstAttribute="height" constant="18" id="qwS-Bk-vmy"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="check" title="Verwenden Sie eine 24-Stunden-" bezelStyle="regularSquare" imagePosition="left" alignment="left" state="on" inset="2" id="Fro-eC-cMC"> |
||||
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> |
||||
<font key="font" size="12" name="Helvetica-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="timeFormatSelectionChanged:" target="-2" id="6vB-XV-sSq"/> |
||||
<binding destination="sEG-Zb-KUM" name="value" keyPath="values.is24HourFormatSelected" id="wod-mK-9M5"/> |
||||
</connections> |
||||
</button> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstItem="DCz-qN-ydK" firstAttribute="top" secondItem="cI0-M7-C9h" secondAttribute="bottom" constant="6" id="6Ye-VD-kSE"/> |
||||
<constraint firstItem="GDz-2Z-uX5" firstAttribute="leading" secondItem="se5-gp-TjO" secondAttribute="leading" constant="11" id="FLl-Pc-Gzn"/> |
||||
<constraint firstItem="cI0-M7-C9h" firstAttribute="leading" secondItem="se5-gp-TjO" secondAttribute="leading" constant="10" id="Fy5-6V-gu1"/> |
||||
<constraint firstItem="GDz-2Z-uX5" firstAttribute="top" secondItem="N47-gw-Pay" secondAttribute="bottom" constant="8" id="KEz-Rp-e05"/> |
||||
<constraint firstAttribute="bottom" secondItem="GDz-2Z-uX5" secondAttribute="bottom" constant="20" id="NM6-qW-sLG"/> |
||||
<constraint firstItem="ixe-Sn-8qT" firstAttribute="leading" secondItem="DCz-qN-ydK" secondAttribute="trailing" id="TLA-Fw-F7P"/> |
||||
<constraint firstItem="DCz-qN-ydK" firstAttribute="leading" secondItem="se5-gp-TjO" secondAttribute="leading" constant="11" id="Waz-CP-UWF"/> |
||||
<constraint firstItem="N47-gw-Pay" firstAttribute="top" secondItem="ixe-Sn-8qT" secondAttribute="bottom" constant="8" id="gbd-HA-u9p"/> |
||||
<constraint firstItem="N47-gw-Pay" firstAttribute="leading" secondItem="se5-gp-TjO" secondAttribute="leading" constant="11" id="hXb-69-tI0"/> |
||||
<constraint firstItem="ixe-Sn-8qT" firstAttribute="width" secondItem="DCz-qN-ydK" secondAttribute="width" id="o7k-jf-cL0"/> |
||||
<constraint firstItem="ixe-Sn-8qT" firstAttribute="height" secondItem="DCz-qN-ydK" secondAttribute="height" id="rsK-UP-Umg"/> |
||||
<constraint firstItem="cI0-M7-C9h" firstAttribute="top" secondItem="se5-gp-TjO" secondAttribute="top" constant="8" id="u5H-Ff-ivt"/> |
||||
<constraint firstAttribute="trailing" secondItem="cI0-M7-C9h" secondAttribute="trailing" constant="10" id="ut9-6b-cdu"/> |
||||
<constraint firstItem="N47-gw-Pay" firstAttribute="top" secondItem="DCz-qN-ydK" secondAttribute="bottom" constant="8" id="x0C-Ev-Imb"/> |
||||
</constraints> |
||||
</view> |
||||
<toolbar key="toolbar" implicitIdentifier="4FE35E5D-AD81-47AD-AB8C-158D28F496E7" autosavesConfiguration="NO" displayMode="iconAndLabel" sizeMode="small" id="E4T-sw-eeZ"> |
||||
<allowedToolbarItems> |
||||
<toolbarItem implicitItemIdentifier="NSToolbarSpaceItem" id="obv-uP-Zmc"/> |
||||
<toolbarItem implicitItemIdentifier="NSToolbarFlexibleSpaceItem" id="VjG-Do-pV0"/> |
||||
<toolbarItem implicitItemIdentifier="238FBC10-33D9-453A-9B4E-77BB41D4E49A" label="About Us" paletteLabel="About Us" tag="-1" image="NSInfo" autovalidates="NO" id="6or-Zz-ybD"> |
||||
<size key="minSize" width="5" height="5"/> |
||||
<connections> |
||||
<action selector="openAboutUsWindow:" target="-2" id="S3A-rQ-fOW"/> |
||||
</connections> |
||||
</toolbarItem> |
||||
</allowedToolbarItems> |
||||
<defaultToolbarItems> |
||||
<toolbarItem reference="obv-uP-Zmc"/> |
||||
<toolbarItem reference="VjG-Do-pV0"/> |
||||
<toolbarItem reference="6or-Zz-ybD"/> |
||||
</defaultToolbarItems> |
||||
</toolbar> |
||||
<connections> |
||||
<outlet property="delegate" destination="-2" id="0bl-1N-AYu"/> |
||||
</connections> |
||||
<point key="canvasLocation" x="304.5" y="230.5"/> |
||||
</window> |
||||
<window title="Window" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" hasShadow="NO" hidesOnDeactivate="YES" oneShot="NO" releasedWhenClosed="NO" showsToolbarButton="NO" visibleAtLaunch="NO" animationBehavior="alertPanel" appearanceType="aqua" frameAutosaveName="" id="Z6I-Ny-aGx" customClass="Panel"> |
||||
<windowStyleMask key="styleMask" closable="YES" miniaturizable="YES" resizable="YES" documentModal="YES" nonactivatingPanel="YES" texturedBackground="YES"/> |
||||
<windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> |
||||
<rect key="contentRect" x="120" y="64" width="345" height="320"/> |
||||
<rect key="screenRect" x="0.0" y="0.0" width="1280" height="777"/> |
||||
<value key="minSize" type="size" width="345" height="320"/> |
||||
<value key="maxSize" type="size" width="345" height="320"/> |
||||
<view key="contentView" id="byp-2M-iAO"> |
||||
<rect key="frame" x="0.0" y="0.0" width="345" height="320"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<subviews> |
||||
<scrollView focusRingType="none" autohidesScrollers="YES" horizontalLineScroll="22" horizontalPageScroll="10" verticalLineScroll="22" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3B2-hV-f8v"> |
||||
<rect key="frame" x="8" y="27" width="329" height="257"/> |
||||
<clipView key="contentView" id="xtL-kR-J62"> |
||||
<rect key="frame" x="1" y="0.0" width="327" height="256"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<tableView focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" alternatingRowBackgroundColors="YES" multipleSelection="NO" emptySelection="NO" autosaveColumns="NO" rowHeight="20" headerView="hHn-48-RCd" id="6Hm-XH-CMI"> |
||||
<rect key="frame" x="0.0" y="0.0" width="327" height="233"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<size key="intercellSpacing" width="3" height="2"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
<tableViewGridLines key="gridStyleMask" vertical="YES"/> |
||||
<color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> |
||||
<tableColumns> |
||||
<tableColumn identifier="availableTimezones" editable="NO" width="205.5" minWidth="40" maxWidth="1000" id="TEh-P6-jcT"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" title="Zeitzone Namen"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="iJJ-UY-Q3g"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
</tableColumn> |
||||
<tableColumn identifier="abbreviation" editable="NO" width="115.71875" minWidth="10" maxWidth="3.4028234663852886e+38" id="Iuq-hc-Ma0"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Abkürzung"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="pwL-7P-icB"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
</tableColumn> |
||||
</tableColumns> |
||||
<connections> |
||||
<binding destination="-2" name="doubleClickTarget" keyPath="self" id="88W-iC-qMj"> |
||||
<dictionary key="options"> |
||||
<string key="NSSelectorName">addToFavorites:</string> |
||||
</dictionary> |
||||
</binding> |
||||
<outlet property="dataSource" destination="-2" id="OMp-pn-8oq"/> |
||||
<outlet property="delegate" destination="-2" id="mJw-oC-0dA"/> |
||||
</connections> |
||||
</tableView> |
||||
</subviews> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</clipView> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="257" id="Yru-1j-SeJ"/> |
||||
</constraints> |
||||
<scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="nBP-zr-k3M"> |
||||
<rect key="frame" x="1" y="241" width="327" height="15"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="x3e-JD-qwd"> |
||||
<rect key="frame" x="224" y="17" width="15" height="102"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<tableHeaderView key="headerView" id="hHn-48-RCd"> |
||||
<rect key="frame" x="0.0" y="0.0" width="327" height="23"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</tableHeaderView> |
||||
</scrollView> |
||||
<button toolTip="Add a timezone" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="KlN-dU-s3o"> |
||||
<rect key="frame" x="2" y="-2" width="92" height="32"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="21" id="2QY-oM-3sO"/> |
||||
<constraint firstAttribute="width" constant="80" id="6JQ-5n-kb7"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="push" title="Hinzufügen" bezelStyle="rounded" imagePosition="overlaps" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="kZe-ua-0p9"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="addToFavorites:" target="-2" id="y27-tR-f1g"/> |
||||
</connections> |
||||
</button> |
||||
<button toolTip="Close Panel" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Ueh-Ln-TC8"> |
||||
<rect key="frame" x="84" y="-2" width="82" height="32"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="70" id="Bql-d6-oci"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="push" title="schließen" bezelStyle="rounded" imagePosition="overlaps" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="ODT-4D-sWu"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="closePanel:" target="-2" id="6v9-wN-07n"/> |
||||
</connections> |
||||
</button> |
||||
<searchField toolTip="Search a timezone" wantsLayer="YES" focusRingType="none" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="5jL-eb-qdB"> |
||||
<rect key="frame" x="8" y="287" width="329" height="25"/> |
||||
<searchFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" borderStyle="bezel" focusRingType="none" placeholderString="Geben Sie Zeitzone Bezeichnung" drawsBackground="YES" usesSingleLineMode="YES" id="2DC-BS-vbb"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</searchFieldCell> |
||||
<connections> |
||||
<action selector="filterArray:" target="-2" id="tX8-FN-IPy"/> |
||||
</connections> |
||||
</searchField> |
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Rty-6T-aPw"> |
||||
<rect key="frame" x="161" y="8" width="175" height="20"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="20" id="y9Z-oT-NCB"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Label" id="ysU-zz-gJh"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/> |
||||
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstAttribute="trailing" secondItem="Rty-6T-aPw" secondAttribute="trailing" constant="11" id="1Gg-n3-Hv8"/> |
||||
<constraint firstItem="3B2-hV-f8v" firstAttribute="leading" secondItem="byp-2M-iAO" secondAttribute="leading" constant="8" id="Ahs-HL-zfw"/> |
||||
<constraint firstAttribute="bottom" secondItem="KlN-dU-s3o" secondAttribute="bottom" constant="5" id="Hfs-he-pyg"/> |
||||
<constraint firstItem="3B2-hV-f8v" firstAttribute="top" secondItem="5jL-eb-qdB" secondAttribute="bottom" constant="3" id="Kkl-0p-AQX"/> |
||||
<constraint firstItem="5jL-eb-qdB" firstAttribute="top" secondItem="byp-2M-iAO" secondAttribute="top" constant="8" id="Lsa-mI-nMD"/> |
||||
<constraint firstItem="Rty-6T-aPw" firstAttribute="leading" secondItem="Ueh-Ln-TC8" secondAttribute="trailing" constant="3" id="NEj-GQ-4oy"/> |
||||
<constraint firstItem="5jL-eb-qdB" firstAttribute="leading" secondItem="byp-2M-iAO" secondAttribute="leading" constant="8" id="YFf-7y-AA0"/> |
||||
<constraint firstAttribute="bottom" secondItem="Ueh-Ln-TC8" secondAttribute="bottom" constant="5" id="kS2-Vc-NT7"/> |
||||
<constraint firstAttribute="bottom" secondItem="Rty-6T-aPw" secondAttribute="bottom" constant="8" id="pyy-35-q2k"/> |
||||
<constraint firstItem="Ueh-Ln-TC8" firstAttribute="leading" secondItem="KlN-dU-s3o" secondAttribute="trailing" constant="2" id="qYv-aW-l68"/> |
||||
<constraint firstAttribute="trailing" secondItem="3B2-hV-f8v" secondAttribute="trailing" constant="8" id="rae-0k-Dgj"/> |
||||
<constraint firstAttribute="trailing" secondItem="5jL-eb-qdB" secondAttribute="trailing" constant="8" id="uy8-q5-8Vi"/> |
||||
<constraint firstItem="KlN-dU-s3o" firstAttribute="leading" secondItem="byp-2M-iAO" secondAttribute="leading" constant="8" id="y6V-Aa-AZU"/> |
||||
<constraint firstItem="Ueh-Ln-TC8" firstAttribute="height" secondItem="KlN-dU-s3o" secondAttribute="height" id="zET-ty-u3G"/> |
||||
</constraints> |
||||
</view> |
||||
<point key="canvasLocation" x="582.5" y="681"/> |
||||
</window> |
||||
<userDefaultsController representsSharedInstance="YES" id="sEG-Zb-KUM"/> |
||||
</objects> |
||||
<resources> |
||||
<image name="NSAddTemplate" width="11" height="11"/> |
||||
<image name="NSInfo" width="32" height="32"/> |
||||
<image name="NSRemoveTemplate" width="11" height="11"/> |
||||
</resources> |
||||
</document> |
@ -1,28 +0,0 @@
|
||||
/* |
||||
Localizable.strings |
||||
Clocker |
||||
|
||||
Created by Abhishek Banthia on 11/17/15. |
||||
|
||||
*/ |
||||
|
||||
"Yesterday" = "Yesterday"; |
||||
"Today" = "Today"; |
||||
"Tomorrow" = "Tomorrow"; |
||||
"MaximumTimezoneMessage" = "Maximum 10 timezones allowed!"; |
||||
"DuplicateTimezoneMessage" = "Timezone has already been selected!"; |
||||
|
||||
//Rating App |
||||
"Not Really" = "Not Really"; |
||||
"Yes!" = "Yes!"; |
||||
"AskForRatingMessage" = "Rate us on the App Store, then?"; |
||||
"AskForFeedbackMessage" = "Mind giving us some feedback?"; |
||||
"NoSelected" = "No, thanks"; |
||||
"YesSelected" = "Ok, sure"; |
||||
|
||||
"iRateMessageTitle" = "Rate %@"; |
||||
"iRateAppMessage" = "If you enjoy using %@, would you mind taking a moment to rate it? It won’t take more than a minute. Thanks for your support!"; |
||||
"iRateGameMessage" = "If you enjoy playing %@, would you mind taking a moment to rate it? It won’t take more than a minute. Thanks for your support!"; |
||||
"iRateCancelButton" = "No, Thanks"; |
||||
"iRateRateButton" = "Rate It Now"; |
||||
"iRateRemindButton" = "Remind Me Later"; |
@ -1,652 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="8191" systemVersion="15B42" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"> |
||||
<dependencies> |
||||
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="8191"/> |
||||
</dependencies> |
||||
<objects> |
||||
<customObject id="-2" userLabel="File's Owner" customClass="NSApplication"> |
||||
<connections> |
||||
<outlet property="delegate" destination="494" id="495"/> |
||||
</connections> |
||||
</customObject> |
||||
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/> |
||||
<customObject id="-3" userLabel="Application" customClass="NSObject"/> |
||||
<menu title="AMainMenu" systemMenu="main" id="29"> |
||||
<items> |
||||
<menuItem title="Clocker" id="56"> |
||||
<menu key="submenu" title="Clocker" systemMenu="apple" id="57"> |
||||
<items> |
||||
<menuItem title="About Clocker" id="58"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="orderFrontStandardAboutPanel:" target="-2" id="142"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="236"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Preferences…" keyEquivalent="," id="129"/> |
||||
<menuItem isSeparatorItem="YES" id="143"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Services" id="131"> |
||||
<menu key="submenu" title="Services" systemMenu="services" id="130"/> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="144"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Hide Clocker" keyEquivalent="h" id="134"> |
||||
<connections> |
||||
<action selector="hide:" target="-1" id="367"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Hide Others" keyEquivalent="h" id="145"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="hideOtherApplications:" target="-1" id="368"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Show All" id="150"> |
||||
<connections> |
||||
<action selector="unhideAllApplications:" target="-1" id="370"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="149"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Quit Clocker" keyEquivalent="q" id="136"> |
||||
<connections> |
||||
<action selector="terminate:" target="-3" id="449"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="File" id="83"> |
||||
<menu key="submenu" title="File" id="81"> |
||||
<items> |
||||
<menuItem title="New" keyEquivalent="n" id="82"> |
||||
<connections> |
||||
<action selector="newDocument:" target="-1" id="373"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Open…" keyEquivalent="o" id="72"> |
||||
<connections> |
||||
<action selector="openDocument:" target="-1" id="374"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Open Recent" id="124"> |
||||
<menu key="submenu" title="Open Recent" systemMenu="recentDocuments" id="125"> |
||||
<items> |
||||
<menuItem title="Clear Menu" id="126"> |
||||
<connections> |
||||
<action selector="clearRecentDocuments:" target="-1" id="127"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="79"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Close" keyEquivalent="w" id="73"> |
||||
<connections> |
||||
<action selector="performClose:" target="-1" id="193"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Save…" keyEquivalent="s" id="75"> |
||||
<connections> |
||||
<action selector="saveDocument:" target="-1" id="362"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Revert to Saved" id="112"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="revertDocumentToSaved:" target="-1" id="364"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="74"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Page Setup..." keyEquivalent="P" id="77"> |
||||
<modifierMask key="keyEquivalentModifierMask" shift="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="runPageLayout:" target="-1" id="87"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Print…" keyEquivalent="p" id="78"> |
||||
<connections> |
||||
<action selector="print:" target="-1" id="86"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Edit" id="217"> |
||||
<menu key="submenu" title="Edit" id="205"> |
||||
<items> |
||||
<menuItem title="Undo" keyEquivalent="z" id="207"> |
||||
<connections> |
||||
<action selector="undo:" target="-1" id="223"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Redo" keyEquivalent="Z" id="215"> |
||||
<modifierMask key="keyEquivalentModifierMask" shift="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="redo:" target="-1" id="231"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="206"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Cut" keyEquivalent="x" id="199"> |
||||
<connections> |
||||
<action selector="cut:" target="-1" id="228"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Copy" keyEquivalent="c" id="197"> |
||||
<connections> |
||||
<action selector="copy:" target="-1" id="224"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Paste" keyEquivalent="v" id="203"> |
||||
<connections> |
||||
<action selector="paste:" target="-1" id="226"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Paste and Match Style" keyEquivalent="V" id="485"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="pasteAsPlainText:" target="-1" id="486"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Delete" id="202"> |
||||
<connections> |
||||
<action selector="delete:" target="-1" id="235"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Select All" keyEquivalent="a" id="198"> |
||||
<connections> |
||||
<action selector="selectAll:" target="-1" id="232"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="214"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Find" id="218"> |
||||
<menu key="submenu" title="Find" id="220"> |
||||
<items> |
||||
<menuItem title="Find…" tag="1" keyEquivalent="f" id="209"> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="241"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Find and Replace…" tag="12" keyEquivalent="f" id="534"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="535"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Find Next" tag="2" keyEquivalent="g" id="208"> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="487"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Find Previous" tag="3" keyEquivalent="G" id="213"> |
||||
<modifierMask key="keyEquivalentModifierMask" shift="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="488"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Use Selection for Find" tag="7" keyEquivalent="e" id="221"> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="489"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Jump to Selection" keyEquivalent="j" id="210"> |
||||
<connections> |
||||
<action selector="centerSelectionInVisibleArea:" target="-1" id="245"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Spelling and Grammar" id="216"> |
||||
<menu key="submenu" title="Spelling and Grammar" id="200"> |
||||
<items> |
||||
<menuItem title="Show Spelling and Grammar" keyEquivalent=":" id="204"> |
||||
<connections> |
||||
<action selector="showGuessPanel:" target="-1" id="230"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Check Document Now" keyEquivalent=";" id="201"> |
||||
<connections> |
||||
<action selector="checkSpelling:" target="-1" id="225"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="453"/> |
||||
<menuItem title="Check Spelling While Typing" id="219"> |
||||
<connections> |
||||
<action selector="toggleContinuousSpellChecking:" target="-1" id="222"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Check Grammar With Spelling" id="346"> |
||||
<connections> |
||||
<action selector="toggleGrammarChecking:" target="-1" id="347"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Correct Spelling Automatically" id="454"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="toggleAutomaticSpellingCorrection:" target="-1" id="456"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Substitutions" id="348"> |
||||
<menu key="submenu" title="Substitutions" id="349"> |
||||
<items> |
||||
<menuItem title="Show Substitutions" id="457"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="orderFrontSubstitutionsPanel:" target="-1" id="458"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="459"/> |
||||
<menuItem title="Smart Copy/Paste" tag="1" keyEquivalent="f" id="350"> |
||||
<connections> |
||||
<action selector="toggleSmartInsertDelete:" target="-1" id="355"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Smart Quotes" tag="2" keyEquivalent="g" id="351"> |
||||
<connections> |
||||
<action selector="toggleAutomaticQuoteSubstitution:" target="-1" id="356"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Smart Dashes" id="460"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="toggleAutomaticDashSubstitution:" target="-1" id="461"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Smart Links" tag="3" keyEquivalent="G" id="354"> |
||||
<modifierMask key="keyEquivalentModifierMask" shift="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="toggleAutomaticLinkDetection:" target="-1" id="357"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Text Replacement" id="462"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="toggleAutomaticTextReplacement:" target="-1" id="463"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Transformations" id="450"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Transformations" id="451"> |
||||
<items> |
||||
<menuItem title="Make Upper Case" id="452"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="uppercaseWord:" target="-1" id="464"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Make Lower Case" id="465"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="lowercaseWord:" target="-1" id="468"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Capitalize" id="466"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="capitalizeWord:" target="-1" id="467"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Speech" id="211"> |
||||
<menu key="submenu" title="Speech" id="212"> |
||||
<items> |
||||
<menuItem title="Start Speaking" id="196"> |
||||
<connections> |
||||
<action selector="startSpeaking:" target="-1" id="233"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Stop Speaking" id="195"> |
||||
<connections> |
||||
<action selector="stopSpeaking:" target="-1" id="227"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Format" id="375"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Format" id="376"> |
||||
<items> |
||||
<menuItem title="Font" id="377"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Font" systemMenu="font" id="388"> |
||||
<items> |
||||
<menuItem title="Show Fonts" keyEquivalent="t" id="389"> |
||||
<connections> |
||||
<action selector="orderFrontFontPanel:" target="420" id="424"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Bold" tag="2" keyEquivalent="b" id="390"> |
||||
<connections> |
||||
<action selector="addFontTrait:" target="420" id="421"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Italic" tag="1" keyEquivalent="i" id="391"> |
||||
<connections> |
||||
<action selector="addFontTrait:" target="420" id="422"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Underline" keyEquivalent="u" id="392"> |
||||
<connections> |
||||
<action selector="underline:" target="-1" id="432"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="393"/> |
||||
<menuItem title="Bigger" tag="3" keyEquivalent="+" id="394"> |
||||
<connections> |
||||
<action selector="modifyFont:" target="420" id="425"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Smaller" tag="4" keyEquivalent="-" id="395"> |
||||
<connections> |
||||
<action selector="modifyFont:" target="420" id="423"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="396"/> |
||||
<menuItem title="Kern" id="397"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Kern" id="415"> |
||||
<items> |
||||
<menuItem title="Use Default" id="416"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="useStandardKerning:" target="-1" id="438"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Use None" id="417"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="turnOffKerning:" target="-1" id="441"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Tighten" id="418"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="tightenKerning:" target="-1" id="431"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Loosen" id="419"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="loosenKerning:" target="-1" id="435"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Ligature" id="398"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Ligature" id="411"> |
||||
<items> |
||||
<menuItem title="Use Default" id="412"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="useStandardLigatures:" target="-1" id="439"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Use None" id="413"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="turnOffLigatures:" target="-1" id="440"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Use All" id="414"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="useAllLigatures:" target="-1" id="434"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Baseline" id="399"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Baseline" id="405"> |
||||
<items> |
||||
<menuItem title="Use Default" id="406"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="unscript:" target="-1" id="437"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Superscript" id="407"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="superscript:" target="-1" id="430"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Subscript" id="408"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="subscript:" target="-1" id="429"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Raise" id="409"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="raiseBaseline:" target="-1" id="426"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Lower" id="410"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="lowerBaseline:" target="-1" id="427"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="400"/> |
||||
<menuItem title="Show Colors" keyEquivalent="C" id="401"> |
||||
<connections> |
||||
<action selector="orderFrontColorPanel:" target="-1" id="433"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="402"/> |
||||
<menuItem title="Copy Style" keyEquivalent="c" id="403"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="copyFont:" target="-1" id="428"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Paste Style" keyEquivalent="v" id="404"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="pasteFont:" target="-1" id="436"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Text" id="496"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Text" id="497"> |
||||
<items> |
||||
<menuItem title="Align Left" keyEquivalent="{" id="498"> |
||||
<connections> |
||||
<action selector="alignLeft:" target="-1" id="524"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Center" keyEquivalent="|" id="499"> |
||||
<connections> |
||||
<action selector="alignCenter:" target="-1" id="518"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Justify" id="500"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="alignJustified:" target="-1" id="523"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Align Right" keyEquivalent="}" id="501"> |
||||
<connections> |
||||
<action selector="alignRight:" target="-1" id="521"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="502"/> |
||||
<menuItem title="Writing Direction" id="503"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Writing Direction" id="508"> |
||||
<items> |
||||
<menuItem title="Paragraph" enabled="NO" id="509"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
</menuItem> |
||||
<menuItem id="510"> |
||||
<string key="title"> Default</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeBaseWritingDirectionNatural:" target="-1" id="525"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem id="511"> |
||||
<string key="title"> Left to Right</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeBaseWritingDirectionLeftToRight:" target="-1" id="526"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem id="512"> |
||||
<string key="title"> Right to Left</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeBaseWritingDirectionRightToLeft:" target="-1" id="527"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="513"/> |
||||
<menuItem title="Selection" enabled="NO" id="514"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
</menuItem> |
||||
<menuItem id="515"> |
||||
<string key="title"> Default</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeTextWritingDirectionNatural:" target="-1" id="528"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem id="516"> |
||||
<string key="title"> Left to Right</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeTextWritingDirectionLeftToRight:" target="-1" id="529"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem id="517"> |
||||
<string key="title"> Right to Left</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeTextWritingDirectionRightToLeft:" target="-1" id="530"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="504"/> |
||||
<menuItem title="Show Ruler" id="505"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="toggleRuler:" target="-1" id="520"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Copy Ruler" keyEquivalent="c" id="506"> |
||||
<modifierMask key="keyEquivalentModifierMask" control="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="copyRuler:" target="-1" id="522"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Paste Ruler" keyEquivalent="v" id="507"> |
||||
<modifierMask key="keyEquivalentModifierMask" control="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="pasteRuler:" target="-1" id="519"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="View" id="295"> |
||||
<menu key="submenu" title="View" id="296"> |
||||
<items> |
||||
<menuItem title="Show Toolbar" keyEquivalent="t" id="297"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="toggleToolbarShown:" target="-1" id="366"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Customize Toolbar…" id="298"> |
||||
<connections> |
||||
<action selector="runToolbarCustomizationPalette:" target="-1" id="365"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Window" id="19"> |
||||
<menu key="submenu" title="Window" systemMenu="window" id="24"> |
||||
<items> |
||||
<menuItem title="Minimize" keyEquivalent="m" id="23"> |
||||
<connections> |
||||
<action selector="performMiniaturize:" target="-1" id="37"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Zoom" id="239"> |
||||
<connections> |
||||
<action selector="performZoom:" target="-1" id="240"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="92"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Bring All to Front" id="5"> |
||||
<connections> |
||||
<action selector="arrangeInFront:" target="-1" id="39"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Help" id="490"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Help" systemMenu="help" id="491"> |
||||
<items> |
||||
<menuItem title="Clocker Help" keyEquivalent="?" id="492"> |
||||
<connections> |
||||
<action selector="showHelp:" target="-1" id="493"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
<customObject id="494" customClass="ApplicationDelegate"/> |
||||
<customObject id="420" customClass="NSFontManager"/> |
||||
</objects> |
||||
</document> |
@ -1,261 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="9531" systemVersion="15C50" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES"> |
||||
<dependencies> |
||||
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="9531"/> |
||||
</dependencies> |
||||
<objects> |
||||
<customObject id="-2" userLabel="File's Owner" customClass="PanelController"> |
||||
<connections> |
||||
<outlet property="backgroundView" destination="6" id="20"/> |
||||
<outlet property="mainTableview" destination="dFw-ts-8OZ" id="wwJ-jA-lCy"/> |
||||
<outlet property="preferencesButton" destination="OFy-u1-TnH" id="SId-Ih-ssT"/> |
||||
<outlet property="scrollViewHeight" destination="QcT-N0-G4s" id="EHr-Co-L0Z"/> |
||||
<outlet property="shutdownButton" destination="nTt-pf-Hw2" id="gCK-0D-gnK"/> |
||||
<outlet property="window" destination="5" id="7"/> |
||||
</connections> |
||||
</customObject> |
||||
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/> |
||||
<customObject id="-3" userLabel="Application" customClass="NSObject"/> |
||||
<window allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" restorable="NO" oneShot="NO" releasedWhenClosed="NO" showsToolbarButton="NO" visibleAtLaunch="NO" animationBehavior="none" id="5" customClass="Panel"> |
||||
<windowStyleMask key="styleMask" utility="YES" nonactivatingPanel="YES" texturedBackground="YES"/> |
||||
<windowCollectionBehavior key="collectionBehavior" moveToActiveSpace="YES" ignoresCycle="YES"/> |
||||
<windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> |
||||
<rect key="contentRect" x="162" y="101" width="280" height="273"/> |
||||
<rect key="screenRect" x="0.0" y="0.0" width="1280" height="777"/> |
||||
<view key="contentView" id="6" customClass="BackgroundView"> |
||||
<rect key="frame" x="0.0" y="0.0" width="280" height="273"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<subviews> |
||||
<scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="56" horizontalPageScroll="10" verticalLineScroll="56" verticalPageScroll="10" hasHorizontalScroller="NO" hasVerticalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="4Gd-Nv-fXr"> |
||||
<rect key="frame" x="-1" y="0.0" width="282" height="265"/> |
||||
<clipView key="contentView" id="4MZ-Di-yNR"> |
||||
<rect key="frame" x="0.0" y="0.0" width="282" height="265"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<tableView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" columnSelection="YES" multipleSelection="NO" autosaveColumns="NO" rowHeight="55" viewBased="YES" id="dFw-ts-8OZ"> |
||||
<rect key="frame" x="0.0" y="0.0" width="282" height="0.0"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<size key="intercellSpacing" width="3" height="1"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
<tableViewGridLines key="gridStyleMask" dashed="YES"/> |
||||
<color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> |
||||
<tableColumns> |
||||
<tableColumn width="279" minWidth="40" maxWidth="1000" id="LTt-db-Dwv"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="7LK-2q-H3f"> |
||||
<font key="font" metaFont="system"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
<prototypeCellViews> |
||||
<tableCellView identifier="timeZoneCell" id="qbN-ba-fho"> |
||||
<rect key="frame" x="1" y="0.0" width="279" height="60"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" tag="100" translatesAutoresizingMaskIntoConstraints="NO" id="etF-33-bCB"> |
||||
<rect key="frame" x="8" y="26" width="144" height="26"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="140" id="32b-h6-joo"/> |
||||
<constraint firstAttribute="height" constant="26" id="vod-YN-iNX"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" placeholderString="Timezone Name" id="rnh-AP-ooc"> |
||||
<font key="font" size="15" name="Helvetica-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
<textField verticalHuggingPriority="750" tag="102" translatesAutoresizingMaskIntoConstraints="NO" id="QUd-7D-q14"> |
||||
<rect key="frame" x="8" y="9" width="104" height="22"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="22" id="42Y-hy-Uo7"/> |
||||
<constraint firstAttribute="width" constant="100" id="fkH-oq-qvM"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" placeholderString="Date" id="74U-rv-5xj"> |
||||
<font key="font" size="13" name="Helvetica-Bold"/> |
||||
<color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" tag="101" translatesAutoresizingMaskIntoConstraints="NO" id="vnv-J2-7r1"> |
||||
<rect key="frame" x="127" y="17" width="146" height="33"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="33" id="3WU-de-OQL"/> |
||||
<constraint firstAttribute="width" constant="142" id="cQV-gJ-zMz"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" placeholderString="23:46" id="g8s-EU-UHx"> |
||||
<font key="font" size="31" name="Helvetica-Light"/> |
||||
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstItem="QUd-7D-q14" firstAttribute="leading" secondItem="qbN-ba-fho" secondAttribute="leading" constant="10" id="0Qz-Ev-efP"/> |
||||
<constraint firstItem="etF-33-bCB" firstAttribute="top" secondItem="qbN-ba-fho" secondAttribute="top" constant="8" id="Lct-kG-usb"/> |
||||
<constraint firstItem="vnv-J2-7r1" firstAttribute="centerY" secondItem="qbN-ba-fho" secondAttribute="centerY" constant="-3.5" id="TuQ-gE-ZUh"/> |
||||
<constraint firstItem="QUd-7D-q14" firstAttribute="top" secondItem="etF-33-bCB" secondAttribute="bottom" constant="-5" id="VO6-Zn-eA3"/> |
||||
<constraint firstItem="etF-33-bCB" firstAttribute="leading" secondItem="qbN-ba-fho" secondAttribute="leading" constant="10" id="ueW-ow-ZRq"/> |
||||
<constraint firstAttribute="trailing" secondItem="vnv-J2-7r1" secondAttribute="trailing" constant="8" id="zXo-eA-0bQ"/> |
||||
</constraints> |
||||
<connections> |
||||
<outlet property="textField" destination="etF-33-bCB" id="6fd-cc-Qq2"/> |
||||
</connections> |
||||
</tableCellView> |
||||
<tableCellView identifier="ratingCellView" id="okB-xY-a0j" customClass="CLRatingCellView"> |
||||
<rect key="frame" x="1" y="61" width="279" height="51"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="jXc-p0-1Vk"> |
||||
<rect key="frame" x="92" y="31" width="105" height="20"/> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Enjoying Clocker?" id="ndA-Ha-EsP"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="YxC-hC-7Vl"> |
||||
<rect key="frame" x="29" y="2" width="112" height="25"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="100" id="UM3-PG-yeW"/> |
||||
<constraint firstAttribute="height" constant="14" id="VTt-oE-KTM"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="push" title="Not Really" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="sIH-mQ-D4c"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="actionOnNegativeFeedback:" target="okB-xY-a0j" id="XK0-2E-71l"/> |
||||
</connections> |
||||
</button> |
||||
<imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="q4i-UU-xfU"> |
||||
<rect key="frame" x="72" y="31" width="16" height="16"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="16" id="JP3-T1-UwO"/> |
||||
<constraint firstAttribute="width" constant="16" id="hmS-fi-Pia"/> |
||||
</constraints> |
||||
<imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="ClockerIcon-16" id="sT6-TB-jDv"/> |
||||
</imageView> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="3tw-cq-C6z"> |
||||
<rect key="frame" x="134" y="2" width="112" height="25"/> |
||||
<buttonCell key="cell" type="push" title="Yes!" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="5Bx-yn-FJx"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="actionOnPositiveFeedback:" target="okB-xY-a0j" id="wAq-XE-X9g"/> |
||||
</connections> |
||||
</button> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstItem="jXc-p0-1Vk" firstAttribute="leading" secondItem="q4i-UU-xfU" secondAttribute="trailing" constant="6" id="0X1-Ng-RST"/> |
||||
<constraint firstItem="YxC-hC-7Vl" firstAttribute="top" secondItem="jXc-p0-1Vk" secondAttribute="bottom" constant="8" id="78l-SH-Kaa"/> |
||||
<constraint firstItem="jXc-p0-1Vk" firstAttribute="centerX" secondItem="okB-xY-a0j" secondAttribute="centerX" constant="5" id="MJ9-vI-0gB"/> |
||||
<constraint firstItem="3tw-cq-C6z" firstAttribute="width" secondItem="YxC-hC-7Vl" secondAttribute="width" id="MYN-ZO-M9T"/> |
||||
<constraint firstItem="3tw-cq-C6z" firstAttribute="centerX" secondItem="okB-xY-a0j" secondAttribute="centerX" constant="50" id="aAE-60-B3V"/> |
||||
<constraint firstItem="q4i-UU-xfU" firstAttribute="top" secondItem="okB-xY-a0j" secondAttribute="top" constant="4" id="dkR-EE-3p4"/> |
||||
<constraint firstItem="3tw-cq-C6z" firstAttribute="height" secondItem="YxC-hC-7Vl" secondAttribute="height" id="jCd-0q-iGl"/> |
||||
<constraint firstItem="jXc-p0-1Vk" firstAttribute="top" secondItem="okB-xY-a0j" secondAttribute="top" id="l7Q-lR-phj"/> |
||||
<constraint firstItem="3tw-cq-C6z" firstAttribute="top" secondItem="jXc-p0-1Vk" secondAttribute="bottom" constant="8" id="mij-Pa-v49"/> |
||||
<constraint firstItem="YxC-hC-7Vl" firstAttribute="centerX" secondItem="okB-xY-a0j" secondAttribute="centerX" constant="-55" id="o5X-Xf-F3P"/> |
||||
</constraints> |
||||
<connections> |
||||
<outlet property="imageView" destination="q4i-UU-xfU" id="XfA-wa-OB3"/> |
||||
<outlet property="leftButton" destination="YxC-hC-7Vl" id="Mve-Ky-U4P"/> |
||||
<outlet property="leftField" destination="jXc-p0-1Vk" id="QcQ-8R-nPp"/> |
||||
<outlet property="rightButton" destination="3tw-cq-C6z" id="wW6-vN-iAH"/> |
||||
</connections> |
||||
</tableCellView> |
||||
</prototypeCellViews> |
||||
</tableColumn> |
||||
</tableColumns> |
||||
<connections> |
||||
<outlet property="dataSource" destination="-2" id="Q9t-Yx-hmz"/> |
||||
<outlet property="delegate" destination="-2" id="AqY-uU-Noo"/> |
||||
</connections> |
||||
</tableView> |
||||
</subviews> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</clipView> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="265" id="QcT-N0-G4s"/> |
||||
</constraints> |
||||
<scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="DJr-1R-9LK"> |
||||
<rect key="frame" x="-100" y="-100" width="223" height="15"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="cfu-8V-LKK"> |
||||
<rect key="frame" x="-100" y="-100" width="15" height="102"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
</scrollView> |
||||
<textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="HR1-ZK-Ey0"> |
||||
<rect key="frame" x="1" y="2" width="278" height="22"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="22" id="IxM-FF-J1F"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" state="on" alignment="center" placeholderString="Clocker" drawsBackground="YES" id="KVB-OA-XfT"> |
||||
<font key="font" size="17" name="Palatino-Bold"/> |
||||
<color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="OFy-u1-TnH"> |
||||
<rect key="frame" x="246" y="1" width="29" height="19"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="29" id="MIQ-4K-E5A"/> |
||||
<constraint firstAttribute="height" constant="18" id="X7D-ep-wB4"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="recessed" bezelStyle="recessed" image="NSActionTemplate" imagePosition="only" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="vYm-fs-Zjd"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" metaFont="systemBold" size="12"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="openPreferences:" target="-2" id="0Yc-Eq-obQ"/> |
||||
</connections> |
||||
</button> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="nTt-pf-Hw2"> |
||||
<rect key="frame" x="0.0" y="1" width="29" height="19"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="29" id="8kZ-Pj-VK6"/> |
||||
<constraint firstAttribute="height" constant="18" id="sVG-VE-3q4"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="recessed" bezelStyle="recessed" image="PowerIcon" imagePosition="only" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="sUh-16-Fhk"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES" changeBackground="YES" changeGray="YES"/> |
||||
<font key="font" metaFont="systemBold" size="12"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="terminate:" target="-1" id="fpZ-pt-UiU"/> |
||||
</connections> |
||||
</button> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstItem="4Gd-Nv-fXr" firstAttribute="top" secondItem="6" secondAttribute="top" constant="8" id="1g0-Hm-7Gh"/> |
||||
<constraint firstAttribute="trailing" secondItem="HR1-ZK-Ey0" secondAttribute="trailing" constant="1" id="1ol-mo-aQU"/> |
||||
<constraint firstAttribute="bottom" secondItem="HR1-ZK-Ey0" secondAttribute="bottom" constant="2" id="Jtb-Nx-FYR"/> |
||||
<constraint firstAttribute="bottom" secondItem="nTt-pf-Hw2" secondAttribute="bottom" constant="2" id="QoV-TI-KVJ"/> |
||||
<constraint firstAttribute="bottom" secondItem="OFy-u1-TnH" secondAttribute="bottom" constant="2" id="Ubf-Mv-WMp"/> |
||||
<constraint firstAttribute="trailing" secondItem="4Gd-Nv-fXr" secondAttribute="trailing" constant="-1" id="XP6-W0-2XT"/> |
||||
<constraint firstItem="HR1-ZK-Ey0" firstAttribute="leading" secondItem="6" secondAttribute="leading" constant="1" id="XQ8-hU-ayC"/> |
||||
<constraint firstItem="4Gd-Nv-fXr" firstAttribute="leading" secondItem="6" secondAttribute="leading" constant="-1" id="fHc-VQ-mJ3"/> |
||||
<constraint firstAttribute="trailing" secondItem="OFy-u1-TnH" secondAttribute="trailing" constant="5" id="p2a-qj-LHE"/> |
||||
<constraint firstItem="nTt-pf-Hw2" firstAttribute="leading" secondItem="6" secondAttribute="leading" id="pKl-Ay-0cB"/> |
||||
</constraints> |
||||
</view> |
||||
<connections> |
||||
<outlet property="delegate" destination="-2" id="8"/> |
||||
</connections> |
||||
<point key="canvasLocation" x="230" y="392.5"/> |
||||
</window> |
||||
<userDefaultsController representsSharedInstance="YES" id="O3B-kK-4vm"/> |
||||
</objects> |
||||
<resources> |
||||
<image name="ClockerIcon-16" width="16" height="16"/> |
||||
<image name="NSActionTemplate" width="14" height="14"/> |
||||
<image name="PowerIcon" width="270" height="270"/> |
||||
</resources> |
||||
</document> |
@ -1,338 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="9531" systemVersion="15C50" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES"> |
||||
<dependencies> |
||||
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="9531"/> |
||||
</dependencies> |
||||
<objects> |
||||
<customObject id="-2" userLabel="File's Owner" customClass="PreferencesWindowController"> |
||||
<connections> |
||||
<outlet property="availableTimezoneTableView" destination="6Hm-XH-CMI" id="GA1-tc-E9E"/> |
||||
<outlet property="customView" destination="se5-gp-TjO" id="6Il-Ob-1H1"/> |
||||
<outlet property="is24HourFormatSelected" destination="N47-gw-Pay" id="2MV-F1-uYf"/> |
||||
<outlet property="messageLabel" destination="Rty-6T-aPw" id="Qg4-mk-P90"/> |
||||
<outlet property="searchField" destination="5jL-eb-qdB" id="K6C-JS-ko0"/> |
||||
<outlet property="timezonePanel" destination="Z6I-Ny-aGx" id="tXP-KH-Xfi"/> |
||||
<outlet property="timezoneTableView" destination="oKD-AN-gPT" id="oD2-n0-4jf"/> |
||||
<outlet property="window" destination="F0z-JX-Cv5" id="gIp-Ho-8D9"/> |
||||
</connections> |
||||
</customObject> |
||||
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/> |
||||
<customObject id="-3" userLabel="Application" customClass="NSObject"/> |
||||
<window identifier="Selected Timezones" title="Clocker" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" restorable="NO" oneShot="NO" releasedWhenClosed="NO" animationBehavior="documentWindow" id="F0z-JX-Cv5"> |
||||
<windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES"/> |
||||
<windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> |
||||
<rect key="contentRect" x="407" y="179" width="439" height="373"/> |
||||
<rect key="screenRect" x="0.0" y="0.0" width="1280" height="777"/> |
||||
<value key="minSize" type="size" width="439" height="351"/> |
||||
<view key="contentView" id="se5-gp-TjO"> |
||||
<rect key="frame" x="0.0" y="0.0" width="439" height="373"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<button toolTip="Add a timezone" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="DCz-qN-ydK"> |
||||
<rect key="frame" x="11" y="67" width="21" height="22"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="20" id="aUK-f8-pvY"/> |
||||
<constraint firstAttribute="width" constant="21" id="hAr-3f-KNJ"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="smallSquare" bezelStyle="smallSquare" image="NSAddTemplate" imagePosition="overlaps" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="rjd-Yu-81P"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" metaFont="system"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="addTimeZone:" target="-2" id="dXi-qw-Vu2"/> |
||||
</connections> |
||||
</button> |
||||
<button toolTip="Remove a timezone" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ixe-Sn-8qT"> |
||||
<rect key="frame" x="32" y="67" width="21" height="22"/> |
||||
<buttonCell key="cell" type="smallSquare" bezelStyle="smallSquare" image="NSRemoveTemplate" imagePosition="overlaps" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="SVO-Wt-Mfb"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" metaFont="system"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="removeFromFavourites:" target="-2" id="65F-Jn-DMw"/> |
||||
</connections> |
||||
</button> |
||||
<scrollView focusRingType="none" borderType="none" autohidesScrollers="YES" horizontalLineScroll="22" horizontalPageScroll="10" verticalLineScroll="22" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cI0-M7-C9h"> |
||||
<rect key="frame" x="10" y="94" width="419" height="271"/> |
||||
<clipView key="contentView" id="WWk-6i-nI7"> |
||||
<rect key="frame" x="0.0" y="0.0" width="419" height="271"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<tableView focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" alternatingRowBackgroundColors="YES" columnSelection="YES" autosaveColumns="NO" rowHeight="20" headerView="dKI-Ue-9QX" id="oKD-AN-gPT"> |
||||
<rect key="frame" x="0.0" y="0.0" width="419" height="248"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<size key="intercellSpacing" width="3" height="2"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> |
||||
<tableColumns> |
||||
<tableColumn identifier="timezoneName" editable="NO" width="252.75" minWidth="80" maxWidth="1000" id="CJN-Eu-3s5"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" title="Selected Timezone(s)"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="Vu3-3D-aDG"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
</tableColumn> |
||||
<tableColumn identifier="label" width="150" minWidth="80" maxWidth="150" id="f5a-V1-lGO"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Label"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="fiu-I9-CnG"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
</tableColumn> |
||||
</tableColumns> |
||||
<connections> |
||||
<outlet property="dataSource" destination="-2" id="do8-kY-7j3"/> |
||||
<outlet property="delegate" destination="-2" id="whN-25-mkj"/> |
||||
</connections> |
||||
</tableView> |
||||
</subviews> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</clipView> |
||||
<scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="Hxj-Tc-UWs"> |
||||
<rect key="frame" x="0.0" y="229" width="419" height="16"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="s9V-58-jwp"> |
||||
<rect key="frame" x="-14" y="-7" width="15" height="0.0"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<tableHeaderView key="headerView" focusRingType="none" id="dKI-Ue-9QX"> |
||||
<rect key="frame" x="0.0" y="0.0" width="419" height="23"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</tableHeaderView> |
||||
</scrollView> |
||||
<button toolTip="Clocker will start on each system launch" translatesAutoresizingMaskIntoConstraints="NO" id="GDz-2Z-uX5" customClass="ColoredButton"> |
||||
<rect key="frame" x="9" y="18" width="191" height="18"/> |
||||
<buttonCell key="cell" type="check" title="Start Clocker on system startup" bezelStyle="regularSquare" imagePosition="left" inset="2" id="h45-jZ-cPY"> |
||||
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> |
||||
<font key="font" size="12" name="Helvetica-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<binding destination="-2" name="value" keyPath="self.launchOnLogin" id="Vqw-iQ-qOe"/> |
||||
</connections> |
||||
</button> |
||||
<button toolTip="Show time using a 24-hour format" translatesAutoresizingMaskIntoConstraints="NO" id="N47-gw-Pay" customClass="ColoredButton"> |
||||
<rect key="frame" x="9" y="40" width="343" height="22"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="339" id="0eX-T7-EbU"/> |
||||
<constraint firstAttribute="height" constant="18" id="qwS-Bk-vmy"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="check" title="Use a 24-hour clock" bezelStyle="regularSquare" imagePosition="left" alignment="left" state="on" inset="2" id="Fro-eC-cMC"> |
||||
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> |
||||
<font key="font" size="12" name="Helvetica-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="timeFormatSelectionChanged:" target="-2" id="6vB-XV-sSq"/> |
||||
<binding destination="sEG-Zb-KUM" name="value" keyPath="values.is24HourFormatSelected" id="wod-mK-9M5"/> |
||||
</connections> |
||||
</button> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstAttribute="bottom" secondItem="GDz-2Z-uX5" secondAttribute="bottom" constant="20" id="5Dp-Q0-Wed"/> |
||||
<constraint firstItem="DCz-qN-ydK" firstAttribute="top" secondItem="cI0-M7-C9h" secondAttribute="bottom" constant="6" id="6Ye-VD-kSE"/> |
||||
<constraint firstItem="GDz-2Z-uX5" firstAttribute="leading" secondItem="se5-gp-TjO" secondAttribute="leading" constant="11" id="FLl-Pc-Gzn"/> |
||||
<constraint firstItem="cI0-M7-C9h" firstAttribute="leading" secondItem="se5-gp-TjO" secondAttribute="leading" constant="10" id="Fy5-6V-gu1"/> |
||||
<constraint firstItem="ixe-Sn-8qT" firstAttribute="leading" secondItem="DCz-qN-ydK" secondAttribute="trailing" id="TLA-Fw-F7P"/> |
||||
<constraint firstItem="DCz-qN-ydK" firstAttribute="leading" secondItem="se5-gp-TjO" secondAttribute="leading" constant="11" id="Waz-CP-UWF"/> |
||||
<constraint firstItem="N47-gw-Pay" firstAttribute="top" secondItem="ixe-Sn-8qT" secondAttribute="bottom" constant="8" id="gbd-HA-u9p"/> |
||||
<constraint firstItem="N47-gw-Pay" firstAttribute="leading" secondItem="se5-gp-TjO" secondAttribute="leading" constant="11" id="hXb-69-tI0"/> |
||||
<constraint firstItem="ixe-Sn-8qT" firstAttribute="width" secondItem="DCz-qN-ydK" secondAttribute="width" id="o7k-jf-cL0"/> |
||||
<constraint firstItem="GDz-2Z-uX5" firstAttribute="top" secondItem="N47-gw-Pay" secondAttribute="bottom" constant="8" id="pUn-i9-pBy"/> |
||||
<constraint firstItem="ixe-Sn-8qT" firstAttribute="height" secondItem="DCz-qN-ydK" secondAttribute="height" id="rsK-UP-Umg"/> |
||||
<constraint firstItem="cI0-M7-C9h" firstAttribute="top" secondItem="se5-gp-TjO" secondAttribute="top" constant="8" id="u5H-Ff-ivt"/> |
||||
<constraint firstAttribute="trailing" secondItem="cI0-M7-C9h" secondAttribute="trailing" constant="10" id="ut9-6b-cdu"/> |
||||
<constraint firstItem="N47-gw-Pay" firstAttribute="top" secondItem="DCz-qN-ydK" secondAttribute="bottom" constant="8" id="x0C-Ev-Imb"/> |
||||
</constraints> |
||||
</view> |
||||
<toolbar key="toolbar" implicitIdentifier="0AD4A094-FD85-463C-931C-F94AD0EF3FE3" autosavesConfiguration="NO" displayMode="iconAndLabel" sizeMode="small" id="ecX-Gc-CKy"> |
||||
<allowedToolbarItems> |
||||
<toolbarItem implicitItemIdentifier="NSToolbarSpaceItem" id="rqR-1g-uMr"/> |
||||
<toolbarItem implicitItemIdentifier="NSToolbarFlexibleSpaceItem" id="dv3-KP-iA0"/> |
||||
<toolbarItem implicitItemIdentifier="238FBC10-33D9-453A-9B4E-77BB41D4E49A" label="About Us" paletteLabel="About Us" tag="-1" image="NSInfo" autovalidates="NO" id="Q9V-Ke-8F9"> |
||||
<size key="minSize" width="5" height="5"/> |
||||
<connections> |
||||
<action selector="openAboutUsWindow:" target="-2" id="TBq-Iy-SEg"/> |
||||
</connections> |
||||
</toolbarItem> |
||||
</allowedToolbarItems> |
||||
<defaultToolbarItems> |
||||
<toolbarItem reference="rqR-1g-uMr"/> |
||||
<toolbarItem reference="dv3-KP-iA0"/> |
||||
<toolbarItem reference="Q9V-Ke-8F9"/> |
||||
</defaultToolbarItems> |
||||
</toolbar> |
||||
<connections> |
||||
<outlet property="delegate" destination="-2" id="0bl-1N-AYu"/> |
||||
</connections> |
||||
<point key="canvasLocation" x="304.5" y="230.5"/> |
||||
</window> |
||||
<window title="Window" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" hasShadow="NO" hidesOnDeactivate="YES" oneShot="NO" releasedWhenClosed="NO" showsToolbarButton="NO" visibleAtLaunch="NO" animationBehavior="alertPanel" appearanceType="aqua" frameAutosaveName="" id="Z6I-Ny-aGx" customClass="Panel"> |
||||
<windowStyleMask key="styleMask" closable="YES" miniaturizable="YES" resizable="YES" documentModal="YES" nonactivatingPanel="YES" texturedBackground="YES"/> |
||||
<windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> |
||||
<rect key="contentRect" x="120" y="64" width="345" height="320"/> |
||||
<rect key="screenRect" x="0.0" y="0.0" width="1280" height="777"/> |
||||
<value key="minSize" type="size" width="345" height="320"/> |
||||
<value key="maxSize" type="size" width="345" height="320"/> |
||||
<view key="contentView" id="byp-2M-iAO"> |
||||
<rect key="frame" x="0.0" y="0.0" width="345" height="320"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<subviews> |
||||
<scrollView focusRingType="none" borderType="none" autohidesScrollers="YES" horizontalLineScroll="22" horizontalPageScroll="10" verticalLineScroll="22" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3B2-hV-f8v"> |
||||
<rect key="frame" x="8" y="27" width="329" height="257"/> |
||||
<clipView key="contentView" id="xtL-kR-J62"> |
||||
<rect key="frame" x="0.0" y="0.0" width="329" height="257"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<tableView focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" alternatingRowBackgroundColors="YES" multipleSelection="NO" emptySelection="NO" autosaveColumns="NO" rowHeight="20" headerView="hHn-48-RCd" id="6Hm-XH-CMI"> |
||||
<rect key="frame" x="0.0" y="0.0" width="329" height="234"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<size key="intercellSpacing" width="3" height="2"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
<tableViewGridLines key="gridStyleMask" vertical="YES"/> |
||||
<color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> |
||||
<tableColumns> |
||||
<tableColumn identifier="availableTimezones" editable="NO" width="205.5" minWidth="40" maxWidth="1000" id="TEh-P6-jcT"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" title="Timezone Name"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="iJJ-UY-Q3g"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
</tableColumn> |
||||
<tableColumn identifier="abbreviation" editable="NO" width="117.71875" minWidth="10" maxWidth="3.4028234663852886e+38" id="Iuq-hc-Ma0"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Abbreviation"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="pwL-7P-icB"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
</tableColumn> |
||||
</tableColumns> |
||||
<connections> |
||||
<binding destination="-2" name="doubleClickTarget" keyPath="self" id="88W-iC-qMj"> |
||||
<dictionary key="options"> |
||||
<string key="NSSelectorName">addToFavorites:</string> |
||||
</dictionary> |
||||
</binding> |
||||
<outlet property="dataSource" destination="-2" id="OMp-pn-8oq"/> |
||||
<outlet property="delegate" destination="-2" id="mJw-oC-0dA"/> |
||||
</connections> |
||||
</tableView> |
||||
</subviews> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</clipView> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="257" id="Yru-1j-SeJ"/> |
||||
</constraints> |
||||
<scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="nBP-zr-k3M"> |
||||
<rect key="frame" x="1" y="241" width="327" height="15"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="x3e-JD-qwd"> |
||||
<rect key="frame" x="224" y="17" width="15" height="102"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<tableHeaderView key="headerView" id="hHn-48-RCd"> |
||||
<rect key="frame" x="0.0" y="0.0" width="329" height="23"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</tableHeaderView> |
||||
</scrollView> |
||||
<button toolTip="Add a timezone" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="KlN-dU-s3o"> |
||||
<rect key="frame" x="2" y="-2" width="52" height="32"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="21" id="2QY-oM-3sO"/> |
||||
<constraint firstAttribute="width" constant="40" id="6JQ-5n-kb7"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="push" title="Add" bezelStyle="rounded" imagePosition="overlaps" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="kZe-ua-0p9"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="addToFavorites:" target="-2" id="y27-tR-f1g"/> |
||||
</connections> |
||||
</button> |
||||
<button toolTip="Close Panel" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Ueh-Ln-TC8"> |
||||
<rect key="frame" x="44" y="-2" width="65" height="32"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="53" id="Bql-d6-oci"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="push" title="Close" bezelStyle="rounded" imagePosition="overlaps" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="ODT-4D-sWu"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="closePanel:" target="-2" id="6v9-wN-07n"/> |
||||
</connections> |
||||
</button> |
||||
<searchField toolTip="Search a timezone" wantsLayer="YES" focusRingType="none" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="5jL-eb-qdB"> |
||||
<rect key="frame" x="8" y="287" width="329" height="25"/> |
||||
<searchFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" borderStyle="bezel" focusRingType="none" placeholderString="Enter Timezone Name" drawsBackground="YES" usesSingleLineMode="YES" id="2DC-BS-vbb"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</searchFieldCell> |
||||
<connections> |
||||
<action selector="filterArray:" target="-2" id="tX8-FN-IPy"/> |
||||
</connections> |
||||
</searchField> |
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Rty-6T-aPw"> |
||||
<rect key="frame" x="104" y="7" width="232" height="20"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="20" id="y9Z-oT-NCB"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Label" id="ysU-zz-gJh"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/> |
||||
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstAttribute="trailing" secondItem="Rty-6T-aPw" secondAttribute="trailing" constant="11" id="1Gg-n3-Hv8"/> |
||||
<constraint firstItem="3B2-hV-f8v" firstAttribute="leading" secondItem="byp-2M-iAO" secondAttribute="leading" constant="8" id="Ahs-HL-zfw"/> |
||||
<constraint firstAttribute="bottom" secondItem="KlN-dU-s3o" secondAttribute="bottom" constant="5" id="Hfs-he-pyg"/> |
||||
<constraint firstItem="3B2-hV-f8v" firstAttribute="top" secondItem="5jL-eb-qdB" secondAttribute="bottom" constant="3" id="Kkl-0p-AQX"/> |
||||
<constraint firstItem="5jL-eb-qdB" firstAttribute="top" secondItem="byp-2M-iAO" secondAttribute="top" constant="8" id="Lsa-mI-nMD"/> |
||||
<constraint firstItem="Rty-6T-aPw" firstAttribute="leading" secondItem="Ueh-Ln-TC8" secondAttribute="trailing" constant="3" id="NEj-GQ-4oy"/> |
||||
<constraint firstItem="5jL-eb-qdB" firstAttribute="leading" secondItem="byp-2M-iAO" secondAttribute="leading" constant="8" id="YFf-7y-AA0"/> |
||||
<constraint firstAttribute="bottom" secondItem="Ueh-Ln-TC8" secondAttribute="bottom" constant="5" id="kS2-Vc-NT7"/> |
||||
<constraint firstAttribute="bottom" secondItem="Rty-6T-aPw" secondAttribute="bottom" constant="8" id="pyy-35-q2k"/> |
||||
<constraint firstItem="Ueh-Ln-TC8" firstAttribute="leading" secondItem="KlN-dU-s3o" secondAttribute="trailing" constant="2" id="qYv-aW-l68"/> |
||||
<constraint firstAttribute="trailing" secondItem="3B2-hV-f8v" secondAttribute="trailing" constant="8" id="rae-0k-Dgj"/> |
||||
<constraint firstAttribute="trailing" secondItem="5jL-eb-qdB" secondAttribute="trailing" constant="8" id="uy8-q5-8Vi"/> |
||||
<constraint firstItem="KlN-dU-s3o" firstAttribute="leading" secondItem="byp-2M-iAO" secondAttribute="leading" constant="8" id="y6V-Aa-AZU"/> |
||||
<constraint firstItem="Ueh-Ln-TC8" firstAttribute="height" secondItem="KlN-dU-s3o" secondAttribute="height" id="zET-ty-u3G"/> |
||||
</constraints> |
||||
</view> |
||||
<point key="canvasLocation" x="582.5" y="681"/> |
||||
</window> |
||||
<userDefaultsController representsSharedInstance="YES" id="sEG-Zb-KUM"/> |
||||
</objects> |
||||
<resources> |
||||
<image name="NSAddTemplate" width="11" height="11"/> |
||||
<image name="NSInfo" width="32" height="32"/> |
||||
<image name="NSRemoveTemplate" width="11" height="11"/> |
||||
</resources> |
||||
</document> |
@ -1,29 +0,0 @@
|
||||
/* |
||||
Localizable.strings |
||||
Clocker |
||||
|
||||
Created by Abhishek Banthia on 11/17/15. |
||||
|
||||
*/ |
||||
|
||||
|
||||
"Yesterday" = "Hier"; |
||||
"Today" = "Aujourd'hui"; |
||||
"Tomorrow" = "Demain"; |
||||
"MaximumTimezoneMessage" = "Maximum 10 fuseaux horaires autorisés!"; |
||||
"DuplicateTimezoneMessage" = "Fuseau horaire a déjà été sélectionnée!"; |
||||
|
||||
//Rating App |
||||
"Not Really" = "Pas vraiment"; |
||||
"Yes!" = "Oui!!"; |
||||
"AskForRatingMessage" = "Voter pour nous sur l'App Store?"; |
||||
"AskForFeedbackMessage" = "Rappelez- nous donner de la rétroaction?"; |
||||
"NoSelected" = "Non"; |
||||
"YesSelected" = "Qui!"; |
||||
|
||||
"iRateMessageTitle" = "Notez %@"; |
||||
"iRateAppMessage" = "Si vous aimez utiliser %@, n'oubliez pas de donner votre avis sur l'App Store. Cela ne prend qu'une minute. Merci d'avance pour votre soutien !"; |
||||
"iRateGameMessage" = "Si vous aimez jouer à %@, n'oubliez pas de donner votre avis sur l'App Store. Cela ne prend qu'une minute. Merci d'avance pour votre soutien !"; |
||||
"iRateCancelButton" = "Non, merci"; |
||||
"iRateRateButton" = "Noter maintenant"; |
||||
"iRateRemindButton" = "Me le rappeler ultérieurement"; |
@ -1,652 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="8191" systemVersion="15B42" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"> |
||||
<dependencies> |
||||
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="8191"/> |
||||
</dependencies> |
||||
<objects> |
||||
<customObject id="-2" userLabel="File's Owner" customClass="NSApplication"> |
||||
<connections> |
||||
<outlet property="delegate" destination="494" id="495"/> |
||||
</connections> |
||||
</customObject> |
||||
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/> |
||||
<customObject id="-3" userLabel="Application" customClass="NSObject"/> |
||||
<menu title="AMainMenu" systemMenu="main" id="29"> |
||||
<items> |
||||
<menuItem title="Clocker" id="56"> |
||||
<menu key="submenu" title="Clocker" systemMenu="apple" id="57"> |
||||
<items> |
||||
<menuItem title="About Clocker" id="58"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="orderFrontStandardAboutPanel:" target="-2" id="142"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="236"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Preferences…" keyEquivalent="," id="129"/> |
||||
<menuItem isSeparatorItem="YES" id="143"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Services" id="131"> |
||||
<menu key="submenu" title="Services" systemMenu="services" id="130"/> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="144"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Hide Clocker" keyEquivalent="h" id="134"> |
||||
<connections> |
||||
<action selector="hide:" target="-1" id="367"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Hide Others" keyEquivalent="h" id="145"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="hideOtherApplications:" target="-1" id="368"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Show All" id="150"> |
||||
<connections> |
||||
<action selector="unhideAllApplications:" target="-1" id="370"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="149"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Quit Clocker" keyEquivalent="q" id="136"> |
||||
<connections> |
||||
<action selector="terminate:" target="-3" id="449"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="File" id="83"> |
||||
<menu key="submenu" title="File" id="81"> |
||||
<items> |
||||
<menuItem title="New" keyEquivalent="n" id="82"> |
||||
<connections> |
||||
<action selector="newDocument:" target="-1" id="373"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Open…" keyEquivalent="o" id="72"> |
||||
<connections> |
||||
<action selector="openDocument:" target="-1" id="374"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Open Recent" id="124"> |
||||
<menu key="submenu" title="Open Recent" systemMenu="recentDocuments" id="125"> |
||||
<items> |
||||
<menuItem title="Clear Menu" id="126"> |
||||
<connections> |
||||
<action selector="clearRecentDocuments:" target="-1" id="127"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="79"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Close" keyEquivalent="w" id="73"> |
||||
<connections> |
||||
<action selector="performClose:" target="-1" id="193"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Save…" keyEquivalent="s" id="75"> |
||||
<connections> |
||||
<action selector="saveDocument:" target="-1" id="362"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Revert to Saved" id="112"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="revertDocumentToSaved:" target="-1" id="364"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="74"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Page Setup..." keyEquivalent="P" id="77"> |
||||
<modifierMask key="keyEquivalentModifierMask" shift="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="runPageLayout:" target="-1" id="87"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Print…" keyEquivalent="p" id="78"> |
||||
<connections> |
||||
<action selector="print:" target="-1" id="86"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Edit" id="217"> |
||||
<menu key="submenu" title="Edit" id="205"> |
||||
<items> |
||||
<menuItem title="Undo" keyEquivalent="z" id="207"> |
||||
<connections> |
||||
<action selector="undo:" target="-1" id="223"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Redo" keyEquivalent="Z" id="215"> |
||||
<modifierMask key="keyEquivalentModifierMask" shift="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="redo:" target="-1" id="231"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="206"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Cut" keyEquivalent="x" id="199"> |
||||
<connections> |
||||
<action selector="cut:" target="-1" id="228"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Copy" keyEquivalent="c" id="197"> |
||||
<connections> |
||||
<action selector="copy:" target="-1" id="224"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Paste" keyEquivalent="v" id="203"> |
||||
<connections> |
||||
<action selector="paste:" target="-1" id="226"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Paste and Match Style" keyEquivalent="V" id="485"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="pasteAsPlainText:" target="-1" id="486"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Delete" id="202"> |
||||
<connections> |
||||
<action selector="delete:" target="-1" id="235"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Select All" keyEquivalent="a" id="198"> |
||||
<connections> |
||||
<action selector="selectAll:" target="-1" id="232"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="214"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Find" id="218"> |
||||
<menu key="submenu" title="Find" id="220"> |
||||
<items> |
||||
<menuItem title="Find…" tag="1" keyEquivalent="f" id="209"> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="241"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Find and Replace…" tag="12" keyEquivalent="f" id="534"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="535"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Find Next" tag="2" keyEquivalent="g" id="208"> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="487"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Find Previous" tag="3" keyEquivalent="G" id="213"> |
||||
<modifierMask key="keyEquivalentModifierMask" shift="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="488"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Use Selection for Find" tag="7" keyEquivalent="e" id="221"> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="489"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Jump to Selection" keyEquivalent="j" id="210"> |
||||
<connections> |
||||
<action selector="centerSelectionInVisibleArea:" target="-1" id="245"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Spelling and Grammar" id="216"> |
||||
<menu key="submenu" title="Spelling and Grammar" id="200"> |
||||
<items> |
||||
<menuItem title="Show Spelling and Grammar" keyEquivalent=":" id="204"> |
||||
<connections> |
||||
<action selector="showGuessPanel:" target="-1" id="230"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Check Document Now" keyEquivalent=";" id="201"> |
||||
<connections> |
||||
<action selector="checkSpelling:" target="-1" id="225"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="453"/> |
||||
<menuItem title="Check Spelling While Typing" id="219"> |
||||
<connections> |
||||
<action selector="toggleContinuousSpellChecking:" target="-1" id="222"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Check Grammar With Spelling" id="346"> |
||||
<connections> |
||||
<action selector="toggleGrammarChecking:" target="-1" id="347"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Correct Spelling Automatically" id="454"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="toggleAutomaticSpellingCorrection:" target="-1" id="456"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Substitutions" id="348"> |
||||
<menu key="submenu" title="Substitutions" id="349"> |
||||
<items> |
||||
<menuItem title="Show Substitutions" id="457"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="orderFrontSubstitutionsPanel:" target="-1" id="458"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="459"/> |
||||
<menuItem title="Smart Copy/Paste" tag="1" keyEquivalent="f" id="350"> |
||||
<connections> |
||||
<action selector="toggleSmartInsertDelete:" target="-1" id="355"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Smart Quotes" tag="2" keyEquivalent="g" id="351"> |
||||
<connections> |
||||
<action selector="toggleAutomaticQuoteSubstitution:" target="-1" id="356"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Smart Dashes" id="460"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="toggleAutomaticDashSubstitution:" target="-1" id="461"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Smart Links" tag="3" keyEquivalent="G" id="354"> |
||||
<modifierMask key="keyEquivalentModifierMask" shift="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="toggleAutomaticLinkDetection:" target="-1" id="357"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Text Replacement" id="462"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="toggleAutomaticTextReplacement:" target="-1" id="463"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Transformations" id="450"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Transformations" id="451"> |
||||
<items> |
||||
<menuItem title="Make Upper Case" id="452"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="uppercaseWord:" target="-1" id="464"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Make Lower Case" id="465"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="lowercaseWord:" target="-1" id="468"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Capitalize" id="466"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="capitalizeWord:" target="-1" id="467"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Speech" id="211"> |
||||
<menu key="submenu" title="Speech" id="212"> |
||||
<items> |
||||
<menuItem title="Start Speaking" id="196"> |
||||
<connections> |
||||
<action selector="startSpeaking:" target="-1" id="233"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Stop Speaking" id="195"> |
||||
<connections> |
||||
<action selector="stopSpeaking:" target="-1" id="227"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Format" id="375"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Format" id="376"> |
||||
<items> |
||||
<menuItem title="Font" id="377"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Font" systemMenu="font" id="388"> |
||||
<items> |
||||
<menuItem title="Show Fonts" keyEquivalent="t" id="389"> |
||||
<connections> |
||||
<action selector="orderFrontFontPanel:" target="420" id="424"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Bold" tag="2" keyEquivalent="b" id="390"> |
||||
<connections> |
||||
<action selector="addFontTrait:" target="420" id="421"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Italic" tag="1" keyEquivalent="i" id="391"> |
||||
<connections> |
||||
<action selector="addFontTrait:" target="420" id="422"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Underline" keyEquivalent="u" id="392"> |
||||
<connections> |
||||
<action selector="underline:" target="-1" id="432"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="393"/> |
||||
<menuItem title="Bigger" tag="3" keyEquivalent="+" id="394"> |
||||
<connections> |
||||
<action selector="modifyFont:" target="420" id="425"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Smaller" tag="4" keyEquivalent="-" id="395"> |
||||
<connections> |
||||
<action selector="modifyFont:" target="420" id="423"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="396"/> |
||||
<menuItem title="Kern" id="397"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Kern" id="415"> |
||||
<items> |
||||
<menuItem title="Use Default" id="416"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="useStandardKerning:" target="-1" id="438"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Use None" id="417"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="turnOffKerning:" target="-1" id="441"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Tighten" id="418"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="tightenKerning:" target="-1" id="431"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Loosen" id="419"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="loosenKerning:" target="-1" id="435"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Ligature" id="398"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Ligature" id="411"> |
||||
<items> |
||||
<menuItem title="Use Default" id="412"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="useStandardLigatures:" target="-1" id="439"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Use None" id="413"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="turnOffLigatures:" target="-1" id="440"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Use All" id="414"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="useAllLigatures:" target="-1" id="434"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Baseline" id="399"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Baseline" id="405"> |
||||
<items> |
||||
<menuItem title="Use Default" id="406"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="unscript:" target="-1" id="437"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Superscript" id="407"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="superscript:" target="-1" id="430"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Subscript" id="408"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="subscript:" target="-1" id="429"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Raise" id="409"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="raiseBaseline:" target="-1" id="426"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Lower" id="410"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="lowerBaseline:" target="-1" id="427"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="400"/> |
||||
<menuItem title="Show Colors" keyEquivalent="C" id="401"> |
||||
<connections> |
||||
<action selector="orderFrontColorPanel:" target="-1" id="433"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="402"/> |
||||
<menuItem title="Copy Style" keyEquivalent="c" id="403"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="copyFont:" target="-1" id="428"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Paste Style" keyEquivalent="v" id="404"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="pasteFont:" target="-1" id="436"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Text" id="496"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Text" id="497"> |
||||
<items> |
||||
<menuItem title="Align Left" keyEquivalent="{" id="498"> |
||||
<connections> |
||||
<action selector="alignLeft:" target="-1" id="524"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Center" keyEquivalent="|" id="499"> |
||||
<connections> |
||||
<action selector="alignCenter:" target="-1" id="518"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Justify" id="500"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="alignJustified:" target="-1" id="523"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Align Right" keyEquivalent="}" id="501"> |
||||
<connections> |
||||
<action selector="alignRight:" target="-1" id="521"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="502"/> |
||||
<menuItem title="Writing Direction" id="503"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Writing Direction" id="508"> |
||||
<items> |
||||
<menuItem title="Paragraph" enabled="NO" id="509"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
</menuItem> |
||||
<menuItem id="510"> |
||||
<string key="title"> Default</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeBaseWritingDirectionNatural:" target="-1" id="525"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem id="511"> |
||||
<string key="title"> Left to Right</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeBaseWritingDirectionLeftToRight:" target="-1" id="526"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem id="512"> |
||||
<string key="title"> Right to Left</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeBaseWritingDirectionRightToLeft:" target="-1" id="527"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="513"/> |
||||
<menuItem title="Selection" enabled="NO" id="514"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
</menuItem> |
||||
<menuItem id="515"> |
||||
<string key="title"> Default</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeTextWritingDirectionNatural:" target="-1" id="528"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem id="516"> |
||||
<string key="title"> Left to Right</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeTextWritingDirectionLeftToRight:" target="-1" id="529"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem id="517"> |
||||
<string key="title"> Right to Left</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeTextWritingDirectionRightToLeft:" target="-1" id="530"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="504"/> |
||||
<menuItem title="Show Ruler" id="505"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="toggleRuler:" target="-1" id="520"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Copy Ruler" keyEquivalent="c" id="506"> |
||||
<modifierMask key="keyEquivalentModifierMask" control="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="copyRuler:" target="-1" id="522"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Paste Ruler" keyEquivalent="v" id="507"> |
||||
<modifierMask key="keyEquivalentModifierMask" control="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="pasteRuler:" target="-1" id="519"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="View" id="295"> |
||||
<menu key="submenu" title="View" id="296"> |
||||
<items> |
||||
<menuItem title="Show Toolbar" keyEquivalent="t" id="297"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="toggleToolbarShown:" target="-1" id="366"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Customize Toolbar…" id="298"> |
||||
<connections> |
||||
<action selector="runToolbarCustomizationPalette:" target="-1" id="365"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Window" id="19"> |
||||
<menu key="submenu" title="Window" systemMenu="window" id="24"> |
||||
<items> |
||||
<menuItem title="Minimize" keyEquivalent="m" id="23"> |
||||
<connections> |
||||
<action selector="performMiniaturize:" target="-1" id="37"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Zoom" id="239"> |
||||
<connections> |
||||
<action selector="performZoom:" target="-1" id="240"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="92"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Bring All to Front" id="5"> |
||||
<connections> |
||||
<action selector="arrangeInFront:" target="-1" id="39"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Help" id="490"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Help" systemMenu="help" id="491"> |
||||
<items> |
||||
<menuItem title="Clocker Help" keyEquivalent="?" id="492"> |
||||
<connections> |
||||
<action selector="showHelp:" target="-1" id="493"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
<customObject id="494" customClass="ApplicationDelegate"/> |
||||
<customObject id="420" customClass="NSFontManager"/> |
||||
</objects> |
||||
</document> |
@ -1,261 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="9531" systemVersion="15C50" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES"> |
||||
<dependencies> |
||||
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="9531"/> |
||||
</dependencies> |
||||
<objects> |
||||
<customObject id="-2" userLabel="File's Owner" customClass="PanelController"> |
||||
<connections> |
||||
<outlet property="backgroundView" destination="6" id="20"/> |
||||
<outlet property="mainTableview" destination="dFw-ts-8OZ" id="wwJ-jA-lCy"/> |
||||
<outlet property="preferencesButton" destination="OFy-u1-TnH" id="SId-Ih-ssT"/> |
||||
<outlet property="scrollViewHeight" destination="QcT-N0-G4s" id="EHr-Co-L0Z"/> |
||||
<outlet property="shutdownButton" destination="nTt-pf-Hw2" id="gCK-0D-gnK"/> |
||||
<outlet property="window" destination="5" id="7"/> |
||||
</connections> |
||||
</customObject> |
||||
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/> |
||||
<customObject id="-3" userLabel="Application" customClass="NSObject"/> |
||||
<window allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" restorable="NO" oneShot="NO" releasedWhenClosed="NO" showsToolbarButton="NO" visibleAtLaunch="NO" animationBehavior="none" id="5" customClass="Panel"> |
||||
<windowStyleMask key="styleMask" utility="YES" nonactivatingPanel="YES" texturedBackground="YES"/> |
||||
<windowCollectionBehavior key="collectionBehavior" moveToActiveSpace="YES" ignoresCycle="YES"/> |
||||
<windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> |
||||
<rect key="contentRect" x="162" y="101" width="280" height="273"/> |
||||
<rect key="screenRect" x="0.0" y="0.0" width="1280" height="777"/> |
||||
<view key="contentView" id="6" customClass="BackgroundView"> |
||||
<rect key="frame" x="0.0" y="0.0" width="280" height="273"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<subviews> |
||||
<scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="56" horizontalPageScroll="10" verticalLineScroll="56" verticalPageScroll="10" hasHorizontalScroller="NO" hasVerticalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="4Gd-Nv-fXr"> |
||||
<rect key="frame" x="-1" y="0.0" width="282" height="265"/> |
||||
<clipView key="contentView" id="4MZ-Di-yNR"> |
||||
<rect key="frame" x="0.0" y="0.0" width="282" height="265"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<tableView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" columnSelection="YES" multipleSelection="NO" autosaveColumns="NO" rowHeight="55" viewBased="YES" id="dFw-ts-8OZ"> |
||||
<rect key="frame" x="0.0" y="0.0" width="282" height="0.0"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<size key="intercellSpacing" width="3" height="1"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
<tableViewGridLines key="gridStyleMask" dashed="YES"/> |
||||
<color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> |
||||
<tableColumns> |
||||
<tableColumn width="279" minWidth="40" maxWidth="1000" id="LTt-db-Dwv"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="7LK-2q-H3f"> |
||||
<font key="font" metaFont="system"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
<prototypeCellViews> |
||||
<tableCellView identifier="timeZoneCell" id="qbN-ba-fho"> |
||||
<rect key="frame" x="1" y="0.0" width="279" height="60"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" tag="100" translatesAutoresizingMaskIntoConstraints="NO" id="etF-33-bCB"> |
||||
<rect key="frame" x="8" y="26" width="144" height="26"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="140" id="32b-h6-joo"/> |
||||
<constraint firstAttribute="height" constant="26" id="vod-YN-iNX"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" placeholderString="Fuseau-horaire Nom" id="rnh-AP-ooc"> |
||||
<font key="font" size="15" name="Helvetica-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
<textField verticalHuggingPriority="750" tag="102" translatesAutoresizingMaskIntoConstraints="NO" id="QUd-7D-q14"> |
||||
<rect key="frame" x="8" y="9" width="154" height="22"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="22" id="42Y-hy-Uo7"/> |
||||
<constraint firstAttribute="width" constant="150" id="fkH-oq-qvM"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" placeholderString="Rendez-vous amoureux" id="74U-rv-5xj"> |
||||
<font key="font" size="13" name="Helvetica-Bold"/> |
||||
<color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" tag="101" translatesAutoresizingMaskIntoConstraints="NO" id="vnv-J2-7r1"> |
||||
<rect key="frame" x="127" y="17" width="146" height="33"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="33" id="3WU-de-OQL"/> |
||||
<constraint firstAttribute="width" constant="142" id="cQV-gJ-zMz"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" placeholderString="23:46" id="g8s-EU-UHx"> |
||||
<font key="font" size="31" name="Helvetica-Light"/> |
||||
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstItem="QUd-7D-q14" firstAttribute="leading" secondItem="qbN-ba-fho" secondAttribute="leading" constant="10" id="0Qz-Ev-efP"/> |
||||
<constraint firstItem="etF-33-bCB" firstAttribute="top" secondItem="qbN-ba-fho" secondAttribute="top" constant="8" id="Lct-kG-usb"/> |
||||
<constraint firstItem="vnv-J2-7r1" firstAttribute="centerY" secondItem="qbN-ba-fho" secondAttribute="centerY" constant="-3.5" id="TuQ-gE-ZUh"/> |
||||
<constraint firstItem="QUd-7D-q14" firstAttribute="top" secondItem="etF-33-bCB" secondAttribute="bottom" constant="-5" id="VO6-Zn-eA3"/> |
||||
<constraint firstItem="etF-33-bCB" firstAttribute="leading" secondItem="qbN-ba-fho" secondAttribute="leading" constant="10" id="ueW-ow-ZRq"/> |
||||
<constraint firstAttribute="trailing" secondItem="vnv-J2-7r1" secondAttribute="trailing" constant="8" id="zXo-eA-0bQ"/> |
||||
</constraints> |
||||
<connections> |
||||
<outlet property="textField" destination="etF-33-bCB" id="6fd-cc-Qq2"/> |
||||
</connections> |
||||
</tableCellView> |
||||
<tableCellView identifier="ratingCellView" id="Qgs-ny-ew3" customClass="CLRatingCellView"> |
||||
<rect key="frame" x="1" y="61" width="279" height="51"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Ttp-5b-2Aa"> |
||||
<rect key="frame" x="92" y="31" width="105" height="20"/> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Enjoying Clocker?" id="nUZ-bH-nDK"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="WwJ-Vl-MA6"> |
||||
<rect key="frame" x="29" y="2" width="112" height="25"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="100" id="9j6-hx-O9n"/> |
||||
<constraint firstAttribute="height" constant="14" id="RF4-mQ-NeO"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="push" title="Not Really" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="cmB-Rn-pyT"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="actionOnNegativeFeedback:" target="Qgs-ny-ew3" id="gMh-FK-Gvj"/> |
||||
</connections> |
||||
</button> |
||||
<imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="zWc-Zd-0kQ"> |
||||
<rect key="frame" x="72" y="31" width="16" height="16"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="16" id="qeE-qU-ZMt"/> |
||||
<constraint firstAttribute="height" constant="16" id="srw-je-Bp9"/> |
||||
</constraints> |
||||
<imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="ClockerIcon-16" id="xi0-lg-cOQ"/> |
||||
</imageView> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="4jC-Ni-8qd"> |
||||
<rect key="frame" x="134" y="2" width="112" height="25"/> |
||||
<buttonCell key="cell" type="push" title="Yes!" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="O3o-Oy-n11"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="actionOnPositiveFeedback:" target="Qgs-ny-ew3" id="Vgx-eI-iOA"/> |
||||
</connections> |
||||
</button> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstItem="4jC-Ni-8qd" firstAttribute="top" secondItem="Ttp-5b-2Aa" secondAttribute="bottom" constant="8" id="DwK-2r-KDa"/> |
||||
<constraint firstItem="WwJ-Vl-MA6" firstAttribute="centerX" secondItem="Qgs-ny-ew3" secondAttribute="centerX" constant="-55" id="Kq5-9G-Z9Y"/> |
||||
<constraint firstItem="4jC-Ni-8qd" firstAttribute="width" secondItem="WwJ-Vl-MA6" secondAttribute="width" id="MDt-SU-Awe"/> |
||||
<constraint firstItem="WwJ-Vl-MA6" firstAttribute="top" secondItem="Ttp-5b-2Aa" secondAttribute="bottom" constant="8" id="Q6C-FR-10C"/> |
||||
<constraint firstItem="4jC-Ni-8qd" firstAttribute="height" secondItem="WwJ-Vl-MA6" secondAttribute="height" id="eCx-Sm-maT"/> |
||||
<constraint firstItem="Ttp-5b-2Aa" firstAttribute="leading" secondItem="zWc-Zd-0kQ" secondAttribute="trailing" constant="6" id="nr6-Yz-arj"/> |
||||
<constraint firstItem="4jC-Ni-8qd" firstAttribute="centerX" secondItem="Qgs-ny-ew3" secondAttribute="centerX" constant="50" id="rPq-Vm-v2m"/> |
||||
<constraint firstItem="zWc-Zd-0kQ" firstAttribute="top" secondItem="Qgs-ny-ew3" secondAttribute="top" constant="4" id="voN-fs-7rp"/> |
||||
<constraint firstItem="Ttp-5b-2Aa" firstAttribute="centerX" secondItem="Qgs-ny-ew3" secondAttribute="centerX" constant="5" id="x5x-th-eJS"/> |
||||
<constraint firstItem="Ttp-5b-2Aa" firstAttribute="top" secondItem="Qgs-ny-ew3" secondAttribute="top" id="zPg-5M-L8W"/> |
||||
</constraints> |
||||
<connections> |
||||
<outlet property="imageView" destination="zWc-Zd-0kQ" id="KjV-P1-61l"/> |
||||
<outlet property="leftButton" destination="WwJ-Vl-MA6" id="9Yk-7p-P9p"/> |
||||
<outlet property="leftField" destination="Ttp-5b-2Aa" id="Zj7-zh-s5j"/> |
||||
<outlet property="rightButton" destination="4jC-Ni-8qd" id="oy6-lv-e3i"/> |
||||
</connections> |
||||
</tableCellView> |
||||
</prototypeCellViews> |
||||
</tableColumn> |
||||
</tableColumns> |
||||
<connections> |
||||
<outlet property="dataSource" destination="-2" id="Q9t-Yx-hmz"/> |
||||
<outlet property="delegate" destination="-2" id="AqY-uU-Noo"/> |
||||
</connections> |
||||
</tableView> |
||||
</subviews> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</clipView> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="265" id="QcT-N0-G4s"/> |
||||
</constraints> |
||||
<scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="DJr-1R-9LK"> |
||||
<rect key="frame" x="-100" y="-100" width="223" height="15"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="cfu-8V-LKK"> |
||||
<rect key="frame" x="-100" y="-100" width="15" height="102"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
</scrollView> |
||||
<textField verticalHuggingPriority="750" preferredMaxLayoutWidth="280" translatesAutoresizingMaskIntoConstraints="NO" id="HR1-ZK-Ey0"> |
||||
<rect key="frame" x="0.0" y="2" width="280" height="22"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="22" id="IxM-FF-J1F"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" state="on" alignment="center" placeholderString="Clocker" drawsBackground="YES" id="KVB-OA-XfT"> |
||||
<font key="font" size="17" name="Palatino-Bold"/> |
||||
<color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="OFy-u1-TnH"> |
||||
<rect key="frame" x="246" y="1" width="29" height="19"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="29" id="MIQ-4K-E5A"/> |
||||
<constraint firstAttribute="height" constant="18" id="X7D-ep-wB4"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="recessed" bezelStyle="recessed" image="NSActionTemplate" imagePosition="only" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="vYm-fs-Zjd"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" metaFont="systemBold" size="12"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="openPreferences:" target="-2" id="0Yc-Eq-obQ"/> |
||||
</connections> |
||||
</button> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="nTt-pf-Hw2"> |
||||
<rect key="frame" x="0.0" y="1" width="29" height="19"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="29" id="8kZ-Pj-VK6"/> |
||||
<constraint firstAttribute="height" constant="18" id="sVG-VE-3q4"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="recessed" bezelStyle="recessed" image="PowerIcon" imagePosition="only" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="sUh-16-Fhk"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES" changeBackground="YES" changeGray="YES"/> |
||||
<font key="font" metaFont="systemBold" size="12"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="terminate:" target="-1" id="fpZ-pt-UiU"/> |
||||
</connections> |
||||
</button> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstItem="4Gd-Nv-fXr" firstAttribute="top" secondItem="6" secondAttribute="top" constant="8" id="1g0-Hm-7Gh"/> |
||||
<constraint firstAttribute="trailing" secondItem="HR1-ZK-Ey0" secondAttribute="trailing" id="1ol-mo-aQU"/> |
||||
<constraint firstAttribute="bottom" secondItem="HR1-ZK-Ey0" secondAttribute="bottom" constant="2" id="Jtb-Nx-FYR"/> |
||||
<constraint firstAttribute="bottom" secondItem="nTt-pf-Hw2" secondAttribute="bottom" constant="2" id="QoV-TI-KVJ"/> |
||||
<constraint firstAttribute="bottom" secondItem="OFy-u1-TnH" secondAttribute="bottom" constant="2" id="Ubf-Mv-WMp"/> |
||||
<constraint firstAttribute="trailing" secondItem="4Gd-Nv-fXr" secondAttribute="trailing" constant="-1" id="XP6-W0-2XT"/> |
||||
<constraint firstItem="HR1-ZK-Ey0" firstAttribute="leading" secondItem="6" secondAttribute="leading" id="XQ8-hU-ayC"/> |
||||
<constraint firstItem="4Gd-Nv-fXr" firstAttribute="leading" secondItem="6" secondAttribute="leading" constant="-1" id="fHc-VQ-mJ3"/> |
||||
<constraint firstAttribute="trailing" secondItem="OFy-u1-TnH" secondAttribute="trailing" constant="5" id="p2a-qj-LHE"/> |
||||
<constraint firstItem="nTt-pf-Hw2" firstAttribute="leading" secondItem="6" secondAttribute="leading" id="pKl-Ay-0cB"/> |
||||
</constraints> |
||||
</view> |
||||
<connections> |
||||
<outlet property="delegate" destination="-2" id="8"/> |
||||
</connections> |
||||
<point key="canvasLocation" x="230" y="392.5"/> |
||||
</window> |
||||
<userDefaultsController representsSharedInstance="YES" id="O3B-kK-4vm"/> |
||||
</objects> |
||||
<resources> |
||||
<image name="ClockerIcon-16" width="16" height="16"/> |
||||
<image name="NSActionTemplate" width="14" height="14"/> |
||||
<image name="PowerIcon" width="270" height="270"/> |
||||
</resources> |
||||
</document> |
@ -1,338 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="9531" systemVersion="15C50" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES"> |
||||
<dependencies> |
||||
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="9531"/> |
||||
</dependencies> |
||||
<objects> |
||||
<customObject id="-2" userLabel="File's Owner" customClass="PreferencesWindowController"> |
||||
<connections> |
||||
<outlet property="availableTimezoneTableView" destination="6Hm-XH-CMI" id="GA1-tc-E9E"/> |
||||
<outlet property="customView" destination="se5-gp-TjO" id="au3-Vg-AnY"/> |
||||
<outlet property="is24HourFormatSelected" destination="N47-gw-Pay" id="2MV-F1-uYf"/> |
||||
<outlet property="messageLabel" destination="Rty-6T-aPw" id="Qg4-mk-P90"/> |
||||
<outlet property="searchField" destination="5jL-eb-qdB" id="K6C-JS-ko0"/> |
||||
<outlet property="timezonePanel" destination="Z6I-Ny-aGx" id="tXP-KH-Xfi"/> |
||||
<outlet property="timezoneTableView" destination="oKD-AN-gPT" id="oD2-n0-4jf"/> |
||||
<outlet property="window" destination="F0z-JX-Cv5" id="gIp-Ho-8D9"/> |
||||
</connections> |
||||
</customObject> |
||||
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/> |
||||
<customObject id="-3" userLabel="Application" customClass="NSObject"/> |
||||
<window identifier="Selected Timezones" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" oneShot="NO" releasedWhenClosed="NO" animationBehavior="documentWindow" id="F0z-JX-Cv5"> |
||||
<windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES"/> |
||||
<windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> |
||||
<rect key="contentRect" x="407" y="179" width="439" height="373"/> |
||||
<rect key="screenRect" x="0.0" y="0.0" width="1280" height="777"/> |
||||
<value key="minSize" type="size" width="439" height="351"/> |
||||
<view key="contentView" id="se5-gp-TjO"> |
||||
<rect key="frame" x="0.0" y="0.0" width="439" height="373"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="DCz-qN-ydK"> |
||||
<rect key="frame" x="11" y="67" width="21" height="22"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="20" id="aUK-f8-pvY"/> |
||||
<constraint firstAttribute="width" constant="21" id="hAr-3f-KNJ"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="smallSquare" bezelStyle="smallSquare" image="NSAddTemplate" imagePosition="overlaps" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="rjd-Yu-81P"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" metaFont="system"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="addTimeZone:" target="-2" id="dXi-qw-Vu2"/> |
||||
</connections> |
||||
</button> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ixe-Sn-8qT"> |
||||
<rect key="frame" x="32" y="67" width="21" height="22"/> |
||||
<buttonCell key="cell" type="smallSquare" bezelStyle="smallSquare" image="NSRemoveTemplate" imagePosition="overlaps" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="SVO-Wt-Mfb"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" metaFont="system"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="removeFromFavourites:" target="-2" id="65F-Jn-DMw"/> |
||||
</connections> |
||||
</button> |
||||
<scrollView focusRingType="none" autohidesScrollers="YES" horizontalLineScroll="22" horizontalPageScroll="10" verticalLineScroll="22" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cI0-M7-C9h"> |
||||
<rect key="frame" x="10" y="94" width="419" height="271"/> |
||||
<clipView key="contentView" id="WWk-6i-nI7"> |
||||
<rect key="frame" x="1" y="0.0" width="417" height="270"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<tableView focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" alternatingRowBackgroundColors="YES" columnSelection="YES" autosaveColumns="NO" rowHeight="20" headerView="dKI-Ue-9QX" id="oKD-AN-gPT"> |
||||
<rect key="frame" x="0.0" y="0.0" width="417" height="247"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<size key="intercellSpacing" width="3" height="2"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> |
||||
<tableColumns> |
||||
<tableColumn identifier="timezoneName" editable="NO" width="247.75" minWidth="40" maxWidth="1000" id="CJN-Eu-3s5"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" title="Fuseaux horaires sélectionnés (s)"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="Vu3-3D-aDG"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
</tableColumn> |
||||
<tableColumn identifier="label" width="163" minWidth="10" maxWidth="3.4028234663852886e+38" id="U1t-5a-FEY"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Étiquette"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="pjY-60-b4l"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
</tableColumn> |
||||
</tableColumns> |
||||
<connections> |
||||
<outlet property="dataSource" destination="-2" id="do8-kY-7j3"/> |
||||
<outlet property="delegate" destination="-2" id="whN-25-mkj"/> |
||||
</connections> |
||||
</tableView> |
||||
</subviews> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</clipView> |
||||
<scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="Hxj-Tc-UWs"> |
||||
<rect key="frame" x="1" y="228" width="417" height="16"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="s9V-58-jwp"> |
||||
<rect key="frame" x="-14" y="-7" width="15" height="0.0"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<tableHeaderView key="headerView" id="dKI-Ue-9QX"> |
||||
<rect key="frame" x="0.0" y="0.0" width="417" height="23"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</tableHeaderView> |
||||
</scrollView> |
||||
<button translatesAutoresizingMaskIntoConstraints="NO" id="GDz-2Z-uX5" customClass="ColoredButton"> |
||||
<rect key="frame" x="9" y="18" width="422" height="18"/> |
||||
<buttonCell key="cell" type="check" title="Commencez Clocker au démarrage du système" bezelStyle="regularSquare" imagePosition="left" inset="2" id="h45-jZ-cPY"> |
||||
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> |
||||
<font key="font" size="12" name="Helvetica-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<binding destination="-2" name="value" keyPath="self.launchOnLogin" id="Vqw-iQ-qOe"/> |
||||
</connections> |
||||
</button> |
||||
<button translatesAutoresizingMaskIntoConstraints="NO" id="N47-gw-Pay" customClass="ColoredButton"> |
||||
<rect key="frame" x="9" y="40" width="422" height="22"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="18" id="qwS-Bk-vmy"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="check" title="Utilisez une horloge de 24 heures" bezelStyle="regularSquare" imagePosition="left" alignment="left" state="on" inset="2" id="Fro-eC-cMC"> |
||||
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> |
||||
<font key="font" size="12" name="Helvetica-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="timeFormatSelectionChanged:" target="-2" id="6vB-XV-sSq"/> |
||||
<binding destination="sEG-Zb-KUM" name="value" keyPath="values.is24HourFormatSelected" id="wod-mK-9M5"/> |
||||
</connections> |
||||
</button> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstAttribute="trailing" secondItem="GDz-2Z-uX5" secondAttribute="trailing" constant="10" id="6By-7K-Hwb"/> |
||||
<constraint firstItem="DCz-qN-ydK" firstAttribute="top" secondItem="cI0-M7-C9h" secondAttribute="bottom" constant="6" id="6Ye-VD-kSE"/> |
||||
<constraint firstAttribute="trailing" secondItem="N47-gw-Pay" secondAttribute="trailing" constant="10" id="6cs-zV-y7y"/> |
||||
<constraint firstItem="GDz-2Z-uX5" firstAttribute="leading" secondItem="se5-gp-TjO" secondAttribute="leading" constant="11" id="FLl-Pc-Gzn"/> |
||||
<constraint firstItem="cI0-M7-C9h" firstAttribute="leading" secondItem="se5-gp-TjO" secondAttribute="leading" constant="10" id="Fy5-6V-gu1"/> |
||||
<constraint firstItem="ixe-Sn-8qT" firstAttribute="leading" secondItem="DCz-qN-ydK" secondAttribute="trailing" id="TLA-Fw-F7P"/> |
||||
<constraint firstItem="DCz-qN-ydK" firstAttribute="leading" secondItem="se5-gp-TjO" secondAttribute="leading" constant="11" id="Waz-CP-UWF"/> |
||||
<constraint firstItem="GDz-2Z-uX5" firstAttribute="top" secondItem="N47-gw-Pay" secondAttribute="bottom" constant="8" id="ZOk-F2-xQI"/> |
||||
<constraint firstItem="N47-gw-Pay" firstAttribute="top" secondItem="ixe-Sn-8qT" secondAttribute="bottom" constant="8" id="gbd-HA-u9p"/> |
||||
<constraint firstItem="N47-gw-Pay" firstAttribute="leading" secondItem="se5-gp-TjO" secondAttribute="leading" constant="11" id="hXb-69-tI0"/> |
||||
<constraint firstAttribute="bottom" secondItem="GDz-2Z-uX5" secondAttribute="bottom" constant="20" id="nbQ-fG-Q7y"/> |
||||
<constraint firstItem="ixe-Sn-8qT" firstAttribute="width" secondItem="DCz-qN-ydK" secondAttribute="width" id="o7k-jf-cL0"/> |
||||
<constraint firstItem="ixe-Sn-8qT" firstAttribute="height" secondItem="DCz-qN-ydK" secondAttribute="height" id="rsK-UP-Umg"/> |
||||
<constraint firstItem="cI0-M7-C9h" firstAttribute="top" secondItem="se5-gp-TjO" secondAttribute="top" constant="8" id="u5H-Ff-ivt"/> |
||||
<constraint firstAttribute="trailing" secondItem="cI0-M7-C9h" secondAttribute="trailing" constant="10" id="ut9-6b-cdu"/> |
||||
<constraint firstItem="N47-gw-Pay" firstAttribute="top" secondItem="DCz-qN-ydK" secondAttribute="bottom" constant="8" id="x0C-Ev-Imb"/> |
||||
</constraints> |
||||
</view> |
||||
<toolbar key="toolbar" implicitIdentifier="BA3812C9-0653-48BD-88BF-7B1EE76D0E03" autosavesConfiguration="NO" displayMode="iconAndLabel" sizeMode="small" id="5Ze-wq-PrI"> |
||||
<allowedToolbarItems> |
||||
<toolbarItem implicitItemIdentifier="NSToolbarSpaceItem" id="xOr-FL-A4i"/> |
||||
<toolbarItem implicitItemIdentifier="NSToolbarFlexibleSpaceItem" id="36s-BR-VOv"/> |
||||
<toolbarItem implicitItemIdentifier="238FBC10-33D9-453A-9B4E-77BB41D4E49A" label="About Us" paletteLabel="About Us" tag="-1" image="NSInfo" autovalidates="NO" id="tUb-eR-ccF"> |
||||
<connections> |
||||
<action selector="openAboutUsWindow:" target="-2" id="4HB-aV-iIE"/> |
||||
</connections> |
||||
</toolbarItem> |
||||
</allowedToolbarItems> |
||||
<defaultToolbarItems> |
||||
<toolbarItem reference="xOr-FL-A4i"/> |
||||
<toolbarItem reference="36s-BR-VOv"/> |
||||
<toolbarItem reference="tUb-eR-ccF"/> |
||||
</defaultToolbarItems> |
||||
</toolbar> |
||||
<connections> |
||||
<outlet property="delegate" destination="-2" id="0bl-1N-AYu"/> |
||||
</connections> |
||||
<point key="canvasLocation" x="304.5" y="230.5"/> |
||||
</window> |
||||
<window title="Window" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" hasShadow="NO" hidesOnDeactivate="YES" oneShot="NO" releasedWhenClosed="NO" showsToolbarButton="NO" visibleAtLaunch="NO" animationBehavior="alertPanel" appearanceType="aqua" frameAutosaveName="" id="Z6I-Ny-aGx" customClass="Panel"> |
||||
<windowStyleMask key="styleMask" closable="YES" miniaturizable="YES" resizable="YES" documentModal="YES" nonactivatingPanel="YES" texturedBackground="YES"/> |
||||
<windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> |
||||
<rect key="contentRect" x="120" y="64" width="345" height="320"/> |
||||
<rect key="screenRect" x="0.0" y="0.0" width="1280" height="777"/> |
||||
<value key="minSize" type="size" width="345" height="320"/> |
||||
<value key="maxSize" type="size" width="345" height="320"/> |
||||
<view key="contentView" id="byp-2M-iAO"> |
||||
<rect key="frame" x="0.0" y="0.0" width="345" height="320"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<subviews> |
||||
<scrollView focusRingType="none" autohidesScrollers="YES" horizontalLineScroll="22" horizontalPageScroll="10" verticalLineScroll="22" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3B2-hV-f8v"> |
||||
<rect key="frame" x="8" y="27" width="329" height="257"/> |
||||
<clipView key="contentView" id="xtL-kR-J62"> |
||||
<rect key="frame" x="1" y="0.0" width="327" height="256"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<tableView focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" alternatingRowBackgroundColors="YES" columnSelection="YES" multipleSelection="NO" emptySelection="NO" autosaveColumns="NO" rowHeight="20" headerView="hHn-48-RCd" id="6Hm-XH-CMI"> |
||||
<rect key="frame" x="0.0" y="0.0" width="327" height="233"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<size key="intercellSpacing" width="3" height="2"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
<tableViewGridLines key="gridStyleMask" vertical="YES"/> |
||||
<color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> |
||||
<tableColumns> |
||||
<tableColumn identifier="availableTimezones" editable="NO" width="205.5" minWidth="40" maxWidth="1000" id="TEh-P6-jcT"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" title="Fuseau horaire Nom"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="iJJ-UY-Q3g"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
</tableColumn> |
||||
<tableColumn identifier="abbreviation" editable="NO" width="115.71875" minWidth="10" maxWidth="3.4028234663852886e+38" id="Iuq-hc-Ma0"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Abréviation"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="pwL-7P-icB"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
</tableColumn> |
||||
</tableColumns> |
||||
<connections> |
||||
<binding destination="-2" name="doubleClickTarget" keyPath="self" id="88W-iC-qMj"> |
||||
<dictionary key="options"> |
||||
<string key="NSSelectorName">addToFavorites:</string> |
||||
</dictionary> |
||||
</binding> |
||||
<outlet property="dataSource" destination="-2" id="OMp-pn-8oq"/> |
||||
<outlet property="delegate" destination="-2" id="mJw-oC-0dA"/> |
||||
</connections> |
||||
</tableView> |
||||
</subviews> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</clipView> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="257" id="Yru-1j-SeJ"/> |
||||
</constraints> |
||||
<scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="nBP-zr-k3M"> |
||||
<rect key="frame" x="1" y="241" width="327" height="15"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="x3e-JD-qwd"> |
||||
<rect key="frame" x="224" y="17" width="15" height="102"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<tableHeaderView key="headerView" id="hHn-48-RCd"> |
||||
<rect key="frame" x="0.0" y="0.0" width="327" height="23"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</tableHeaderView> |
||||
</scrollView> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="KlN-dU-s3o"> |
||||
<rect key="frame" x="2" y="-2" width="72" height="32"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="21" id="2QY-oM-3sO"/> |
||||
<constraint firstAttribute="width" constant="60" id="6JQ-5n-kb7"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="push" title="Ajouter" bezelStyle="rounded" imagePosition="overlaps" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="kZe-ua-0p9"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="addToFavorites:" target="-2" id="y27-tR-f1g"/> |
||||
</connections> |
||||
</button> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Ueh-Ln-TC8"> |
||||
<rect key="frame" x="64" y="-2" width="72" height="32"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="60" id="Bql-d6-oci"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="push" title="Fermer" bezelStyle="rounded" imagePosition="overlaps" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="ODT-4D-sWu"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="closePanel:" target="-2" id="6v9-wN-07n"/> |
||||
</connections> |
||||
</button> |
||||
<searchField wantsLayer="YES" focusRingType="none" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="5jL-eb-qdB"> |
||||
<rect key="frame" x="8" y="287" width="329" height="25"/> |
||||
<searchFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" borderStyle="bezel" focusRingType="none" placeholderString="Entrez le nom Fuseau horaire" drawsBackground="YES" usesSingleLineMode="YES" id="2DC-BS-vbb"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</searchFieldCell> |
||||
<connections> |
||||
<action selector="filterArray:" target="-2" id="tX8-FN-IPy"/> |
||||
</connections> |
||||
</searchField> |
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Rty-6T-aPw"> |
||||
<rect key="frame" x="131" y="8" width="205" height="20"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="20" id="y9Z-oT-NCB"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Label" id="ysU-zz-gJh"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/> |
||||
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstAttribute="trailing" secondItem="Rty-6T-aPw" secondAttribute="trailing" constant="11" id="1Gg-n3-Hv8"/> |
||||
<constraint firstItem="3B2-hV-f8v" firstAttribute="leading" secondItem="byp-2M-iAO" secondAttribute="leading" constant="8" id="Ahs-HL-zfw"/> |
||||
<constraint firstAttribute="bottom" secondItem="KlN-dU-s3o" secondAttribute="bottom" constant="5" id="Hfs-he-pyg"/> |
||||
<constraint firstItem="3B2-hV-f8v" firstAttribute="top" secondItem="5jL-eb-qdB" secondAttribute="bottom" constant="3" id="Kkl-0p-AQX"/> |
||||
<constraint firstItem="5jL-eb-qdB" firstAttribute="top" secondItem="byp-2M-iAO" secondAttribute="top" constant="8" id="Lsa-mI-nMD"/> |
||||
<constraint firstItem="Rty-6T-aPw" firstAttribute="leading" secondItem="Ueh-Ln-TC8" secondAttribute="trailing" constant="3" id="NEj-GQ-4oy"/> |
||||
<constraint firstItem="5jL-eb-qdB" firstAttribute="leading" secondItem="byp-2M-iAO" secondAttribute="leading" constant="8" id="YFf-7y-AA0"/> |
||||
<constraint firstAttribute="bottom" secondItem="Ueh-Ln-TC8" secondAttribute="bottom" constant="5" id="kS2-Vc-NT7"/> |
||||
<constraint firstAttribute="bottom" secondItem="Rty-6T-aPw" secondAttribute="bottom" constant="8" id="pyy-35-q2k"/> |
||||
<constraint firstItem="Ueh-Ln-TC8" firstAttribute="leading" secondItem="KlN-dU-s3o" secondAttribute="trailing" constant="2" id="qYv-aW-l68"/> |
||||
<constraint firstAttribute="trailing" secondItem="3B2-hV-f8v" secondAttribute="trailing" constant="8" id="rae-0k-Dgj"/> |
||||
<constraint firstAttribute="trailing" secondItem="5jL-eb-qdB" secondAttribute="trailing" constant="8" id="uy8-q5-8Vi"/> |
||||
<constraint firstItem="KlN-dU-s3o" firstAttribute="leading" secondItem="byp-2M-iAO" secondAttribute="leading" constant="8" id="y6V-Aa-AZU"/> |
||||
<constraint firstItem="Ueh-Ln-TC8" firstAttribute="height" secondItem="KlN-dU-s3o" secondAttribute="height" id="zET-ty-u3G"/> |
||||
</constraints> |
||||
</view> |
||||
<point key="canvasLocation" x="582.5" y="681"/> |
||||
</window> |
||||
<userDefaultsController representsSharedInstance="YES" id="sEG-Zb-KUM"/> |
||||
</objects> |
||||
<resources> |
||||
<image name="NSAddTemplate" width="11" height="11"/> |
||||
<image name="NSInfo" width="32" height="32"/> |
||||
<image name="NSRemoveTemplate" width="11" height="11"/> |
||||
</resources> |
||||
</document> |
@ -1,28 +0,0 @@
|
||||
/* |
||||
Localizable.strings |
||||
Clocker |
||||
|
||||
Created by Abhishek Banthia on 11/17/15. |
||||
|
||||
*/ |
||||
|
||||
"Yesterday" = "昨日"; |
||||
"Today" = "今日"; |
||||
"Tomorrow" = "明日"; |
||||
"MaximumTimezoneMessage" = "最大10タイムゾーンを許可します"; |
||||
"DuplicateTimezoneMessage" = "タイムゾーンが既に選択されています"; |
||||
|
||||
//Rating App |
||||
"Not Really" = "あんまり"; |
||||
"Yes!" = "はい!"; |
||||
"AskForRatingMessage" = "その後、 App Storeで私たちを評価します"; |
||||
"AskForFeedbackMessage" = "私たちにいくつかのフィードバックを与えるマインド"; |
||||
"NoSelected" = "結構です"; |
||||
"YesSelected" = "必ず、 [OK]を"; |
||||
|
||||
"iRateMessageTitle" = "%@の評価"; |
||||
"iRateAppMessage" = "%@をお使いいただき大変ありがとうございます。もしよろしければ1分程で済みますので、このアプリの評価をお願いします。ご協力感謝いたします!"; |
||||
"iRateGameMessage" = "%@をプレイしていただき大変ありがとうございます。もしよろしければ1分程で済みますので、このアプリの評価をお願いします。ご協力感謝いたします!"; |
||||
"iRateCancelButton" = "いえ、結構です"; |
||||
"iRateRateButton" = "今すぐ評価する"; |
||||
"iRateRemindButton" = "後でする"; |
@ -1,652 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="8191" systemVersion="15B42" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"> |
||||
<dependencies> |
||||
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="8191"/> |
||||
</dependencies> |
||||
<objects> |
||||
<customObject id="-2" userLabel="File's Owner" customClass="NSApplication"> |
||||
<connections> |
||||
<outlet property="delegate" destination="494" id="495"/> |
||||
</connections> |
||||
</customObject> |
||||
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/> |
||||
<customObject id="-3" userLabel="Application" customClass="NSObject"/> |
||||
<menu title="AMainMenu" systemMenu="main" id="29"> |
||||
<items> |
||||
<menuItem title="Clocker" id="56"> |
||||
<menu key="submenu" title="Clocker" systemMenu="apple" id="57"> |
||||
<items> |
||||
<menuItem title="About Clocker" id="58"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="orderFrontStandardAboutPanel:" target="-2" id="142"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="236"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Preferences…" keyEquivalent="," id="129"/> |
||||
<menuItem isSeparatorItem="YES" id="143"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Services" id="131"> |
||||
<menu key="submenu" title="Services" systemMenu="services" id="130"/> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="144"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Hide Clocker" keyEquivalent="h" id="134"> |
||||
<connections> |
||||
<action selector="hide:" target="-1" id="367"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Hide Others" keyEquivalent="h" id="145"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="hideOtherApplications:" target="-1" id="368"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Show All" id="150"> |
||||
<connections> |
||||
<action selector="unhideAllApplications:" target="-1" id="370"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="149"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Quit Clocker" keyEquivalent="q" id="136"> |
||||
<connections> |
||||
<action selector="terminate:" target="-3" id="449"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="File" id="83"> |
||||
<menu key="submenu" title="File" id="81"> |
||||
<items> |
||||
<menuItem title="New" keyEquivalent="n" id="82"> |
||||
<connections> |
||||
<action selector="newDocument:" target="-1" id="373"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Open…" keyEquivalent="o" id="72"> |
||||
<connections> |
||||
<action selector="openDocument:" target="-1" id="374"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Open Recent" id="124"> |
||||
<menu key="submenu" title="Open Recent" systemMenu="recentDocuments" id="125"> |
||||
<items> |
||||
<menuItem title="Clear Menu" id="126"> |
||||
<connections> |
||||
<action selector="clearRecentDocuments:" target="-1" id="127"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="79"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Close" keyEquivalent="w" id="73"> |
||||
<connections> |
||||
<action selector="performClose:" target="-1" id="193"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Save…" keyEquivalent="s" id="75"> |
||||
<connections> |
||||
<action selector="saveDocument:" target="-1" id="362"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Revert to Saved" id="112"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="revertDocumentToSaved:" target="-1" id="364"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="74"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Page Setup..." keyEquivalent="P" id="77"> |
||||
<modifierMask key="keyEquivalentModifierMask" shift="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="runPageLayout:" target="-1" id="87"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Print…" keyEquivalent="p" id="78"> |
||||
<connections> |
||||
<action selector="print:" target="-1" id="86"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Edit" id="217"> |
||||
<menu key="submenu" title="Edit" id="205"> |
||||
<items> |
||||
<menuItem title="Undo" keyEquivalent="z" id="207"> |
||||
<connections> |
||||
<action selector="undo:" target="-1" id="223"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Redo" keyEquivalent="Z" id="215"> |
||||
<modifierMask key="keyEquivalentModifierMask" shift="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="redo:" target="-1" id="231"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="206"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Cut" keyEquivalent="x" id="199"> |
||||
<connections> |
||||
<action selector="cut:" target="-1" id="228"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Copy" keyEquivalent="c" id="197"> |
||||
<connections> |
||||
<action selector="copy:" target="-1" id="224"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Paste" keyEquivalent="v" id="203"> |
||||
<connections> |
||||
<action selector="paste:" target="-1" id="226"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Paste and Match Style" keyEquivalent="V" id="485"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="pasteAsPlainText:" target="-1" id="486"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Delete" id="202"> |
||||
<connections> |
||||
<action selector="delete:" target="-1" id="235"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Select All" keyEquivalent="a" id="198"> |
||||
<connections> |
||||
<action selector="selectAll:" target="-1" id="232"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="214"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Find" id="218"> |
||||
<menu key="submenu" title="Find" id="220"> |
||||
<items> |
||||
<menuItem title="Find…" tag="1" keyEquivalent="f" id="209"> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="241"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Find and Replace…" tag="12" keyEquivalent="f" id="534"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="535"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Find Next" tag="2" keyEquivalent="g" id="208"> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="487"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Find Previous" tag="3" keyEquivalent="G" id="213"> |
||||
<modifierMask key="keyEquivalentModifierMask" shift="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="488"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Use Selection for Find" tag="7" keyEquivalent="e" id="221"> |
||||
<connections> |
||||
<action selector="performFindPanelAction:" target="-1" id="489"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Jump to Selection" keyEquivalent="j" id="210"> |
||||
<connections> |
||||
<action selector="centerSelectionInVisibleArea:" target="-1" id="245"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Spelling and Grammar" id="216"> |
||||
<menu key="submenu" title="Spelling and Grammar" id="200"> |
||||
<items> |
||||
<menuItem title="Show Spelling and Grammar" keyEquivalent=":" id="204"> |
||||
<connections> |
||||
<action selector="showGuessPanel:" target="-1" id="230"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Check Document Now" keyEquivalent=";" id="201"> |
||||
<connections> |
||||
<action selector="checkSpelling:" target="-1" id="225"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="453"/> |
||||
<menuItem title="Check Spelling While Typing" id="219"> |
||||
<connections> |
||||
<action selector="toggleContinuousSpellChecking:" target="-1" id="222"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Check Grammar With Spelling" id="346"> |
||||
<connections> |
||||
<action selector="toggleGrammarChecking:" target="-1" id="347"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Correct Spelling Automatically" id="454"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="toggleAutomaticSpellingCorrection:" target="-1" id="456"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Substitutions" id="348"> |
||||
<menu key="submenu" title="Substitutions" id="349"> |
||||
<items> |
||||
<menuItem title="Show Substitutions" id="457"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="orderFrontSubstitutionsPanel:" target="-1" id="458"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="459"/> |
||||
<menuItem title="Smart Copy/Paste" tag="1" keyEquivalent="f" id="350"> |
||||
<connections> |
||||
<action selector="toggleSmartInsertDelete:" target="-1" id="355"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Smart Quotes" tag="2" keyEquivalent="g" id="351"> |
||||
<connections> |
||||
<action selector="toggleAutomaticQuoteSubstitution:" target="-1" id="356"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Smart Dashes" id="460"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="toggleAutomaticDashSubstitution:" target="-1" id="461"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Smart Links" tag="3" keyEquivalent="G" id="354"> |
||||
<modifierMask key="keyEquivalentModifierMask" shift="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="toggleAutomaticLinkDetection:" target="-1" id="357"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Text Replacement" id="462"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="toggleAutomaticTextReplacement:" target="-1" id="463"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Transformations" id="450"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Transformations" id="451"> |
||||
<items> |
||||
<menuItem title="Make Upper Case" id="452"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="uppercaseWord:" target="-1" id="464"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Make Lower Case" id="465"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="lowercaseWord:" target="-1" id="468"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Capitalize" id="466"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="capitalizeWord:" target="-1" id="467"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Speech" id="211"> |
||||
<menu key="submenu" title="Speech" id="212"> |
||||
<items> |
||||
<menuItem title="Start Speaking" id="196"> |
||||
<connections> |
||||
<action selector="startSpeaking:" target="-1" id="233"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Stop Speaking" id="195"> |
||||
<connections> |
||||
<action selector="stopSpeaking:" target="-1" id="227"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Format" id="375"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Format" id="376"> |
||||
<items> |
||||
<menuItem title="Font" id="377"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Font" systemMenu="font" id="388"> |
||||
<items> |
||||
<menuItem title="Show Fonts" keyEquivalent="t" id="389"> |
||||
<connections> |
||||
<action selector="orderFrontFontPanel:" target="420" id="424"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Bold" tag="2" keyEquivalent="b" id="390"> |
||||
<connections> |
||||
<action selector="addFontTrait:" target="420" id="421"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Italic" tag="1" keyEquivalent="i" id="391"> |
||||
<connections> |
||||
<action selector="addFontTrait:" target="420" id="422"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Underline" keyEquivalent="u" id="392"> |
||||
<connections> |
||||
<action selector="underline:" target="-1" id="432"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="393"/> |
||||
<menuItem title="Bigger" tag="3" keyEquivalent="+" id="394"> |
||||
<connections> |
||||
<action selector="modifyFont:" target="420" id="425"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Smaller" tag="4" keyEquivalent="-" id="395"> |
||||
<connections> |
||||
<action selector="modifyFont:" target="420" id="423"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="396"/> |
||||
<menuItem title="Kern" id="397"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Kern" id="415"> |
||||
<items> |
||||
<menuItem title="Use Default" id="416"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="useStandardKerning:" target="-1" id="438"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Use None" id="417"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="turnOffKerning:" target="-1" id="441"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Tighten" id="418"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="tightenKerning:" target="-1" id="431"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Loosen" id="419"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="loosenKerning:" target="-1" id="435"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Ligature" id="398"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Ligature" id="411"> |
||||
<items> |
||||
<menuItem title="Use Default" id="412"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="useStandardLigatures:" target="-1" id="439"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Use None" id="413"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="turnOffLigatures:" target="-1" id="440"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Use All" id="414"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="useAllLigatures:" target="-1" id="434"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Baseline" id="399"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Baseline" id="405"> |
||||
<items> |
||||
<menuItem title="Use Default" id="406"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="unscript:" target="-1" id="437"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Superscript" id="407"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="superscript:" target="-1" id="430"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Subscript" id="408"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="subscript:" target="-1" id="429"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Raise" id="409"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="raiseBaseline:" target="-1" id="426"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Lower" id="410"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="lowerBaseline:" target="-1" id="427"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="400"/> |
||||
<menuItem title="Show Colors" keyEquivalent="C" id="401"> |
||||
<connections> |
||||
<action selector="orderFrontColorPanel:" target="-1" id="433"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="402"/> |
||||
<menuItem title="Copy Style" keyEquivalent="c" id="403"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="copyFont:" target="-1" id="428"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Paste Style" keyEquivalent="v" id="404"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="pasteFont:" target="-1" id="436"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Text" id="496"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Text" id="497"> |
||||
<items> |
||||
<menuItem title="Align Left" keyEquivalent="{" id="498"> |
||||
<connections> |
||||
<action selector="alignLeft:" target="-1" id="524"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Center" keyEquivalent="|" id="499"> |
||||
<connections> |
||||
<action selector="alignCenter:" target="-1" id="518"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Justify" id="500"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="alignJustified:" target="-1" id="523"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Align Right" keyEquivalent="}" id="501"> |
||||
<connections> |
||||
<action selector="alignRight:" target="-1" id="521"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="502"/> |
||||
<menuItem title="Writing Direction" id="503"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Writing Direction" id="508"> |
||||
<items> |
||||
<menuItem title="Paragraph" enabled="NO" id="509"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
</menuItem> |
||||
<menuItem id="510"> |
||||
<string key="title"> Default</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeBaseWritingDirectionNatural:" target="-1" id="525"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem id="511"> |
||||
<string key="title"> Left to Right</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeBaseWritingDirectionLeftToRight:" target="-1" id="526"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem id="512"> |
||||
<string key="title"> Right to Left</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeBaseWritingDirectionRightToLeft:" target="-1" id="527"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="513"/> |
||||
<menuItem title="Selection" enabled="NO" id="514"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
</menuItem> |
||||
<menuItem id="515"> |
||||
<string key="title"> Default</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeTextWritingDirectionNatural:" target="-1" id="528"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem id="516"> |
||||
<string key="title"> Left to Right</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeTextWritingDirectionLeftToRight:" target="-1" id="529"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem id="517"> |
||||
<string key="title"> Right to Left</string> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="makeTextWritingDirectionRightToLeft:" target="-1" id="530"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="504"/> |
||||
<menuItem title="Show Ruler" id="505"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<connections> |
||||
<action selector="toggleRuler:" target="-1" id="520"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Copy Ruler" keyEquivalent="c" id="506"> |
||||
<modifierMask key="keyEquivalentModifierMask" control="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="copyRuler:" target="-1" id="522"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Paste Ruler" keyEquivalent="v" id="507"> |
||||
<modifierMask key="keyEquivalentModifierMask" control="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="pasteRuler:" target="-1" id="519"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="View" id="295"> |
||||
<menu key="submenu" title="View" id="296"> |
||||
<items> |
||||
<menuItem title="Show Toolbar" keyEquivalent="t" id="297"> |
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> |
||||
<connections> |
||||
<action selector="toggleToolbarShown:" target="-1" id="366"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Customize Toolbar…" id="298"> |
||||
<connections> |
||||
<action selector="runToolbarCustomizationPalette:" target="-1" id="365"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Window" id="19"> |
||||
<menu key="submenu" title="Window" systemMenu="window" id="24"> |
||||
<items> |
||||
<menuItem title="Minimize" keyEquivalent="m" id="23"> |
||||
<connections> |
||||
<action selector="performMiniaturize:" target="-1" id="37"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem title="Zoom" id="239"> |
||||
<connections> |
||||
<action selector="performZoom:" target="-1" id="240"/> |
||||
</connections> |
||||
</menuItem> |
||||
<menuItem isSeparatorItem="YES" id="92"> |
||||
<modifierMask key="keyEquivalentModifierMask" command="YES"/> |
||||
</menuItem> |
||||
<menuItem title="Bring All to Front" id="5"> |
||||
<connections> |
||||
<action selector="arrangeInFront:" target="-1" id="39"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
<menuItem title="Help" id="490"> |
||||
<modifierMask key="keyEquivalentModifierMask"/> |
||||
<menu key="submenu" title="Help" systemMenu="help" id="491"> |
||||
<items> |
||||
<menuItem title="Clocker Help" keyEquivalent="?" id="492"> |
||||
<connections> |
||||
<action selector="showHelp:" target="-1" id="493"/> |
||||
</connections> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
</menuItem> |
||||
</items> |
||||
</menu> |
||||
<customObject id="494" customClass="ApplicationDelegate"/> |
||||
<customObject id="420" customClass="NSFontManager"/> |
||||
</objects> |
||||
</document> |
@ -1,261 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="9531" systemVersion="15C50" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES"> |
||||
<dependencies> |
||||
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="9531"/> |
||||
</dependencies> |
||||
<objects> |
||||
<customObject id="-2" userLabel="File's Owner" customClass="PanelController"> |
||||
<connections> |
||||
<outlet property="backgroundView" destination="6" id="20"/> |
||||
<outlet property="mainTableview" destination="dFw-ts-8OZ" id="wwJ-jA-lCy"/> |
||||
<outlet property="preferencesButton" destination="OFy-u1-TnH" id="SId-Ih-ssT"/> |
||||
<outlet property="scrollViewHeight" destination="QcT-N0-G4s" id="EHr-Co-L0Z"/> |
||||
<outlet property="shutdownButton" destination="nTt-pf-Hw2" id="gCK-0D-gnK"/> |
||||
<outlet property="window" destination="5" id="7"/> |
||||
</connections> |
||||
</customObject> |
||||
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/> |
||||
<customObject id="-3" userLabel="Application" customClass="NSObject"/> |
||||
<window allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" restorable="NO" oneShot="NO" releasedWhenClosed="NO" showsToolbarButton="NO" visibleAtLaunch="NO" animationBehavior="none" id="5" customClass="Panel"> |
||||
<windowStyleMask key="styleMask" utility="YES" nonactivatingPanel="YES" texturedBackground="YES"/> |
||||
<windowCollectionBehavior key="collectionBehavior" moveToActiveSpace="YES" ignoresCycle="YES"/> |
||||
<windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> |
||||
<rect key="contentRect" x="162" y="101" width="280" height="273"/> |
||||
<rect key="screenRect" x="0.0" y="0.0" width="1280" height="777"/> |
||||
<view key="contentView" id="6" customClass="BackgroundView"> |
||||
<rect key="frame" x="0.0" y="0.0" width="280" height="273"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<subviews> |
||||
<scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="56" horizontalPageScroll="10" verticalLineScroll="56" verticalPageScroll="10" hasHorizontalScroller="NO" hasVerticalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="4Gd-Nv-fXr"> |
||||
<rect key="frame" x="-1" y="0.0" width="282" height="265"/> |
||||
<clipView key="contentView" id="4MZ-Di-yNR"> |
||||
<rect key="frame" x="0.0" y="0.0" width="282" height="265"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<tableView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" columnSelection="YES" multipleSelection="NO" autosaveColumns="NO" rowHeight="55" viewBased="YES" id="dFw-ts-8OZ"> |
||||
<rect key="frame" x="0.0" y="0.0" width="282" height="0.0"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<size key="intercellSpacing" width="3" height="1"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
<tableViewGridLines key="gridStyleMask" dashed="YES"/> |
||||
<color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> |
||||
<tableColumns> |
||||
<tableColumn width="279" minWidth="40" maxWidth="1000" id="LTt-db-Dwv"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="7LK-2q-H3f"> |
||||
<font key="font" metaFont="system"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
<prototypeCellViews> |
||||
<tableCellView identifier="timeZoneCell" id="qbN-ba-fho"> |
||||
<rect key="frame" x="1" y="0.0" width="279" height="60"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" tag="100" translatesAutoresizingMaskIntoConstraints="NO" id="etF-33-bCB"> |
||||
<rect key="frame" x="8" y="26" width="144" height="26"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="140" id="32b-h6-joo"/> |
||||
<constraint firstAttribute="height" constant="26" id="vod-YN-iNX"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" placeholderString="Timezone Name" id="rnh-AP-ooc"> |
||||
<font key="font" size="15" name="Helvetica-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
<textField verticalHuggingPriority="750" tag="102" translatesAutoresizingMaskIntoConstraints="NO" id="QUd-7D-q14"> |
||||
<rect key="frame" x="8" y="9" width="104" height="22"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="22" id="42Y-hy-Uo7"/> |
||||
<constraint firstAttribute="width" constant="100" id="fkH-oq-qvM"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" placeholderString="Date" id="74U-rv-5xj"> |
||||
<font key="font" size="13" name="Helvetica-Bold"/> |
||||
<color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" tag="101" translatesAutoresizingMaskIntoConstraints="NO" id="vnv-J2-7r1"> |
||||
<rect key="frame" x="127" y="17" width="146" height="33"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="33" id="3WU-de-OQL"/> |
||||
<constraint firstAttribute="width" constant="142" id="cQV-gJ-zMz"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" placeholderString="23:46" id="g8s-EU-UHx"> |
||||
<font key="font" size="31" name="Helvetica-Light"/> |
||||
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstItem="QUd-7D-q14" firstAttribute="leading" secondItem="qbN-ba-fho" secondAttribute="leading" constant="10" id="0Qz-Ev-efP"/> |
||||
<constraint firstItem="etF-33-bCB" firstAttribute="top" secondItem="qbN-ba-fho" secondAttribute="top" constant="8" id="Lct-kG-usb"/> |
||||
<constraint firstItem="vnv-J2-7r1" firstAttribute="centerY" secondItem="qbN-ba-fho" secondAttribute="centerY" constant="-3.5" id="TuQ-gE-ZUh"/> |
||||
<constraint firstItem="QUd-7D-q14" firstAttribute="top" secondItem="etF-33-bCB" secondAttribute="bottom" constant="-5" id="VO6-Zn-eA3"/> |
||||
<constraint firstItem="etF-33-bCB" firstAttribute="leading" secondItem="qbN-ba-fho" secondAttribute="leading" constant="10" id="ueW-ow-ZRq"/> |
||||
<constraint firstAttribute="trailing" secondItem="vnv-J2-7r1" secondAttribute="trailing" constant="8" id="zXo-eA-0bQ"/> |
||||
</constraints> |
||||
<connections> |
||||
<outlet property="textField" destination="etF-33-bCB" id="6fd-cc-Qq2"/> |
||||
</connections> |
||||
</tableCellView> |
||||
<tableCellView identifier="ratingCellView" id="uSg-Ob-VaY" customClass="CLRatingCellView"> |
||||
<rect key="frame" x="1" y="61" width="279" height="51"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="DV6-1S-ozI"> |
||||
<rect key="frame" x="92" y="31" width="105" height="20"/> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Enjoying Clocker?" id="Smx-UD-UHl"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Xr7-B4-Qrg"> |
||||
<rect key="frame" x="29" y="2" width="112" height="25"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="100" id="2rr-Hq-XNm"/> |
||||
<constraint firstAttribute="height" constant="14" id="cZI-Gh-Ts5"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="push" title="Not Really" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="BxE-ut-DNY"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="actionOnNegativeFeedback:" target="uSg-Ob-VaY" id="fyn-OT-8QU"/> |
||||
</connections> |
||||
</button> |
||||
<imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="HVb-Zh-7bm"> |
||||
<rect key="frame" x="72" y="31" width="16" height="16"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="16" id="8V1-MH-3aC"/> |
||||
<constraint firstAttribute="width" constant="16" id="sCo-ah-NEf"/> |
||||
</constraints> |
||||
<imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="ClockerIcon-16" id="WaH-om-d6S"/> |
||||
</imageView> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="KHa-CS-VSi"> |
||||
<rect key="frame" x="134" y="2" width="112" height="25"/> |
||||
<buttonCell key="cell" type="push" title="Yes!" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="5b3-zK-eAK"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="actionOnPositiveFeedback:" target="uSg-Ob-VaY" id="osb-fs-bPh"/> |
||||
</connections> |
||||
</button> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstItem="KHa-CS-VSi" firstAttribute="height" secondItem="Xr7-B4-Qrg" secondAttribute="height" id="B0P-Qp-kXo"/> |
||||
<constraint firstItem="KHa-CS-VSi" firstAttribute="centerX" secondItem="uSg-Ob-VaY" secondAttribute="centerX" constant="50" id="Lat-9z-4zx"/> |
||||
<constraint firstItem="HVb-Zh-7bm" firstAttribute="top" secondItem="uSg-Ob-VaY" secondAttribute="top" constant="4" id="OMd-kn-yzF"/> |
||||
<constraint firstItem="DV6-1S-ozI" firstAttribute="centerX" secondItem="uSg-Ob-VaY" secondAttribute="centerX" constant="5" id="jKr-Dz-Zyc"/> |
||||
<constraint firstItem="Xr7-B4-Qrg" firstAttribute="top" secondItem="DV6-1S-ozI" secondAttribute="bottom" constant="8" id="m18-dO-Naj"/> |
||||
<constraint firstItem="KHa-CS-VSi" firstAttribute="top" secondItem="DV6-1S-ozI" secondAttribute="bottom" constant="8" id="rg0-MF-n9j"/> |
||||
<constraint firstItem="KHa-CS-VSi" firstAttribute="width" secondItem="Xr7-B4-Qrg" secondAttribute="width" id="tdx-bo-yWb"/> |
||||
<constraint firstItem="DV6-1S-ozI" firstAttribute="leading" secondItem="HVb-Zh-7bm" secondAttribute="trailing" constant="6" id="tsg-tN-lFV"/> |
||||
<constraint firstItem="DV6-1S-ozI" firstAttribute="top" secondItem="uSg-Ob-VaY" secondAttribute="top" id="yCc-cf-MCd"/> |
||||
<constraint firstItem="Xr7-B4-Qrg" firstAttribute="centerX" secondItem="uSg-Ob-VaY" secondAttribute="centerX" constant="-55" id="yXu-4w-cSS"/> |
||||
</constraints> |
||||
<connections> |
||||
<outlet property="imageView" destination="HVb-Zh-7bm" id="JM1-kh-oZn"/> |
||||
<outlet property="leftButton" destination="Xr7-B4-Qrg" id="zMy-dD-hx6"/> |
||||
<outlet property="leftField" destination="DV6-1S-ozI" id="Mfc-2l-tjA"/> |
||||
<outlet property="rightButton" destination="KHa-CS-VSi" id="0mz-t8-4g2"/> |
||||
</connections> |
||||
</tableCellView> |
||||
</prototypeCellViews> |
||||
</tableColumn> |
||||
</tableColumns> |
||||
<connections> |
||||
<outlet property="dataSource" destination="-2" id="Q9t-Yx-hmz"/> |
||||
<outlet property="delegate" destination="-2" id="AqY-uU-Noo"/> |
||||
</connections> |
||||
</tableView> |
||||
</subviews> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</clipView> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="265" id="QcT-N0-G4s"/> |
||||
</constraints> |
||||
<scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="DJr-1R-9LK"> |
||||
<rect key="frame" x="-100" y="-100" width="223" height="15"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="cfu-8V-LKK"> |
||||
<rect key="frame" x="-100" y="-100" width="15" height="102"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
</scrollView> |
||||
<textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="HR1-ZK-Ey0"> |
||||
<rect key="frame" x="0.0" y="2" width="280" height="22"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="22" id="IxM-FF-J1F"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" state="on" alignment="center" placeholderString="Clocker" drawsBackground="YES" id="KVB-OA-XfT"> |
||||
<font key="font" size="17" name="Palatino-Bold"/> |
||||
<color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="OFy-u1-TnH"> |
||||
<rect key="frame" x="246" y="1" width="29" height="19"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="29" id="MIQ-4K-E5A"/> |
||||
<constraint firstAttribute="height" constant="18" id="X7D-ep-wB4"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="recessed" bezelStyle="recessed" image="NSActionTemplate" imagePosition="only" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="vYm-fs-Zjd"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" metaFont="systemBold" size="12"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="openPreferences:" target="-2" id="0Yc-Eq-obQ"/> |
||||
</connections> |
||||
</button> |
||||
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="nTt-pf-Hw2"> |
||||
<rect key="frame" x="0.0" y="1" width="29" height="19"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="29" id="8kZ-Pj-VK6"/> |
||||
<constraint firstAttribute="height" constant="18" id="sVG-VE-3q4"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="recessed" bezelStyle="recessed" image="PowerIcon" imagePosition="only" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="sUh-16-Fhk"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES" changeBackground="YES" changeGray="YES"/> |
||||
<font key="font" metaFont="systemBold" size="12"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="terminate:" target="-1" id="fpZ-pt-UiU"/> |
||||
</connections> |
||||
</button> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstItem="4Gd-Nv-fXr" firstAttribute="top" secondItem="6" secondAttribute="top" constant="8" id="1g0-Hm-7Gh"/> |
||||
<constraint firstAttribute="trailing" secondItem="HR1-ZK-Ey0" secondAttribute="trailing" id="1ol-mo-aQU"/> |
||||
<constraint firstAttribute="bottom" secondItem="HR1-ZK-Ey0" secondAttribute="bottom" constant="2" id="Jtb-Nx-FYR"/> |
||||
<constraint firstAttribute="bottom" secondItem="nTt-pf-Hw2" secondAttribute="bottom" constant="2" id="QoV-TI-KVJ"/> |
||||
<constraint firstAttribute="bottom" secondItem="OFy-u1-TnH" secondAttribute="bottom" constant="2" id="Ubf-Mv-WMp"/> |
||||
<constraint firstAttribute="trailing" secondItem="4Gd-Nv-fXr" secondAttribute="trailing" constant="-1" id="XP6-W0-2XT"/> |
||||
<constraint firstItem="HR1-ZK-Ey0" firstAttribute="leading" secondItem="6" secondAttribute="leading" id="XQ8-hU-ayC"/> |
||||
<constraint firstItem="4Gd-Nv-fXr" firstAttribute="leading" secondItem="6" secondAttribute="leading" constant="-1" id="fHc-VQ-mJ3"/> |
||||
<constraint firstAttribute="trailing" secondItem="OFy-u1-TnH" secondAttribute="trailing" constant="5" id="p2a-qj-LHE"/> |
||||
<constraint firstItem="nTt-pf-Hw2" firstAttribute="leading" secondItem="6" secondAttribute="leading" id="pKl-Ay-0cB"/> |
||||
</constraints> |
||||
</view> |
||||
<connections> |
||||
<outlet property="delegate" destination="-2" id="8"/> |
||||
</connections> |
||||
<point key="canvasLocation" x="230" y="392.5"/> |
||||
</window> |
||||
<userDefaultsController representsSharedInstance="YES" id="O3B-kK-4vm"/> |
||||
</objects> |
||||
<resources> |
||||
<image name="ClockerIcon-16" width="16" height="16"/> |
||||
<image name="NSActionTemplate" width="14" height="14"/> |
||||
<image name="PowerIcon" width="270" height="270"/> |
||||
</resources> |
||||
</document> |
@ -1,337 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="9531" systemVersion="15C50" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES"> |
||||
<dependencies> |
||||
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="9531"/> |
||||
</dependencies> |
||||
<objects> |
||||
<customObject id="-2" userLabel="File's Owner" customClass="PreferencesWindowController"> |
||||
<connections> |
||||
<outlet property="availableTimezoneTableView" destination="6Hm-XH-CMI" id="GA1-tc-E9E"/> |
||||
<outlet property="customView" destination="se5-gp-TjO" id="Ix1-NV-1Ut"/> |
||||
<outlet property="is24HourFormatSelected" destination="N47-gw-Pay" id="2MV-F1-uYf"/> |
||||
<outlet property="messageLabel" destination="Rty-6T-aPw" id="Qg4-mk-P90"/> |
||||
<outlet property="searchField" destination="5jL-eb-qdB" id="K6C-JS-ko0"/> |
||||
<outlet property="timezonePanel" destination="Z6I-Ny-aGx" id="tXP-KH-Xfi"/> |
||||
<outlet property="timezoneTableView" destination="oKD-AN-gPT" id="oD2-n0-4jf"/> |
||||
<outlet property="window" destination="F0z-JX-Cv5" id="gIp-Ho-8D9"/> |
||||
</connections> |
||||
</customObject> |
||||
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/> |
||||
<customObject id="-3" userLabel="Application" customClass="NSObject"/> |
||||
<window identifier="Selected Timezones" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" oneShot="NO" releasedWhenClosed="NO" animationBehavior="documentWindow" id="F0z-JX-Cv5"> |
||||
<windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES"/> |
||||
<windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> |
||||
<rect key="contentRect" x="407" y="179" width="439" height="373"/> |
||||
<rect key="screenRect" x="0.0" y="0.0" width="1280" height="777"/> |
||||
<value key="minSize" type="size" width="439" height="351"/> |
||||
<view key="contentView" id="se5-gp-TjO"> |
||||
<rect key="frame" x="0.0" y="0.0" width="439" height="373"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<button toolTip="Add a timezone" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="DCz-qN-ydK"> |
||||
<rect key="frame" x="11" y="70" width="21" height="22"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="20" id="aUK-f8-pvY"/> |
||||
<constraint firstAttribute="width" constant="21" id="hAr-3f-KNJ"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="smallSquare" bezelStyle="smallSquare" image="NSAddTemplate" imagePosition="overlaps" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="rjd-Yu-81P"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" metaFont="system"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="addTimeZone:" target="-2" id="dXi-qw-Vu2"/> |
||||
</connections> |
||||
</button> |
||||
<button toolTip="Remove a timezone" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ixe-Sn-8qT"> |
||||
<rect key="frame" x="32" y="70" width="21" height="22"/> |
||||
<buttonCell key="cell" type="smallSquare" bezelStyle="smallSquare" image="NSRemoveTemplate" imagePosition="overlaps" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="SVO-Wt-Mfb"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" metaFont="system"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="removeFromFavourites:" target="-2" id="65F-Jn-DMw"/> |
||||
</connections> |
||||
</button> |
||||
<scrollView focusRingType="none" autohidesScrollers="YES" horizontalLineScroll="22" horizontalPageScroll="10" verticalLineScroll="22" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cI0-M7-C9h"> |
||||
<rect key="frame" x="10" y="97" width="419" height="268"/> |
||||
<clipView key="contentView" id="WWk-6i-nI7"> |
||||
<rect key="frame" x="1" y="0.0" width="417" height="267"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<tableView focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" alternatingRowBackgroundColors="YES" columnSelection="YES" autosaveColumns="NO" rowHeight="20" headerView="dKI-Ue-9QX" id="oKD-AN-gPT"> |
||||
<rect key="frame" x="0.0" y="0.0" width="417" height="244"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<size key="intercellSpacing" width="3" height="2"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> |
||||
<tableColumns> |
||||
<tableColumn identifier="timezoneName" editable="NO" width="255.75" minWidth="40" maxWidth="1000" id="CJN-Eu-3s5"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" title="選択したタイムゾーン(複数可)"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="Vu3-3D-aDG"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
</tableColumn> |
||||
<tableColumn identifier="label" width="155" minWidth="10" maxWidth="3.4028234663852886e+38" id="oLW-eb-iRt"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="ラベル"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="RSk-O8-Ndj"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
</tableColumn> |
||||
</tableColumns> |
||||
<connections> |
||||
<outlet property="dataSource" destination="-2" id="do8-kY-7j3"/> |
||||
<outlet property="delegate" destination="-2" id="whN-25-mkj"/> |
||||
</connections> |
||||
</tableView> |
||||
</subviews> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</clipView> |
||||
<scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="Hxj-Tc-UWs"> |
||||
<rect key="frame" x="1" y="222" width="417" height="16"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="s9V-58-jwp"> |
||||
<rect key="frame" x="-14" y="-7" width="15" height="0.0"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<tableHeaderView key="headerView" id="dKI-Ue-9QX"> |
||||
<rect key="frame" x="0.0" y="0.0" width="417" height="23"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</tableHeaderView> |
||||
</scrollView> |
||||
<button toolTip="Clocker will start on each system launch" translatesAutoresizingMaskIntoConstraints="NO" id="GDz-2Z-uX5" customClass="ColoredButton"> |
||||
<rect key="frame" x="9" y="18" width="190" height="21"/> |
||||
<buttonCell key="cell" type="check" title="システム起動時に計時係を開始" bezelStyle="regularSquare" imagePosition="left" inset="2" id="h45-jZ-cPY"> |
||||
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> |
||||
<font key="font" size="12" name="PingFangSC-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<binding destination="-2" name="value" keyPath="self.launchOnLogin" id="Vqw-iQ-qOe"/> |
||||
</connections> |
||||
</button> |
||||
<button toolTip="Show time using a 24-hour format" translatesAutoresizingMaskIntoConstraints="NO" id="N47-gw-Pay" customClass="ColoredButton"> |
||||
<rect key="frame" x="9" y="43" width="343" height="22"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="339" id="0eX-T7-EbU"/> |
||||
<constraint firstAttribute="height" constant="18" id="qwS-Bk-vmy"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="check" title="24時間時計を使用して" bezelStyle="regularSquare" imagePosition="left" alignment="left" state="on" inset="2" id="Fro-eC-cMC"> |
||||
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> |
||||
<font key="font" size="12" name="Helvetica-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="timeFormatSelectionChanged:" target="-2" id="6vB-XV-sSq"/> |
||||
<binding destination="sEG-Zb-KUM" name="value" keyPath="values.is24HourFormatSelected" id="wod-mK-9M5"/> |
||||
</connections> |
||||
</button> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstItem="DCz-qN-ydK" firstAttribute="top" secondItem="cI0-M7-C9h" secondAttribute="bottom" constant="6" id="6Ye-VD-kSE"/> |
||||
<constraint firstItem="GDz-2Z-uX5" firstAttribute="leading" secondItem="se5-gp-TjO" secondAttribute="leading" constant="11" id="FLl-Pc-Gzn"/> |
||||
<constraint firstItem="cI0-M7-C9h" firstAttribute="leading" secondItem="se5-gp-TjO" secondAttribute="leading" constant="10" id="Fy5-6V-gu1"/> |
||||
<constraint firstItem="ixe-Sn-8qT" firstAttribute="leading" secondItem="DCz-qN-ydK" secondAttribute="trailing" id="TLA-Fw-F7P"/> |
||||
<constraint firstItem="DCz-qN-ydK" firstAttribute="leading" secondItem="se5-gp-TjO" secondAttribute="leading" constant="11" id="Waz-CP-UWF"/> |
||||
<constraint firstAttribute="bottom" secondItem="GDz-2Z-uX5" secondAttribute="bottom" constant="20" id="Wev-0K-aHT"/> |
||||
<constraint firstItem="GDz-2Z-uX5" firstAttribute="top" secondItem="N47-gw-Pay" secondAttribute="bottom" constant="8" id="byl-hJ-2hK"/> |
||||
<constraint firstItem="N47-gw-Pay" firstAttribute="top" secondItem="ixe-Sn-8qT" secondAttribute="bottom" constant="8" id="gbd-HA-u9p"/> |
||||
<constraint firstItem="N47-gw-Pay" firstAttribute="leading" secondItem="se5-gp-TjO" secondAttribute="leading" constant="11" id="hXb-69-tI0"/> |
||||
<constraint firstItem="ixe-Sn-8qT" firstAttribute="width" secondItem="DCz-qN-ydK" secondAttribute="width" id="o7k-jf-cL0"/> |
||||
<constraint firstItem="ixe-Sn-8qT" firstAttribute="height" secondItem="DCz-qN-ydK" secondAttribute="height" id="rsK-UP-Umg"/> |
||||
<constraint firstItem="cI0-M7-C9h" firstAttribute="top" secondItem="se5-gp-TjO" secondAttribute="top" constant="8" id="u5H-Ff-ivt"/> |
||||
<constraint firstAttribute="trailing" secondItem="cI0-M7-C9h" secondAttribute="trailing" constant="10" id="ut9-6b-cdu"/> |
||||
<constraint firstItem="N47-gw-Pay" firstAttribute="top" secondItem="DCz-qN-ydK" secondAttribute="bottom" constant="8" id="x0C-Ev-Imb"/> |
||||
</constraints> |
||||
</view> |
||||
<toolbar key="toolbar" implicitIdentifier="F3234CE0-AD10-4FA0-9344-8D25F1B80A00" autosavesConfiguration="NO" displayMode="iconAndLabel" sizeMode="small" id="lwO-iS-sp3"> |
||||
<allowedToolbarItems> |
||||
<toolbarItem implicitItemIdentifier="NSToolbarSpaceItem" id="F8w-j2-3Nf"/> |
||||
<toolbarItem implicitItemIdentifier="NSToolbarFlexibleSpaceItem" id="Gao-yi-TLa"/> |
||||
<toolbarItem implicitItemIdentifier="238FBC10-33D9-453A-9B4E-77BB41D4E49A" label="About Us" paletteLabel="About Us" tag="-1" image="NSInfo" autovalidates="NO" id="Nrm-Be-Nwa"> |
||||
<connections> |
||||
<action selector="openAboutUsWindow:" target="-2" id="GXg-je-6YE"/> |
||||
</connections> |
||||
</toolbarItem> |
||||
</allowedToolbarItems> |
||||
<defaultToolbarItems> |
||||
<toolbarItem reference="F8w-j2-3Nf"/> |
||||
<toolbarItem reference="Gao-yi-TLa"/> |
||||
<toolbarItem reference="Nrm-Be-Nwa"/> |
||||
</defaultToolbarItems> |
||||
</toolbar> |
||||
<connections> |
||||
<outlet property="delegate" destination="-2" id="0bl-1N-AYu"/> |
||||
</connections> |
||||
<point key="canvasLocation" x="304.5" y="230.5"/> |
||||
</window> |
||||
<window title="Window" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" hasShadow="NO" hidesOnDeactivate="YES" oneShot="NO" releasedWhenClosed="NO" showsToolbarButton="NO" visibleAtLaunch="NO" animationBehavior="alertPanel" appearanceType="aqua" frameAutosaveName="" id="Z6I-Ny-aGx" customClass="Panel"> |
||||
<windowStyleMask key="styleMask" closable="YES" miniaturizable="YES" resizable="YES" documentModal="YES" nonactivatingPanel="YES" texturedBackground="YES"/> |
||||
<windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> |
||||
<rect key="contentRect" x="120" y="64" width="345" height="320"/> |
||||
<rect key="screenRect" x="0.0" y="0.0" width="1280" height="777"/> |
||||
<value key="minSize" type="size" width="345" height="320"/> |
||||
<value key="maxSize" type="size" width="345" height="320"/> |
||||
<view key="contentView" id="byp-2M-iAO"> |
||||
<rect key="frame" x="0.0" y="0.0" width="345" height="320"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<subviews> |
||||
<scrollView focusRingType="none" autohidesScrollers="YES" horizontalLineScroll="22" horizontalPageScroll="10" verticalLineScroll="22" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3B2-hV-f8v"> |
||||
<rect key="frame" x="8" y="27" width="329" height="257"/> |
||||
<clipView key="contentView" id="xtL-kR-J62"> |
||||
<rect key="frame" x="1" y="0.0" width="327" height="256"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<tableView focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" alternatingRowBackgroundColors="YES" multipleSelection="NO" emptySelection="NO" autosaveColumns="NO" rowHeight="20" headerView="hHn-48-RCd" id="6Hm-XH-CMI"> |
||||
<rect key="frame" x="0.0" y="0.0" width="327" height="233"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
<size key="intercellSpacing" width="3" height="2"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
<tableViewGridLines key="gridStyleMask" vertical="YES"/> |
||||
<color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> |
||||
<tableColumns> |
||||
<tableColumn identifier="availableTimezones" editable="NO" width="205.5" minWidth="40" maxWidth="1000" id="TEh-P6-jcT"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" title="タイムゾーン名"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="iJJ-UY-Q3g"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
</tableColumn> |
||||
<tableColumn identifier="abbreviation" editable="NO" width="115.71875" minWidth="10" maxWidth="3.4028234663852886e+38" id="Iuq-hc-Ma0"> |
||||
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="略"> |
||||
<font key="font" metaFont="smallSystem"/> |
||||
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/> |
||||
</tableHeaderCell> |
||||
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="pwL-7P-icB"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> |
||||
</tableColumn> |
||||
</tableColumns> |
||||
<connections> |
||||
<binding destination="-2" name="doubleClickTarget" keyPath="self" id="88W-iC-qMj"> |
||||
<dictionary key="options"> |
||||
<string key="NSSelectorName">addToFavorites:</string> |
||||
</dictionary> |
||||
</binding> |
||||
<outlet property="dataSource" destination="-2" id="OMp-pn-8oq"/> |
||||
<outlet property="delegate" destination="-2" id="mJw-oC-0dA"/> |
||||
</connections> |
||||
</tableView> |
||||
</subviews> |
||||
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</clipView> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="257" id="Yru-1j-SeJ"/> |
||||
</constraints> |
||||
<scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="nBP-zr-k3M"> |
||||
<rect key="frame" x="1" y="241" width="327" height="15"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="x3e-JD-qwd"> |
||||
<rect key="frame" x="224" y="17" width="15" height="102"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</scroller> |
||||
<tableHeaderView key="headerView" id="hHn-48-RCd"> |
||||
<rect key="frame" x="0.0" y="0.0" width="327" height="23"/> |
||||
<autoresizingMask key="autoresizingMask"/> |
||||
</tableHeaderView> |
||||
</scrollView> |
||||
<button toolTip="Add a timezone" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="KlN-dU-s3o"> |
||||
<rect key="frame" x="2" y="-2" width="62" height="32"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="21" id="2QY-oM-3sO"/> |
||||
<constraint firstAttribute="width" constant="50" id="6JQ-5n-kb7"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="push" title="追加" bezelStyle="rounded" imagePosition="overlaps" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="kZe-ua-0p9"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" size="13" name="PingFangSC-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="addToFavorites:" target="-2" id="y27-tR-f1g"/> |
||||
</connections> |
||||
</button> |
||||
<button toolTip="Close Panel" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Ueh-Ln-TC8"> |
||||
<rect key="frame" x="54" y="-2" width="72" height="32"/> |
||||
<constraints> |
||||
<constraint firstAttribute="width" constant="60" id="Bql-d6-oci"/> |
||||
</constraints> |
||||
<buttonCell key="cell" type="push" title="閉じる" bezelStyle="rounded" imagePosition="overlaps" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="ODT-4D-sWu"> |
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> |
||||
<font key="font" size="13" name="PingFangSC-Light"/> |
||||
</buttonCell> |
||||
<connections> |
||||
<action selector="closePanel:" target="-2" id="6v9-wN-07n"/> |
||||
</connections> |
||||
</button> |
||||
<searchField toolTip="Search a timezone" wantsLayer="YES" focusRingType="none" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="5jL-eb-qdB"> |
||||
<rect key="frame" x="8" y="287" width="329" height="25"/> |
||||
<searchFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" borderStyle="bezel" focusRingType="none" placeholderString="タイムゾーン名を入力してください" drawsBackground="YES" usesSingleLineMode="YES" id="2DC-BS-vbb"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> |
||||
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> |
||||
</searchFieldCell> |
||||
<connections> |
||||
<action selector="filterArray:" target="-2" id="tX8-FN-IPy"/> |
||||
</connections> |
||||
</searchField> |
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Rty-6T-aPw"> |
||||
<rect key="frame" x="121" y="8" width="215" height="20"/> |
||||
<constraints> |
||||
<constraint firstAttribute="height" constant="20" id="y9Z-oT-NCB"/> |
||||
</constraints> |
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Label" id="ysU-zz-gJh"> |
||||
<font key="font" size="13" name="HelveticaNeue-Light"/> |
||||
<color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/> |
||||
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> |
||||
</textFieldCell> |
||||
</textField> |
||||
</subviews> |
||||
<constraints> |
||||
<constraint firstAttribute="trailing" secondItem="Rty-6T-aPw" secondAttribute="trailing" constant="11" id="1Gg-n3-Hv8"/> |
||||
<constraint firstItem="3B2-hV-f8v" firstAttribute="leading" secondItem="byp-2M-iAO" secondAttribute="leading" constant="8" id="Ahs-HL-zfw"/> |
||||
<constraint firstAttribute="bottom" secondItem="KlN-dU-s3o" secondAttribute="bottom" constant="5" id="Hfs-he-pyg"/> |
||||
<constraint firstItem="3B2-hV-f8v" firstAttribute="top" secondItem="5jL-eb-qdB" secondAttribute="bottom" constant="3" id="Kkl-0p-AQX"/> |
||||
<constraint firstItem="5jL-eb-qdB" firstAttribute="top" secondItem="byp-2M-iAO" secondAttribute="top" constant="8" id="Lsa-mI-nMD"/> |
||||
<constraint firstItem="Rty-6T-aPw" firstAttribute="leading" secondItem="Ueh-Ln-TC8" secondAttribute="trailing" constant="3" id="NEj-GQ-4oy"/> |
||||
<constraint firstItem="5jL-eb-qdB" firstAttribute="leading" secondItem="byp-2M-iAO" secondAttribute="leading" constant="8" id="YFf-7y-AA0"/> |
||||
<constraint firstAttribute="bottom" secondItem="Ueh-Ln-TC8" secondAttribute="bottom" constant="5" id="kS2-Vc-NT7"/> |
||||
<constraint firstAttribute="bottom" secondItem="Rty-6T-aPw" secondAttribute="bottom" constant="8" id="pyy-35-q2k"/> |
||||
<constraint firstItem="Ueh-Ln-TC8" firstAttribute="leading" secondItem="KlN-dU-s3o" secondAttribute="trailing" constant="2" id="qYv-aW-l68"/> |
||||
<constraint firstAttribute="trailing" secondItem="3B2-hV-f8v" secondAttribute="trailing" constant="8" id="rae-0k-Dgj"/> |
||||
<constraint firstAttribute="trailing" secondItem="5jL-eb-qdB" secondAttribute="trailing" constant="8" id="uy8-q5-8Vi"/> |
||||
<constraint firstItem="KlN-dU-s3o" firstAttribute="leading" secondItem="byp-2M-iAO" secondAttribute="leading" constant="8" id="y6V-Aa-AZU"/> |
||||
<constraint firstItem="Ueh-Ln-TC8" firstAttribute="height" secondItem="KlN-dU-s3o" secondAttribute="height" id="zET-ty-u3G"/> |
||||
</constraints> |
||||
</view> |
||||
<point key="canvasLocation" x="582.5" y="681"/> |
||||
</window> |
||||
<userDefaultsController representsSharedInstance="YES" id="sEG-Zb-KUM"/> |
||||
</objects> |
||||
<resources> |
||||
<image name="NSAddTemplate" width="11" height="11"/> |
||||
<image name="NSInfo" width="32" height="32"/> |
||||
<image name="NSRemoveTemplate" width="11" height="11"/> |
||||
</resources> |
||||
</document> |
After Width: | Height: | Size: 3.3 KiB |
@ -0,0 +1,21 @@
|
||||
{ |
||||
"images" : [ |
||||
{ |
||||
"idiom" : "universal", |
||||
"filename" : "ClockerIcon-16.png", |
||||
"scale" : "1x" |
||||
}, |
||||
{ |
||||
"idiom" : "universal", |
||||
"scale" : "2x" |
||||
}, |
||||
{ |
||||
"idiom" : "universal", |
||||
"scale" : "3x" |
||||
} |
||||
], |
||||
"info" : { |
||||
"version" : 1, |
||||
"author" : "xcode" |
||||
} |
||||
} |
After Width: | Height: | Size: 28 KiB |
@ -0,0 +1,21 @@
|
||||
{ |
||||
"images" : [ |
||||
{ |
||||
"idiom" : "universal", |
||||
"filename" : "ClockerIcon-256.png", |
||||
"scale" : "1x" |
||||
}, |
||||
{ |
||||
"idiom" : "universal", |
||||
"scale" : "2x" |
||||
}, |
||||
{ |
||||
"idiom" : "universal", |
||||
"scale" : "3x" |
||||
} |
||||
], |
||||
"info" : { |
||||
"version" : 1, |
||||
"author" : "xcode" |
||||
} |
||||
} |
@ -0,0 +1,21 @@
|
||||
{ |
||||
"images" : [ |
||||
{ |
||||
"idiom" : "universal", |
||||
"filename" : "FB-FindUsonFacebook-online-144.png", |
||||
"scale" : "1x" |
||||
}, |
||||
{ |
||||
"idiom" : "universal", |
||||
"scale" : "2x" |
||||
}, |
||||
{ |
||||
"idiom" : "universal", |
||||
"scale" : "3x" |
||||
} |
||||
], |
||||
"info" : { |
||||
"version" : 1, |
||||
"author" : "xcode" |
||||
} |
||||
} |
After Width: | Height: | Size: 2.6 KiB |
@ -0,0 +1,22 @@
|
||||
{ |
||||
"images" : [ |
||||
{ |
||||
"idiom" : "universal", |
||||
"filename" : "StatusHighlighted.png", |
||||
"scale" : "1x" |
||||
}, |
||||
{ |
||||
"idiom" : "universal", |
||||
"filename" : "StatusHighlighted@2x.png", |
||||
"scale" : "2x" |
||||
}, |
||||
{ |
||||
"idiom" : "universal", |
||||
"scale" : "3x" |
||||
} |
||||
], |
||||
"info" : { |
||||
"version" : 1, |
||||
"author" : "xcode" |
||||
} |
||||
} |
After Width: | Height: | Size: 389 B |
After Width: | Height: | Size: 1.4 KiB |
@ -0,0 +1,21 @@
|
||||
{ |
||||
"images" : [ |
||||
{ |
||||
"idiom" : "universal", |
||||
"filename" : "PowerIcon.png", |
||||
"scale" : "1x" |
||||
}, |
||||
{ |
||||
"idiom" : "universal", |
||||
"scale" : "2x" |
||||
}, |
||||
{ |
||||
"idiom" : "universal", |
||||
"scale" : "3x" |
||||
} |
||||
], |
||||
"info" : { |
||||
"version" : 1, |
||||
"author" : "xcode" |
||||
} |
||||
} |
After Width: | Height: | Size: 17 KiB |
@ -0,0 +1,22 @@
|
||||
{ |
||||
"images" : [ |
||||
{ |
||||
"idiom" : "universal", |
||||
"filename" : "Status.png", |
||||
"scale" : "1x" |
||||
}, |
||||
{ |
||||
"idiom" : "universal", |
||||
"filename" : "Status@2x.png", |
||||
"scale" : "2x" |
||||
}, |
||||
{ |
||||
"idiom" : "universal", |
||||
"scale" : "3x" |
||||
} |
||||
], |
||||
"info" : { |
||||
"version" : 1, |
||||
"author" : "xcode" |
||||
} |
||||
} |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,21 @@
|
||||
{ |
||||
"images" : [ |
||||
{ |
||||
"idiom" : "universal", |
||||
"filename" : "aboutTemplate.png", |
||||
"scale" : "1x" |
||||
}, |
||||
{ |
||||
"idiom" : "universal", |
||||
"scale" : "2x" |
||||
}, |
||||
{ |
||||
"idiom" : "universal", |
||||
"scale" : "3x" |
||||
} |
||||
], |
||||
"info" : { |
||||
"version" : 1, |
||||
"author" : "xcode" |
||||
} |
||||
} |
After Width: | Height: | Size: 627 B |