Revision: 29722
          http://sourceforge.net/p/bibdesk/svn/29722
Author:   hofman
Date:     2025-10-13 16:01:12 +0000 (Mon, 13 Oct 2025)
Log Message:
-----------
remove unused cell classes

Modified Paths:
--------------
    trunk/bibdesk/Bibdesk.xcodeproj/project.pbxproj

Removed Paths:
-------------
    trunk/bibdesk/BDSKFilePathCell.h
    trunk/bibdesk/BDSKFilePathCell.m
    trunk/bibdesk/BDSKTextWithIconCell.h
    trunk/bibdesk/BDSKTextWithIconCell.m

Deleted: trunk/bibdesk/BDSKFilePathCell.h
===================================================================
--- trunk/bibdesk/BDSKFilePathCell.h    2025-10-13 15:42:41 UTC (rev 29721)
+++ trunk/bibdesk/BDSKFilePathCell.h    2025-10-13 16:01:12 UTC (rev 29722)
@@ -1,51 +0,0 @@
-//
-//  BDSKFilePathCell.h
-//  Bibdesk
-//
-//  Created by Christiaan Hofman on 3/10/09.
-/*
- This software is Copyright (c) 2009
- Christiaan Hofman. 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.
-
- - Neither the name of Christiaan Hofman nor the names of any
-    contributors may be used to endorse or promote products derived
-    from this software without specific prior written permission.
-
- 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
- OWNER 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>
-#import "BDSKTextWithIconCell.h"
-
-NS_ASSUME_NONNULL_BEGIN
-
-@interface BDSKFilePathCell : BDSKTextWithIconCell
-@end
-
-
-@interface BDSKFilePathFormatter : NSFormatter
-@end
-
-NS_ASSUME_NONNULL_END

Deleted: trunk/bibdesk/BDSKFilePathCell.m
===================================================================
--- trunk/bibdesk/BDSKFilePathCell.m    2025-10-13 15:42:41 UTC (rev 29721)
+++ trunk/bibdesk/BDSKFilePathCell.m    2025-10-13 16:01:12 UTC (rev 29722)
@@ -1,86 +0,0 @@
-//
-//  BDSKFilePathCell.m
-//  Bibdesk
-//
-//  Created by Christiaan Hofman on 3/10/09.
-/*
- This software is Copyright (c) 2009
- Christiaan Hofman. 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.
-
- - Neither the name of Christiaan Hofman nor the names of any
-    contributors may be used to endorse or promote products derived
-    from this software without specific prior written permission.
-
- 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
- OWNER 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 "BDSKFilePathCell.h"
-#import "NSImage_BDSKExtensions.h"
-#import "NSFileManager_BDSKExtensions.h"
-
-
-@implementation BDSKFilePathCell
-
-+ (Class)formatterClass {
-    return [BDSKFilePathFormatter class];
-}
-
-@end
-
-#pragma mark -
-
-@implementation BDSKFilePathFormatter
-
-- (NSImage *)imageForObjectValue:(id)obj {
-    NSImage *image = nil;
-    if ([(id)obj isKindOfClass:[NSString class]]) {
-        NSString *path = [(NSString *)obj stringByStandardizingPath];
-        if(path && [[NSFileManager defaultManager] fileExistsAtPath:path])
-            image = [[NSWorkspace sharedWorkspace] iconForFile:path];
-    } else if ([(id)obj isKindOfClass:[NSURL class]]) {
-        NSURL *fileURL = (NSURL *)obj;
-        if([fileURL checkResourceIsReachableAndReturnError:NULL])
-            image = [NSImage imageForURL:fileURL];
-    }
-    return image;
-}
-
-- (NSString *)stringForObjectValue:(id)obj {
-    NSString *path = [obj isKindOfClass:[NSURL class]] ? [obj path] : [obj 
description];
-    return [path stringByAbbreviatingWithTildeInPath];
-}
-
-// this won't be used because we never edit in this cell type
-- (NSString *)editingStringForObjectValue:(id)obj {
-    return [obj isKindOfClass:[NSURL class]] ? [obj path] : [obj description];
-}
-
-// this won't be used because we never edit in this cell type
-- (BOOL)getObjectValue:(id *)obj forString:(NSString *)string 
errorDescription:(NSString **)error {
-    *obj = [string stringByExpandingTildeInPath];
-    return YES;
-}
-
-@end

Deleted: trunk/bibdesk/BDSKTextWithIconCell.h
===================================================================
--- trunk/bibdesk/BDSKTextWithIconCell.h        2025-10-13 15:42:41 UTC (rev 
29721)
+++ trunk/bibdesk/BDSKTextWithIconCell.h        2025-10-13 16:01:12 UTC (rev 
29722)
@@ -1,71 +0,0 @@
-//
-//  BDSKTextWithIconCell.h
-//  Bibdesk
-//
-//  Created by Adam Maxwell on 12/10/05.
-/*
- This software is Copyright (c) 2005
- Adam Maxwell. 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.
- 
- - Neither the name of Adam Maxwell nor the names of any
- contributors may be used to endorse or promote products derived
- from this software without specific prior written permission.
- 
- 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
- OWNER 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>
-
-NS_ASSUME_NONNULL_BEGIN
-
-extern NSString *BDSKTextWithIconStringKey;
-extern NSString *BDSKTextWithIconImageKey;
-
-
-@interface BDSKTextWithIconCell : NSTextFieldCell {
-    NSImageCell *imageCell;
-}
-
-@property (class, nonatomic, readonly) Class formatterClass;
-
-@property (nonatomic, strong) NSImage *icon;
-
-- (NSRect)textRectForBounds:(NSRect)aRect;
-- (NSRect)iconRectForBounds:(NSRect)aRect;
-
-@end
-
-#pragma mark -
-
-@interface BDSKTextWithIconFormatter : NSFormatter
-@end
-
-#pragma mark -
-
-@interface NSFormatter (BDSKTextWithIconCell)
-- (nullable NSImage *)imageForObjectValue:(id)obj;
-@end
-
-NS_ASSUME_NONNULL_END

Deleted: trunk/bibdesk/BDSKTextWithIconCell.m
===================================================================
--- trunk/bibdesk/BDSKTextWithIconCell.m        2025-10-13 15:42:41 UTC (rev 
29721)
+++ trunk/bibdesk/BDSKTextWithIconCell.m        2025-10-13 16:01:12 UTC (rev 
29722)
@@ -1,237 +0,0 @@
-//
-//  BDSKTextWithIconCell.m
-//  Bibdesk
-//
-//  Created by Adam Maxwell on 12/10/05.
-/*
- This software is Copyright (c) 2005
- Adam Maxwell. 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.
- 
- - Neither the name of Adam Maxwell nor the names of any
- contributors may be used to endorse or promote products derived
- from this software without specific prior written permission.
- 
- 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
- OWNER 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 "BDSKTextWithIconCell.h"
-#import "NSGeometry_BDSKExtensions.h"
-#import "NSImage_BDSKExtensions.h"
-
-NSString *BDSKTextWithIconStringKey = @"string";
-NSString *BDSKTextWithIconImageKey = @"image";
-
-static id nonNullObjectValueForKey(id object, id stringObject, NSString *key) {
-    if ([object isKindOfClass:[NSString class]])
-        return stringObject;
-    id value = [object valueForKey:key];
-    return [value isEqual:[NSNull null]] ? nil : value;
-}
-
-@implementation BDSKTextWithIconCell
-
-@dynamic icon;
-
-#define BORDER_BETWEEN_EDGE_AND_IMAGE_BORDERLESS (1.0)
-#define BORDER_BETWEEN_IMAGE_AND_TEXT_BORDERLESS (0.0)
-#define BORDER_BETWEEN_EDGE_AND_IMAGE_BORDERED (2.0)
-#define BORDER_BETWEEN_IMAGE_AND_TEXT_BORDERED (-1.0)
-#define BORDER_BETWEEN_EDGE_AND_IMAGE_BEZELED (3.0)
-#define BORDER_BETWEEN_IMAGE_AND_TEXT_BEZELED (-2.0)
-#define BORDER_BETWEEN_IMAGE_AND_TEXT_BEZELED_ROUNDED (-10.0)
-#define IMAGE_OFFSET (1.0)
-
-+ (Class)formatterClass {
-    return [BDSKTextWithIconFormatter class];
-}
-
-- (void)commonInit {
-    if (imageCell == nil) {
-        imageCell = [[NSImageCell alloc] init];
-        [imageCell setImageScaling:NSImageScaleProportionallyUpOrDown];
-    }
-    if ([self formatter] == nil && [[self class] formatterClass])
-        [self setFormatter:[[[[self class] formatterClass] alloc] init]];
-}
-
-- (instancetype)initTextCell:(NSString *)aString {
-    self = [super initTextCell:aString];
-    if (self) {
-        [self commonInit];
-    }
-    return self;
-}
-
-- (instancetype)initWithCoder:(NSCoder *)decoder {
-    self = [super initWithCoder:decoder];
-    if (self) {
-        imageCell = [decoder decodeObjectForKey:@"imageCell"];
-        [self commonInit];
-    }
-    return self;
-}
-
-- (void)encodeWithCoder:(NSCoder *)encoder {
-    [super encodeWithCoder:encoder];
-    [encoder encodeObject:imageCell forKey:@"imageCell"];
-}
-
-- (id)copyWithZone:(NSZone *)zone {
-    BDSKTextWithIconCell *copy = [super copyWithZone:zone];
-    copy->imageCell = [imageCell copy];
-    return copy;
-}
-
-- (void)setBackgroundStyle:(NSBackgroundStyle)style {
-    [super setBackgroundStyle:style];
-    [imageCell setBackgroundStyle:style];
-}
-
-- (NSSize)cellSizeForBounds:(NSRect)aRect {
-    NSSize cellSize = [super cellSizeForBounds:aRect];
-    if ([self isBordered])
-        cellSize.width += cellSize.height - 
BORDER_BETWEEN_EDGE_AND_IMAGE_BORDERED + BORDER_BETWEEN_IMAGE_AND_TEXT_BORDERED;
-    else if ([self isBezeled] == NO)
-        cellSize.width += cellSize.height - 1 + 
BORDER_BETWEEN_EDGE_AND_IMAGE_BORDERLESS + 
BORDER_BETWEEN_IMAGE_AND_TEXT_BORDERLESS;
-    else if ([self bezelStyle] == NSTextFieldRoundedBezel)
-        cellSize.width += cellSize.height - 
BORDER_BETWEEN_EDGE_AND_IMAGE_BEZELED + 
BORDER_BETWEEN_IMAGE_AND_TEXT_BEZELED_ROUNDED;
-    else
-        cellSize.width += cellSize.height - 
BORDER_BETWEEN_EDGE_AND_IMAGE_BEZELED + BORDER_BETWEEN_IMAGE_AND_TEXT_BEZELED;
-    cellSize.width = fmin(cellSize.width, NSWidth(aRect));
-    cellSize.height = fmin(cellSize.height, NSHeight(aRect));
-    return cellSize;
-}
-
-- (NSRect)textRectForBounds:(NSRect)aRect {
-    CGFloat border;
-    
-    if ([self isBordered])
-        border = NSHeight(aRect) - BORDER_BETWEEN_EDGE_AND_IMAGE_BORDERED + 
BORDER_BETWEEN_IMAGE_AND_TEXT_BORDERED;
-    else if ([self isBezeled] == NO)
-        border = NSHeight(aRect) - 1 + 
BORDER_BETWEEN_EDGE_AND_IMAGE_BORDERLESS + 
BORDER_BETWEEN_IMAGE_AND_TEXT_BORDERLESS;
-    else if ([self bezelStyle] == NSTextFieldRoundedBezel)
-        border = NSHeight(aRect) - BORDER_BETWEEN_EDGE_AND_IMAGE_BEZELED + 
BORDER_BETWEEN_IMAGE_AND_TEXT_BEZELED_ROUNDED;
-    else
-        border = NSHeight(aRect) - BORDER_BETWEEN_EDGE_AND_IMAGE_BEZELED + 
BORDER_BETWEEN_IMAGE_AND_TEXT_BEZELED;
-    
-    return BDSKShrinkRect(aRect, border, NSMinXEdge);
-}
-
-- (NSRect)iconRectForBounds:(NSRect)aRect {
-    CGFloat border, imageWidth;
-    
-    if ([self isBordered]) {
-        border = BORDER_BETWEEN_EDGE_AND_IMAGE_BORDERED;
-        imageWidth = NSHeight(aRect) - 2.0 * border;
-    } else if ([self isBezeled]) {
-        // if we ever want to support round bezels we should increase the 
border here
-        border = BORDER_BETWEEN_EDGE_AND_IMAGE_BEZELED;
-        imageWidth = NSHeight(aRect) - 2.0 * border;
-    } else {
-        border = BORDER_BETWEEN_EDGE_AND_IMAGE_BORDERLESS;
-        imageWidth = NSHeight(aRect) - 1;
-    }
-    
-    return BDSKSliceRect(BDSKShrinkRect(aRect, border, NSMinXEdge), 
imageWidth, NSMinXEdge);
-}
-
-- (void)drawInteriorWithFrame:(NSRect)aRect inView:(NSView *)controlView {
-    // let super draw the text, but vertically center the text for tall cells, 
because NSTextFieldCell aligns at the top
-    NSRect textRect = [self textRectForBounds:aRect];
-    CGFloat minHeight = [super cellSizeForBounds:NSMakeRect(0.0, 0.0, 4000.0, 
4000.0)].height + 2.0;
-    if (NSHeight(textRect) > minHeight)
-        textRect = BDSKCenterRectVertically(textRect, minHeight, [controlView 
isFlipped]);
-    [super drawInteriorWithFrame:textRect inView:controlView];
-    
-    // Draw the image
-    NSRect imageRect = [self iconRectForBounds:aRect];
-    imageRect = BDSKCenterRectVertically(imageRect, NSWidth(imageRect), 
[controlView isFlipped]);
-    if ([self isBordered] == NO && [self isBezeled] == NO)
-        imageRect.origin.y += [controlView isFlipped] ? -IMAGE_OFFSET : 
IMAGE_OFFSET;
-    [imageCell drawInteriorWithFrame:imageRect inView:controlView];
-}
-
-- (NSImage *)icon {
-    return [imageCell image];
-}
-
-- (void)setIcon:(NSImage *)newIcon {
-    if ([imageCell image] != newIcon) {
-        [imageCell setImage:newIcon];
-        [(NSControl *)[self controlView] updateCellInside:self];
-    }
-}
-
-- (void)setObjectValue:(id <NSCopying>)obj {
-    [super setObjectValue:obj];
-    if ([[self formatter] respondsToSelector:@selector(imageForObjectValue:)])
-        [self setIcon:[[self formatter] imageForObjectValue:obj]];
-}
-
-- (void)editWithFrame:(NSRect)aRect inView:(NSView *)controlView 
editor:(NSText *)textObj delegate:(id)anObject event:(NSEvent *)theEvent {
-    [super editWithFrame:[self textRectForBounds:aRect] inView:controlView 
editor:textObj delegate:anObject event:theEvent];
-}
-
-- (void)selectWithFrame:(NSRect)aRect inView:(NSView *)controlView 
editor:(NSText *)textObj delegate:(id)anObject start:(NSInteger)selStart 
length:(NSInteger)selLength {
-    [super selectWithFrame:[self textRectForBounds:aRect] inView:controlView 
editor:textObj delegate:anObject start:selStart length:selLength];
-}
-
-- (NSCellHitResult)hitTestForEvent:(NSEvent *)event inRect:(NSRect)cellFrame 
ofView:(NSView *)controlView {
-    NSRect textRect = [self textRectForBounds:cellFrame];
-    NSPoint mouseLoc = [controlView convertPoint:[event locationInWindow] 
fromView:nil];
-    NSUInteger hit = NSCellHitNone;
-    if (NSMouseInRect(mouseLoc, textRect, [controlView isFlipped]))
-        hit = [super hitTestForEvent:event inRect:textRect ofView:controlView];
-    else if (NSMouseInRect(mouseLoc, [self iconRectForBounds:cellFrame], 
[controlView isFlipped]))
-        hit = NSCellHitContentArea;
-    return hit;
-}
-
-- (NSColor *)highlightColorWithFrame:(NSRect)cellFrame inView:(NSView 
*)controlView {
-    return nil;
-}
-
-@end
-
-#pragma mark -
-
-@implementation BDSKTextWithIconFormatter
-
-- (NSImage *)imageForObjectValue:(id)obj {
-    return nonNullObjectValueForKey(obj, nil, BDSKTextWithIconImageKey);
-}
-
-- (NSString *)stringForObjectValue:(id)obj {
-    return nonNullObjectValueForKey(obj, obj, BDSKTextWithIconStringKey);
-}
-
-- (BOOL)getObjectValue:(id *)obj forString:(NSString *)string 
errorDescription:(NSString **)error {
-    // even though 'string' is reported as immutable, it's actually changed 
after this method returns and before it's returned by the control!
-    string = [string copy];
-    *obj = [NSDictionary dictionaryWithObjectsAndKeys:string, 
BDSKTextWithIconStringKey, nil];
-    return YES;
-}
-
-@end

Modified: trunk/bibdesk/Bibdesk.xcodeproj/project.pbxproj
===================================================================
--- trunk/bibdesk/Bibdesk.xcodeproj/project.pbxproj     2025-10-13 15:42:41 UTC 
(rev 29721)
+++ trunk/bibdesk/Bibdesk.xcodeproj/project.pbxproj     2025-10-13 16:01:12 UTC 
(rev 29722)
@@ -205,7 +205,6 @@
                CE2A09FA224599E100A8F31C /* BDSKFileMatchConfigController.h in 
Headers */ = {isa = PBXBuildFile; fileRef = F9BE68370B80F94000B2597C /* 
BDSKFileMatchConfigController.h */; };
                CE2A09FB224599E100A8F31C /* BDSKFileMatcher.h in Headers */ = 
{isa = PBXBuildFile; fileRef = F9B88D960B7D14B700D5D42C /* BDSKFileMatcher.h 
*/; };
                CE2A09FC224599E100A8F31C /* BDSKFileMigrationController.h in 
Headers */ = {isa = PBXBuildFile; fileRef = F9EF94E30D15FE7400314058 /* 
BDSKFileMigrationController.h */; };
-               CE2A09FD224599E100A8F31C /* BDSKFilePathCell.h in Headers */ = 
{isa = PBXBuildFile; fileRef = CEC7CDDE0F6725890051794E /* BDSKFilePathCell.h 
*/; };
                CE2A09FE224599E100A8F31C /* BDSKFiler.h in Headers */ = {isa = 
PBXBuildFile; fileRef = F9022C69075802E300C3F701 /* BDSKFiler.h */; };
                CE2A09FF224599E100A8F31C /* BDSKFilerErrorController.h in 
Headers */ = {isa = PBXBuildFile; fileRef = CEFF317D110B27ED0098DD17 /* 
BDSKFilerErrorController.h */; };
                CE2A0A00224599E100A8F31C /* BDSKFileSearch.h in Headers */ = 
{isa = PBXBuildFile; fileRef = F9A2245A0AE02C8E0046CA3D /* BDSKFileSearch.h */; 
};
@@ -342,7 +341,6 @@
                CE2A0A8B22459A3600A8F31C /* BDSKTextImportController.h in 
Headers */ = {isa = PBXBuildFile; fileRef = 27AFAF9A080D1E1B0096F5D2 /* 
BDSKTextImportController.h */; };
                CE2A0A8C22459A3600A8F31C /* BDSKTextImportItemTableView.h in 
Headers */ = {isa = PBXBuildFile; fileRef = CE33D604136AB73600ACE924 /* 
BDSKTextImportItemTableView.h */; };
                CE2A0A8D22459A3600A8F31C /* BDSKTextViewCompletionController.h 
in Headers */ = {isa = PBXBuildFile; fileRef = F98AA67F0971E3F400184BD8 /* 
BDSKTextViewCompletionController.h */; };
-               CE2A0A8E22459A3600A8F31C /* BDSKTextWithIconCell.h in Headers 
*/ = {isa = PBXBuildFile; fileRef = F9DCEA4D094B7D1100AEE662 /* 
BDSKTextWithIconCell.h */; };
                CE2A0A8F22459A3600A8F31C /* BDSKToken.h in Headers */ = {isa = 
PBXBuildFile; fileRef = CE8961850CBEB59800EA2D98 /* BDSKToken.h */; };
                CE2A0A9022459A3600A8F31C /* BDSKToolbarItem.h in Headers */ = 
{isa = PBXBuildFile; fileRef = CE6DACC20A503ECF00123185 /* BDSKToolbarItem.h 
*/; };
                CE2A0A9122459A3600A8F31C /* BDSKTreeNode.h in Headers */ = {isa 
= PBXBuildFile; fileRef = F963E42A0A1D7ADD00695DDC /* BDSKTreeNode.h */; };
@@ -710,7 +708,6 @@
                CEBF7AE818F2EB6300012ECD /* WokSearchLiteService.m in Sources 
*/ = {isa = PBXBuildFile; fileRef = CEBF7AE618F2EB6300012ECD /* 
WokSearchLiteService.m */; };
                CEC1CEA80F51D2CE00D18921 /* BDSKReadWriteLock.m in Sources */ = 
{isa = PBXBuildFile; fileRef = CEC1CEA60F51D2CE00D18921 /* BDSKReadWriteLock.m 
*/; };
                CEC46E311629743200B51A9D /* NSPasteboard_BDSKExtensions.m in 
Sources */ = {isa = PBXBuildFile; fileRef = CEC46E2F1629743200B51A9D /* 
NSPasteboard_BDSKExtensions.m */; };
-               CEC7CDE10F6725890051794E /* BDSKFilePathCell.m in Sources */ = 
{isa = PBXBuildFile; fileRef = CEC7CDDF0F6725890051794E /* BDSKFilePathCell.m 
*/; };
                CEC9B8A52172418D00108617 /* BDSKServerInfo+Scripting.m in 
Sources */ = {isa = PBXBuildFile; fileRef = CEC9B8A32172418D00108617 /* 
BDSKServerInfo+Scripting.m */; };
                CEC9B8B5217244AB00108617 /* BDSKTemplate+Scripting.m in Sources 
*/ = {isa = PBXBuildFile; fileRef = CEC9B8B3217244AB00108617 /* 
BDSKTemplate+Scripting.m */; };
                CECBFA45216124AD007565DE /* BDSKTypeInfo.m in Sources */ = {isa 
= PBXBuildFile; fileRef = CECBFA43216124AD007565DE /* BDSKTypeInfo.m */; };
@@ -901,7 +898,6 @@
                F9C50D8B0EA3A2D6009FE098 /* BDSKTask.m in Sources */ = {isa = 
PBXBuildFile; fileRef = F9C50D890EA3A2D6009FE098 /* BDSKTask.m */; };
                F9D0E5370BF92768001C6C22 /* BDSKMODSParser.m in Sources */ = 
{isa = PBXBuildFile; fileRef = F9D0E5350BF92768001C6C22 /* BDSKMODSParser.m */; 
};
                F9DB895D08A54BBA00CB3D53 /* BDSKTeXTask.m in Sources */ = {isa 
= PBXBuildFile; fileRef = F9DB895B08A54BBA00CB3D53 /* BDSKTeXTask.m */; };
-               F9DCEA50094B7D1100AEE662 /* BDSKTextWithIconCell.m in Sources 
*/ = {isa = PBXBuildFile; fileRef = F9DCEA4E094B7D1100AEE662 /* 
BDSKTextWithIconCell.m */; };
                F9DE8E56087F81A4006F0427 /* cacheDocIcon.icns in Resources */ = 
{isa = PBXBuildFile; fileRef = F9DE8E55087F81A4006F0427 /* cacheDocIcon.icns 
*/; };
                F9DF3BC209B7605E00342ADE /* SystemConfiguration.framework in 
Frameworks */ = {isa = PBXBuildFile; fileRef = F9DF3BC109B7605E00342ADE /* 
SystemConfiguration.framework */; };
                F9E069B70981A03B00AEFBE7 /* BDSKWebOfScienceParser.m in Sources 
*/ = {isa = PBXBuildFile; fileRef = F9E069B50981A03B00AEFBE7 /* 
BDSKWebOfScienceParser.m */; };
@@ -1964,8 +1960,6 @@
                CEC3158B0F24D0B9008D2C75 /* BDSKRichTextForCommand.m */ = {isa 
= PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; 
path = BDSKRichTextForCommand.m; sourceTree = "<group>"; };
                CEC46E2E1629743200B51A9D /* NSPasteboard_BDSKExtensions.h */ = 
{isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; 
path = NSPasteboard_BDSKExtensions.h; sourceTree = "<group>"; };
                CEC46E2F1629743200B51A9D /* NSPasteboard_BDSKExtensions.m */ = 
{isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = 
sourcecode.c.objc; path = NSPasteboard_BDSKExtensions.m; sourceTree = 
"<group>"; };
-               CEC7CDDE0F6725890051794E /* BDSKFilePathCell.h */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = 
BDSKFilePathCell.h; sourceTree = "<group>"; };
-               CEC7CDDF0F6725890051794E /* BDSKFilePathCell.m */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path 
= BDSKFilePathCell.m; sourceTree = "<group>"; };
                CEC9B8A22172418D00108617 /* BDSKServerInfo+Scripting.h */ = 
{isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = 
"BDSKServerInfo+Scripting.h"; sourceTree = "<group>"; };
                CEC9B8A32172418D00108617 /* BDSKServerInfo+Scripting.m */ = 
{isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = 
"BDSKServerInfo+Scripting.m"; sourceTree = "<group>"; };
                CEC9B8B2217244AB00108617 /* BDSKTemplate+Scripting.h */ = {isa 
= PBXFileReference; lastKnownFileType = sourcecode.c.h; path = 
"BDSKTemplate+Scripting.h"; sourceTree = "<group>"; };
@@ -2322,8 +2316,6 @@
                F9DAC7A10A0A95BC0099117E /* BDSKPreferenceController.m */ = 
{isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = 
sourcecode.c.objc; path = BDSKPreferenceController.m; sourceTree = "<group>"; };
                F9DB895A08A54BBA00CB3D53 /* BDSKTeXTask.h */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = 
