From b8ac192d2ae4267c5b7ab28489875056a24fc791 Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Fri, 23 Sep 2011 09:14:16 -0400 Subject: [PATCH] [#82] Added table font size pref (Cocoa). --- cocoa/base/AppDelegate.m | 7 + cocoa/base/Consts.h | 1 + cocoa/base/ResultWindow.m | 5 + cocoa/base/en.lproj/ResultWindow.xib | 51 +++-- cocoa/me/AppDelegate.m | 2 + cocoa/me/ResultWindow.m | 1 + cocoa/me/en.lproj/Preferences.xib | 299 ++++++++++++++++++++++----- cocoa/pe/AppDelegate.m | 2 + cocoa/pe/ResultWindow.m | 1 + cocoa/pe/en.lproj/Preferences.xib | 265 ++++++++++++++++++++---- cocoa/se/AppDelegate.m | 8 +- cocoa/se/ResultWindow.m | 1 + cocoa/se/en.lproj/Preferences.xib | 269 ++++++++++++++++++++---- 13 files changed, 761 insertions(+), 151 deletions(-) diff --git a/cocoa/base/AppDelegate.m b/cocoa/base/AppDelegate.m index 5363e206..81c56910 100644 --- a/cocoa/base/AppDelegate.m +++ b/cocoa/base/AppDelegate.m @@ -13,9 +13,16 @@ http://www.hardcoded.net/licenses/bsd_license #import "Utils.h" #import "Consts.h" #import "Dialogs.h" +#import "ValueTransformers.h" #import @implementation AppDelegateBase ++ (void)initialize +{ + HSVTAdd *vt = [[[HSVTAdd alloc] initWithValue:4] autorelease]; + [NSValueTransformer setValueTransformer:vt forName:@"vtRowHeightOffset"]; +} + - (void)awakeFromNib { [py bindCocoa:self]; diff --git a/cocoa/base/Consts.h b/cocoa/base/Consts.h index 509b11e4..294cffea 100644 --- a/cocoa/base/Consts.h +++ b/cocoa/base/Consts.h @@ -10,6 +10,7 @@ http://www.hardcoded.net/licenses/bsd_license #define JobStarted @"JobStarted" #define JobInProgress @"JobInProgress" +#define TableFontSize @"TableFontSize" #define jobLoad @"job_load" #define jobScan @"job_scan" diff --git a/cocoa/base/ResultWindow.m b/cocoa/base/ResultWindow.m index 86ab0079..049bae3a 100644 --- a/cocoa/base/ResultWindow.m +++ b/cocoa/base/ResultWindow.m @@ -50,6 +50,9 @@ http://www.hardcoded.net/licenses/bsd_license /* Virtual */ - (void)initResultColumns { + NSUserDefaults *udc = [NSUserDefaultsController sharedUserDefaultsController]; + NSTableColumn *refCol = [matches tableColumnWithIdentifier:@"0"]; + [refCol bind:@"fontSize" toObject:udc withKeyPath:@"values.TableFontSize" options:nil]; } - (void)setScanOptions @@ -84,6 +87,8 @@ http://www.hardcoded.net/licenses/bsd_license [[col headerCell] setStringValue:aTitle]; [col setResizingMask:NSTableColumnUserResizingMask]; [col setSortDescriptorPrototype:[[NSSortDescriptor alloc] initWithKey:[n stringValue] ascending:YES]]; + NSUserDefaults *udc = [NSUserDefaultsController sharedUserDefaultsController]; + [col bind:@"fontSize" toObject:udc withKeyPath:@"values.TableFontSize" options:nil]; return col; } diff --git a/cocoa/base/en.lproj/ResultWindow.xib b/cocoa/base/en.lproj/ResultWindow.xib index 85ebfc34..f4e25ab6 100644 --- a/cocoa/base/en.lproj/ResultWindow.xib +++ b/cocoa/base/en.lproj/ResultWindow.xib @@ -31,6 +31,7 @@ NSView NSToolbar NSScrollView + NSUserDefaultsController NSSegmentedCell NSScroller NSTableHeaderView @@ -154,11 +155,9 @@ Options - + 268 {{0, 14}, {195, 23}} - - YES 67239424 @@ -211,11 +210,9 @@ Filter - + 258 {{0, 14}, {81, 22}} - - YES 343014976 @@ -303,11 +300,9 @@ Quick Look - + 268 {{12, 14}, {44, 25}} - - _NS:161 YES @@ -370,11 +365,9 @@ Action - + 256 {{1, 14}, {40, 25}} - - YES -2076049856 @@ -553,7 +546,6 @@ - -1 YES 3 YES @@ -627,7 +619,7 @@ - + @@ -896,6 +888,9 @@ MainWindow YES + + YES + @@ -1123,6 +1118,26 @@ 87 + + + rowHeight: values.TableFontSize + + + + + + rowHeight: values.TableFontSize + rowHeight + values.TableFontSize + + NSValueTransformerName + vtRowHeightOffset + + 2 + + + 90 + @@ -1500,6 +1515,11 @@ + + 88 + + + @@ -1562,13 +1582,14 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - 87 + 90 diff --git a/cocoa/me/AppDelegate.m b/cocoa/me/AppDelegate.m index c691b0cb..3ec85031 100644 --- a/cocoa/me/AppDelegate.m +++ b/cocoa/me/AppDelegate.m @@ -19,11 +19,13 @@ http://www.hardcoded.net/licenses/bsd_license @implementation AppDelegate + (void)initialize { + [super initialize]; NSUserDefaults *ud = [NSUserDefaults standardUserDefaults]; NSMutableDictionary *d = [NSMutableDictionary dictionaryWithCapacity:10]; [d setObject:i2n(3) forKey:@"scanType"]; [d setObject:i2n(80) forKey:@"minMatchPercentage"]; [d setObject:i2n(1) forKey:@"recreatePathType"]; + [d setObject:i2n(11) forKey:TableFontSize]; [d setObject:b2n(NO) forKey:@"wordWeighting"]; [d setObject:b2n(NO) forKey:@"matchSimilarWords"]; [d setObject:b2n(YES) forKey:@"mixFileKind"]; diff --git a/cocoa/me/ResultWindow.m b/cocoa/me/ResultWindow.m index 072d840e..4279b87e 100644 --- a/cocoa/me/ResultWindow.m +++ b/cocoa/me/ResultWindow.m @@ -34,6 +34,7 @@ http://www.hardcoded.net/licenses/bsd_license - (void)initResultColumns { + [super initResultColumns]; NSTableColumn *refCol = [matches tableColumnWithIdentifier:@"0"]; _resultColumns = [[NSMutableArray alloc] init]; [_resultColumns addObject:[matches tableColumnWithIdentifier:@"0"]]; // File Name diff --git a/cocoa/me/en.lproj/Preferences.xib b/cocoa/me/en.lproj/Preferences.xib index cdd9e19a..cdf77c88 100644 --- a/cocoa/me/en.lproj/Preferences.xib +++ b/cocoa/me/en.lproj/Preferences.xib @@ -12,6 +12,7 @@ NSPopUpButtonCell + NSComboBoxCell NSPopUpButton NSNumberFormatter NSButton @@ -19,6 +20,7 @@ NSButtonCell NSTextFieldCell NSMenuItem + NSComboBox NSTabView NSSlider NSSliderCell @@ -49,7 +51,7 @@ 3 2 - {{92, 259}, {406, 343}} + {{92, 259}, {406, 362}} 1886912512 dupeGuru ME Preferences @@ -67,9 +69,10 @@ 256 - {{244, 12}, {148, 32}} + {{244, 5}, {148, 32}} + YES 67239424 @@ -95,9 +98,10 @@ 12 - {{13, 40}, {380, 297}} + {{13, 33}, {380, 323}} + 1 @@ -108,9 +112,10 @@ 292 - {{117, 189}, {190, 21}} + {{117, 215}, {190, 21}} + YES 67239424 @@ -137,9 +142,10 @@ 292 - {{119, 172}, {80, 13}} + {{119, 198}, {80, 13}} + YES 67239424 @@ -155,7 +161,7 @@ 6 System controlColor - + 3 MC42NjY2NjY2NjY3AA @@ -174,9 +180,10 @@ 289 - {{225, 172}, {80, 13}} + {{225, 198}, {80, 13}} + YES 67239424 @@ -191,9 +198,10 @@ 292 - {{14, 194}, {100, 14}} + {{14, 220}, {100, 14}} + YES 67239424 @@ -212,9 +220,10 @@ 292 - {{17, 235}, {85, 13}} + {{17, 261}, {85, 13}} + YES 67239424 @@ -229,9 +238,10 @@ 292 - {{110, 224}, {231, 26}} + {{116, 250}, {231, 26}} + YES -2076049856 @@ -339,9 +349,10 @@ 256 - {{15, 90}, {330, 18}} + {{15, 85}, {330, 18}} + YES 67239424 @@ -363,9 +374,10 @@ 256 - {{15, 50}, {325, 18}} + {{15, 45}, {325, 18}} + YES 67239424 @@ -385,9 +397,10 @@ 256 - {{313, 194}, {31, 14}} + {{313, 220}, {31, 14}} + YES 67239424 @@ -444,9 +457,10 @@ 256 - {{15, 70}, {330, 18}} + {{15, 65}, {330, 18}} + YES 67239424 @@ -466,9 +480,10 @@ 256 - {{15, 10}, {330, 18}} + {{15, 5}, {330, 18}} + YES 67239424 @@ -488,9 +503,10 @@ 256 - {{15, 30}, {330, 18}} + {{15, 25}, {330, 18}} + YES 67239424 @@ -510,9 +526,10 @@ 292 - {{14, 150}, {100, 17}} + {{14, 145}, {100, 17}} + YES 67239424 @@ -527,9 +544,10 @@ 256 - {{24, 130}, {66, 18}} + {{24, 125}, {66, 18}} + YES 67239424 @@ -549,9 +567,10 @@ 256 - {{94, 130}, {66, 18}} + {{94, 125}, {66, 18}} + YES 67239424 @@ -571,9 +590,10 @@ 256 - {{164, 130}, {66, 18}} + {{164, 125}, {66, 18}} + YES 67239424 @@ -593,9 +613,10 @@ 256 - {{24, 110}, {66, 18}} + {{24, 105}, {66, 18}} + YES 67239424 @@ -615,9 +636,10 @@ 256 - {{94, 110}, {66, 18}} + {{94, 105}, {66, 18}} + YES 67239424 @@ -637,9 +659,10 @@ 256 - {{164, 110}, {66, 18}} + {{164, 105}, {66, 18}} + YES 67239424 @@ -656,10 +679,139 @@ 25 + + + 292 + {{14, 170}, {100, 17}} + + + + YES + + 67239424 + 272629760 + Font size: + + + + + + + + + 268 + {{119, 166}, {69, 26}} + + + + YES + + 343014976 + 272630784 + + + + YES + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + YES + YES + + 11 + 12 + 13 + 14 + 18 + 24 + + + + + 274 + {13, 126} + + + YES + + + 10 + 10 + 1000 + + 75628032 + 0 + + + LucidaGrande + 12 + 16 + + + 3 + MC4zMzMzMzI5OQA + + + + + 338820672 + 1024 + + + YES + + 6 + System + controlBackgroundColor + + + + + 3 + YES + + + + 3 + 2 + + + 6 + System + gridColor + + 3 + MC41AA + + + 19 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + 1 + + + - {{10, 33}, {360, 251}} + {{10, 33}, {360, 277}} + Basic @@ -674,7 +826,7 @@ 256 - {{15, 232}, {340, 18}} + {{15, 258}, {340, 18}} YES @@ -695,7 +847,7 @@ 292 - {{14, 126}, {332, 13}} + {{14, 152}, {332, 13}} YES @@ -711,7 +863,7 @@ 292 - {{14, 169}, {332, 17}} + {{14, 195}, {332, 17}} YES @@ -727,7 +879,7 @@ 292 - {{14, 94}, {256, 26}} + {{14, 120}, {256, 26}} YES @@ -796,7 +948,7 @@ 266 - {{17, 147}, {326, 22}} + {{17, 173}, {326, 22}} YES @@ -806,15 +958,7 @@ YES - - 6 - System - textBackgroundColor - - 3 - MQA - - + 6 System @@ -826,7 +970,7 @@ 256 - {{15, 212}, {340, 18}} + {{15, 238}, {340, 18}} YES @@ -847,7 +991,7 @@ 256 - {{15, 192}, {340, 18}} + {{15, 218}, {340, 18}} YES @@ -866,7 +1010,7 @@ - {{10, 33}, {360, 251}} + {{10, 33}, {360, 277}} Advanced @@ -883,11 +1027,12 @@ - {406, 343} + {406, 362} + - {{0, 0}, {1440, 878}} + {{0, 0}, {1920, 1058}} {213, 129} {10000000000000, 10000000000000} YES @@ -1531,6 +1676,22 @@ 132 + + + value: values.TableFontSize + + + + + + value: values.TableFontSize + value + values.TableFontSize + 2 + + + 137 + @@ -1638,25 +1799,27 @@ 119 - - - - - - - - + + + - + + + + + + + + @@ -2080,6 +2243,32 @@ + + 133 + + + + + + + + 134 + + + + + + + + 135 + + + + + 136 + + + @@ -2104,6 +2293,10 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin @@ -2166,7 +2359,7 @@ - 132 + 137 0 diff --git a/cocoa/pe/AppDelegate.m b/cocoa/pe/AppDelegate.m index dfdc379f..8c7afbfa 100644 --- a/cocoa/pe/AppDelegate.m +++ b/cocoa/pe/AppDelegate.m @@ -18,11 +18,13 @@ http://www.hardcoded.net/licenses/bsd_license @implementation AppDelegate + (void)initialize { + [super initialize]; NSUserDefaults *ud = [NSUserDefaults standardUserDefaults]; NSMutableDictionary *d = [NSMutableDictionary dictionaryWithCapacity:10]; [d setObject:i2n(0) forKey:@"scanType"]; [d setObject:i2n(95) forKey:@"minMatchPercentage"]; [d setObject:i2n(1) forKey:@"recreatePathType"]; + [d setObject:i2n(11) forKey:TableFontSize]; [d setObject:b2n(NO) forKey:@"matchScaled"]; [d setObject:b2n(YES) forKey:@"mixFileKind"]; [d setObject:b2n(NO) forKey:@"useRegexpFilter"]; diff --git a/cocoa/pe/ResultWindow.m b/cocoa/pe/ResultWindow.m index 9da4cf0e..c078589e 100644 --- a/cocoa/pe/ResultWindow.m +++ b/cocoa/pe/ResultWindow.m @@ -16,6 +16,7 @@ http://www.hardcoded.net/licenses/bsd_license /* Override */ - (void)initResultColumns { + [super initResultColumns]; NSTableColumn *refCol = [matches tableColumnWithIdentifier:@"0"]; _resultColumns = [[NSMutableArray alloc] init]; [_resultColumns addObject:[matches tableColumnWithIdentifier:@"0"]]; // File Name diff --git a/cocoa/pe/en.lproj/Preferences.xib b/cocoa/pe/en.lproj/Preferences.xib index 0f7f506d..be6db99e 100644 --- a/cocoa/pe/en.lproj/Preferences.xib +++ b/cocoa/pe/en.lproj/Preferences.xib @@ -12,6 +12,7 @@ NSPopUpButtonCell + NSComboBoxCell NSNumberFormatter NSPopUpButton NSButton @@ -19,6 +20,7 @@ NSButtonCell NSTextFieldCell NSMenuItem + NSComboBox NSTabView NSSlider NSSliderCell @@ -49,7 +51,7 @@ 3 2 - {{92, 348}, {392, 254}} + {{92, 348}, {392, 269}} 1886912512 dupeGuru PE Preferences @@ -67,9 +69,10 @@ 256 - {{230, 12}, {148, 32}} + {{230, 3}, {148, 32}} + YES 67239424 @@ -95,9 +98,10 @@ 12 - {{13, 40}, {366, 208}} + {{13, 31}, {366, 232}} + 1 @@ -108,9 +112,10 @@ 292 - {{117, 107}, {181, 21}} + {{117, 131}, {181, 21}} + YES 67239424 @@ -137,9 +142,10 @@ 292 - {{119, 90}, {80, 13}} + {{119, 114}, {80, 13}} + YES 67239424 @@ -155,7 +161,7 @@ 6 System controlColor - + 3 MC42NjY2NjY2NjY3AA @@ -174,9 +180,10 @@ 289 - {{216, 90}, {80, 13}} + {{216, 114}, {80, 13}} + YES 67239424 @@ -191,9 +198,10 @@ 292 - {{14, 112}, {100, 14}} + {{14, 136}, {100, 14}} + YES 67239424 @@ -212,9 +220,10 @@ 256 - {{15, 46}, {316, 18}} + {{15, 42}, {316, 18}} + YES 67239424 @@ -236,9 +245,10 @@ 256 - {{15, 66}, {316, 18}} + {{15, 62}, {316, 18}} + YES 67239424 @@ -258,9 +268,10 @@ 256 - {{15, 6}, {316, 18}} + {{15, 2}, {316, 18}} + YES 67239424 @@ -280,9 +291,10 @@ 256 - {{15, 26}, {316, 18}} + {{15, 22}, {316, 18}} + YES 67239424 @@ -302,9 +314,10 @@ 256 - {{301, 112}, {31, 14}} + {{301, 136}, {31, 14}} + YES 67239424 @@ -361,9 +374,10 @@ 292 - {{14, 145}, {85, 13}} + {{14, 169}, {85, 13}} + YES 67239424 @@ -378,9 +392,10 @@ 292 - {{113, 135}, {219, 26}} + {{116, 159}, {219, 26}} + YES -2076049856 @@ -440,10 +455,139 @@ 1 + + + 292 + {{14, 86}, {100, 17}} + + + + YES + + 67239424 + 272629760 + Font size: + + + + + + + + + 268 + {{119, 82}, {69, 26}} + + + + YES + + 343014976 + 272630784 + + + + YES + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + YES + YES + + 11 + 12 + 13 + 14 + 18 + 24 + + + + + 274 + {13, 126} + + + YES + + + 10 + 10 + 1000 + + 75628032 + 0 + + + LucidaGrande + 12 + 16 + + + 3 + MC4zMzMzMzI5OQA + + + + + 338820672 + 1024 + + + YES + + 6 + System + controlBackgroundColor + + + + + 3 + YES + + + + 3 + 2 + + + 6 + System + gridColor + + 3 + MC41AA + + + 19 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + 1 + + + - {{10, 33}, {346, 162}} + {{10, 33}, {346, 186}} + Basic @@ -458,7 +602,7 @@ 256 - {{15, 143}, {316, 18}} + {{15, 167}, {316, 18}} YES @@ -479,7 +623,7 @@ 256 - {{15, 123}, {316, 18}} + {{15, 147}, {316, 18}} YES @@ -500,7 +644,7 @@ 256 - {{15, 103}, {316, 18}} + {{15, 127}, {316, 18}} YES @@ -521,7 +665,7 @@ 292 - {{14, 37}, {318, 13}} + {{14, 61}, {318, 13}} YES @@ -537,7 +681,7 @@ 292 - {{14, 80}, {318, 17}} + {{14, 104}, {318, 17}} YES @@ -553,7 +697,7 @@ 292 - {{14, 5}, {216, 26}} + {{14, 29}, {216, 26}} YES @@ -622,7 +766,7 @@ 266 - {{17, 58}, {312, 22}} + {{17, 82}, {312, 22}} YES @@ -632,15 +776,7 @@ YES - - 6 - System - textBackgroundColor - - 3 - MQA - - + 6 System @@ -650,7 +786,7 @@ - {{10, 33}, {346, 162}} + {{10, 33}, {346, 186}} Advanced @@ -667,9 +803,10 @@ - {392, 254} + {392, 269} + {{0, 0}, {1440, 878}} {213, 129} @@ -979,6 +1116,22 @@ 98 + + + value: values.TableFontSize + + + + + + value: values.TableFontSize + value + values.TableFontSize + 2 + + + 105 + @@ -1090,13 +1243,15 @@ - - - - - + + + + + + + @@ -1392,6 +1547,32 @@ + + 101 + + + + + + + + 102 + + + + + + + + 103 + + + + + 104 + + + @@ -1400,6 +1581,10 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin @@ -1458,7 +1643,7 @@ - 100 + 105 0 diff --git a/cocoa/se/AppDelegate.m b/cocoa/se/AppDelegate.m index 5765786c..aac9482c 100644 --- a/cocoa/se/AppDelegate.m +++ b/cocoa/se/AppDelegate.m @@ -7,9 +7,9 @@ http://www.hardcoded.net/licenses/bsd_license */ #import "AppDelegate.h" -#import "../../cocoalib/ProgressController.h" -#import "../../cocoalib/Utils.h" -#import "../../cocoalib/ValueTransformers.h" +#import "ProgressController.h" +#import "Utils.h" +#import "ValueTransformers.h" #import "DetailsPanel.h" #import "DirectoryPanel.h" #import "ResultWindow.h" @@ -18,12 +18,14 @@ http://www.hardcoded.net/licenses/bsd_license @implementation AppDelegate + (void)initialize { + [super initialize]; NSUserDefaults *ud = [NSUserDefaults standardUserDefaults]; NSMutableDictionary *d = [NSMutableDictionary dictionary]; [d setObject:i2n(1) forKey:@"scanType"]; [d setObject:i2n(80) forKey:@"minMatchPercentage"]; [d setObject:i2n(30) forKey:@"smallFileThreshold"]; [d setObject:i2n(1) forKey:@"recreatePathType"]; + [d setObject:i2n(11) forKey:TableFontSize]; [d setObject:b2n(YES) forKey:@"wordWeighting"]; [d setObject:b2n(NO) forKey:@"matchSimilarWords"]; [d setObject:b2n(YES) forKey:@"mixFileKind"]; diff --git a/cocoa/se/ResultWindow.m b/cocoa/se/ResultWindow.m index 838947c3..3b87ac92 100644 --- a/cocoa/se/ResultWindow.m +++ b/cocoa/se/ResultWindow.m @@ -15,6 +15,7 @@ http://www.hardcoded.net/licenses/bsd_license /* Override */ - (void)initResultColumns { + [super initResultColumns]; NSTableColumn *refCol = [matches tableColumnWithIdentifier:@"0"]; _resultColumns = [[NSMutableArray alloc] init]; [_resultColumns addObject:[matches tableColumnWithIdentifier:@"0"]]; // File Name diff --git a/cocoa/se/en.lproj/Preferences.xib b/cocoa/se/en.lproj/Preferences.xib index 4325fe11..0ed3cf5f 100644 --- a/cocoa/se/en.lproj/Preferences.xib +++ b/cocoa/se/en.lproj/Preferences.xib @@ -12,6 +12,7 @@ NSPopUpButtonCell + NSComboBoxCell NSPopUpButton NSNumberFormatter NSButton @@ -19,6 +20,7 @@ NSButtonCell NSTextFieldCell NSMenuItem + NSComboBox NSTabView NSSlider NSSliderCell @@ -49,7 +51,7 @@ 3 2 - {{92, 277}, {409, 325}} + {{92, 277}, {409, 344}} 1886912512 dupeGuru Preferences @@ -67,9 +69,10 @@ 256 - {{247, 12}, {148, 32}} + {{247, 5}, {148, 32}} + YES 67239424 @@ -95,9 +98,10 @@ 12 - {{13, 40}, {383, 279}} + {{13, 33}, {383, 305}} + 1 @@ -108,9 +112,10 @@ 292 - {{117, 171}, {198, 21}} + {{117, 197}, {198, 21}} + YES 67239424 @@ -137,9 +142,10 @@ 292 - {{119, 154}, {80, 13}} + {{119, 180}, {80, 13}} + YES 67239424 @@ -155,7 +161,7 @@ 6 System controlColor - + 3 MC42NjY2NjY2NjY3AA @@ -174,9 +180,10 @@ 289 - {{236, 154}, {80, 13}} + {{236, 180}, {80, 13}} + YES 67239424 @@ -191,9 +198,10 @@ 292 - {{14, 176}, {100, 14}} + {{14, 202}, {100, 14}} + YES 67239424 @@ -209,12 +217,31 @@ + + + 292 + {{14, 152}, {100, 17}} + + + + YES + + 67239424 + 272629760 + Font size: + + + + + + 292 - {{17, 217}, {85, 13}} + {{17, 243}, {85, 13}} + YES 67239424 @@ -229,9 +256,10 @@ 292 - {{116, 206}, {233, 26}} + {{116, 232}, {233, 26}} + YES -2076049856 @@ -304,9 +332,10 @@ 256 - {{15, 130}, {333, 18}} + {{15, 128}, {333, 18}} + YES 67239424 @@ -328,9 +357,10 @@ 256 - {{15, 90}, {333, 18}} + {{15, 88}, {333, 18}} + YES 67239424 @@ -350,9 +380,10 @@ 256 - {{15, 110}, {333, 18}} + {{15, 108}, {333, 18}} + YES 67239424 @@ -372,9 +403,10 @@ 256 - {{15, 7}, {333, 18}} + {{15, 5}, {333, 18}} + YES 67239424 @@ -394,9 +426,10 @@ 256 - {{15, 70}, {333, 18}} + {{15, 68}, {333, 18}} + YES 67239424 @@ -416,9 +449,10 @@ 256 - {{15, 48}, {333, 18}} + {{15, 46}, {333, 18}} + YES 67239424 @@ -438,9 +472,10 @@ 268 - {{40, 26}, {59, 22}} + {{40, 24}, {59, 22}} + YES -1804468671 @@ -497,7 +532,7 @@ 6 System textBackgroundColor - + 3 MQA @@ -513,9 +548,10 @@ 292 - {{104, 25}, {30, 17}} + {{104, 23}, {30, 17}} + YES 67239424 @@ -530,9 +566,10 @@ 256 - {{318, 176}, {31, 14}} + {{318, 202}, {31, 14}} + YES 67239424 @@ -579,10 +616,113 @@ + + + 268 + {{119, 148}, {69, 26}} + + + + YES + + 343014976 + 272630784 + + + + YES + + + 6 + YES + YES + + 11 + 12 + 13 + 14 + 18 + 24 + + + + + 274 + {13, 126} + + + YES + + + 10 + 10 + 1000 + + 75628032 + 0 + + + LucidaGrande + 12 + 16 + + + 3 + MC4zMzMzMzI5OQA + + + + + 338820672 + 1024 + + + YES + + 6 + System + controlBackgroundColor + + + + + 3 + YES + + + + 3 + 2 + + + 6 + System + gridColor + + 3 + MC41AA + + + 19 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + 1 + + + - {{10, 33}, {363, 233}} + {{10, 33}, {363, 259}} + Basic @@ -597,7 +737,7 @@ 256 - {{15, 214}, {346, 18}} + {{15, 240}, {346, 18}} YES @@ -618,7 +758,7 @@ 256 - {{15, 194}, {346, 18}} + {{15, 220}, {346, 18}} YES @@ -639,7 +779,7 @@ 256 - {{15, 174}, {346, 18}} + {{15, 200}, {346, 18}} YES @@ -660,7 +800,7 @@ 292 - {{14, 151}, {348, 17}} + {{14, 177}, {348, 17}} YES @@ -676,7 +816,7 @@ 266 - {{17, 121}, {329, 22}} + {{17, 147}, {329, 22}} YES @@ -693,7 +833,7 @@ 292 - {{14, 100}, {348, 13}} + {{14, 126}, {348, 13}} YES @@ -709,7 +849,7 @@ 292 - {{14, 68}, {234, 26}} + {{14, 94}, {234, 26}} YES @@ -776,7 +916,7 @@ - {{10, 33}, {363, 233}} + {{10, 33}, {363, 259}} Advanced @@ -793,9 +933,10 @@ - {409, 325} + {409, 344} + {{0, 0}, {1440, 878}} {213, 129} @@ -1133,6 +1274,22 @@ 148 + + + value: values.TableFontSize + + + + + + value: values.TableFontSize + value + values.TableFontSize + 2 + + + 156 + @@ -1179,8 +1336,8 @@ 53 - + @@ -1240,21 +1397,23 @@ 127 - - - - - - - - + + + + + + + + + + @@ -1616,6 +1775,32 @@ + + 151 + + + + + + + + 152 + + + + + 154 + + + + + + + + 155 + + + @@ -1639,6 +1824,10 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin {{413, 520}, {409, 325}} @@ -1693,7 +1882,7 @@ - 149 + 156 0