BDSKTeXTask.h; sourceTree = "<group>"; };
                F9DB895B08A54BBA00CB3D53 /* BDSKTeXTask.m */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path 
= BDSKTeXTask.m; sourceTree = "<group>"; };
-               F9DCEA4D094B7D1100AEE662 /* BDSKTextWithIconCell.h */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = 
BDSKTextWithIconCell.h; sourceTree = "<group>"; };
-               F9DCEA4E094B7D1100AEE662 /* BDSKTextWithIconCell.m */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path 
= BDSKTextWithIconCell.m; sourceTree = "<group>"; };
                F9DE8E55087F81A4006F0427 /* cacheDocIcon.icns */ = {isa = 
PBXFileReference; lastKnownFileType = image.icns; path = cacheDocIcon.icns; 
sourceTree = "<group>"; };
                F9DF3BC109B7605E00342ADE /* SystemConfiguration.framework */ = 
{isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = 
SystemConfiguration.framework; path = 
/System/Library/Frameworks/SystemConfiguration.framework; sourceTree = 
"<absolute>"; };
                F9E069B40981A03B00AEFBE7 /* BDSKWebOfScienceParser.h */ = {isa 
= PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path 
= BDSKWebOfScienceParser.h; sourceTree = "<group>"; };
@@ -2696,7 +2688,6 @@
                                CE4241430D0EAEFE00F824E7 /* 
BDSKEditorTextField.m */,
                                F941135309B549BF00EE8463 /* 
BDSKEditorTextView.m */,
                                CE9F853F0956A2C50073FCAD /* BDSKFieldEditor.m 
*/,
-                               CEC7CDDF0F6725890051794E /* BDSKFilePathCell.m 
*/,
                                CE51921F09E5755600E97C3A /* 
BDSKFindFieldEditor.m */,
                                CEB420A726587CF700D1CE69 /* BDSKFlippedView.m 
*/,
                                CEFAD8BD1150F7A800A3D969 /* BDSKFontWell.m */,
@@ -2730,7 +2721,6 @@
                                CE30FAD60919713100CB1A19 /* BDSKStatusBar.m */,
                                CE62E0B80F4C4A2100BDF01E /* BDSKTableView.m */,
                                CE33D605136AB73600ACE924 /* 
BDSKTextImportItemTableView.m */,
-                               F9DCEA4E094B7D1100AEE662 /* 
BDSKTextWithIconCell.m */,
                                CE6DACC30A503ECF00123185 /* BDSKToolbarItem.m 
*/,
                                CEF7F42512743BCC00B20881 /* BDSKWebView.m */,
                                CE375CAE2E5F081200A91CD6 /* BDSKWKWebView.m */,
@@ -3353,7 +3343,6 @@
                                F9BE68370B80F94000B2597C /* 
BDSKFileMatchConfigController.h */,
                                F9B88D960B7D14B700D5D42C /* BDSKFileMatcher.h 
*/,
                                F9EF94E30D15FE7400314058 /* 
BDSKFileMigrationController.h */,
-                               CEC7CDDE0F6725890051794E /* BDSKFilePathCell.h 
*/,
                                CEA1A0A126F5054800897A84 /* 
BDSKFilePathTransformer.h */,
                                F9022C69075802E300C3F701 /* BDSKFiler.h */,
                                CEFF317D110B27ED0098DD17 /* 
BDSKFilerErrorController.h */,
@@ -3510,7 +3499,6 @@
                                CE33D604136AB73600ACE924 /* 
BDSKTextImportItemTableView.h */,
                                CE963635283D292F00D8A983 /* 
BDSKTextUndoManager.h */,
                                F98AA67F0971E3F400184BD8 /* 
BDSKTextViewCompletionController.h */,
-                               F9DCEA4D094B7D1100AEE662 /* 
BDSKTextWithIconCell.h */,
                                CE8961850CBEB59800EA2D98 /* BDSKToken.h */,
                                CE6DACC20A503ECF00123185 /* BDSKToolbarItem.h 
*/,
                                CED5203222846D7100F87B8A /* 
BDSKTouchBarButtonGroup.h */,
@@ -3790,7 +3778,6 @@
                                CEE8445228EAE17C009FD564 /* 
BDSKSecureTextField.h in Headers */,
                                CE15419C2649753D001F1655 /* 
BDSKFormatTextField.h in Headers */,
                                CE2A0A8222459A3100A8F31C /* BDSKTableView.h in 
Headers */,
-                               CE2A0A8E22459A3600A8F31C /* 
BDSKTextWithIconCell.h in Headers */,
                                CE2A0A29224599EF00A8F31C /* BDSKMacroResolver.h 
in Headers */,
                                CE2A0AD322459A4B00A8F31C /* 
NSImage_BDSKExtensions.h in Headers */,
                                CE2A0AA022459A3B00A8F31C /* BDSKWebParser.h in 
Headers */,
@@ -3938,7 +3925,6 @@
                                CE2A0A2C224599EF00A8F31C /* BDSKMainTableView.h 
in Headers */,
                                CE2A0AC522459A4B00A8F31C /* 
NSArray_BDSKExtensions.h in Headers */,
                                CE2A0ABB22459A4500A8F31C /* BibPref_Files.h in 
Headers */,
-                               CE2A09FD224599E100A8F31C /* BDSKFilePathCell.h 
in Headers */,
                                CE2A0A52224599F600A8F31C /* BDSKReferParser.h 
in Headers */,
                                CE5417E322D4DA9500867189 /* 
BDSKAuthenticationController.h in Headers */,
                                CE8F75BA239D3F7F00511336 /* BDSKPRISMParser.h 
in Headers */,
@@ -4840,7 +4826,6 @@
                                CE969E340931E4F500EE3DFD /* 
NSTableHeaderView_BDSKExtensions.m in Sources */,
                                CEEC70E2093B6EC200A64F54 /* BDSKDragImageView.m 
in Sources */,
                                F9463F4609436F7500CC4549 /* 
NSSet_BDSKExtensions.m in Sources */,
-                               F9DCEA50094B7D1100AEE662 /* 
BDSKTextWithIconCell.m in Sources */,
                                CE9F85410956A2C50073FCAD /* BDSKFieldEditor.m 
in Sources */,
                                F97AF8F009575E8B00D1F1B0 /* 
NSURL_BDSKExtensions.m in Sources */,
                                F99BC25F095A5C7000E018C3 /* 
NSArray_BDSKExtensions.m in Sources */,
@@ -5007,7 +4992,6 @@
                                CEED2F350F4E0C860078E87A /* BDSKRuntime.m in 
Sources */,
                                CEC1CEA80F51D2CE00D18921 /* BDSKReadWriteLock.m 
in Sources */,
                                CEF546100F56BDDB008A630F /* 
BDSKStringArrayFormatter.m in Sources */,
-                               CEC7CDE10F6725890051794E /* BDSKFilePathCell.m 
in Sources */,
                                6C567DBA0F8189F500DE285D /* 
BDSKZentralblattParser.m in Sources */,
                                6C567DBF0F818A1600DE285D /* 
BDSKMathSciNetParser.m in Sources */,
                                CE1EF2940F8E0D54004E7AE8 /* BDSKParentGroup.m 
in Sources */,

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
Bibdesk-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit

Reply via email to