Revision: 28654
          http://sourceforge.net/p/bibdesk/svn/28654
Author:   hofman
Date:     2024-01-23 09:36:22 +0000 (Tue, 23 Jan 2024)
Log Message:
-----------
rename class files for progress indicator

Modified Paths:
--------------
    trunk/bibdesk_vendorsrc/amaxwell/FileView/FileView.xcodeproj/project.pbxproj

Added Paths:
-----------
    trunk/bibdesk_vendorsrc/amaxwell/FileView/FVProgressIndicator.h
    trunk/bibdesk_vendorsrc/amaxwell/FileView/FVProgressIndicator.m

Removed Paths:
-------------
    trunk/bibdesk_vendorsrc/amaxwell/FileView/FVProgressIndicatorCell.h
    trunk/bibdesk_vendorsrc/amaxwell/FileView/FVProgressIndicatorCell.m

Copied: trunk/bibdesk_vendorsrc/amaxwell/FileView/FVProgressIndicator.h (from 
rev 28653, trunk/bibdesk_vendorsrc/amaxwell/FileView/FVProgressIndicatorCell.h)
===================================================================
--- trunk/bibdesk_vendorsrc/amaxwell/FileView/FVProgressIndicator.h             
                (rev 0)
+++ trunk/bibdesk_vendorsrc/amaxwell/FileView/FVProgressIndicator.h     
2024-01-23 09:36:22 UTC (rev 28654)
@@ -0,0 +1,74 @@
+//
+//  FVProgressIndicatorCell.h
+//  FileView
+//
+//  Created by Adam Maxwell on 2/15/08.
+/*
+ This software is Copyright (c) 2008
+ 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>
+
+/*
+ Custom progress indicator is drawn for multiple reasons:
+ 1) it allows a determinate progress indicator in a small area
+ 2) we can modify it slightly to draw an indeterminate indicator
+ 3) performance of spinning NSProgressIndicator sucks (they flicker when 
scrolling)
+ 4) spinning NSProgressIndicator has some undocumented maximum size (32x32?)
+ */
+
+typedef NS_ENUM(NSInteger, FVProgressIndicatorStyle) {
+    FVProgressIndicatorIndeterminate = -1,
+    FVProgressIndicatorDeterminate   = 0
+};
+
+@interface FVProgressIndicatorCell : NSObject
+{
+@private
+    CGFloat                  _currentProgress;
+    NSInteger                _currentStep;
+    FVProgressIndicatorStyle _style;
+    NSUInteger               _indexInView;
+}
+
+@property (nonatomic) CGFloat currentProgress;
+
+// default is FVProgressIndicatorDeterminate
+@property (nonatomic) FVProgressIndicatorStyle style;
+
+@property (nonatomic) NSUInteger indexInView;
+
+- (void)animate;
+
+- (void)drawWithFrame:(NSRect)aRect;
+
+@end

Copied: trunk/bibdesk_vendorsrc/amaxwell/FileView/FVProgressIndicator.m (from 
rev 28653, trunk/bibdesk_vendorsrc/amaxwell/FileView/FVProgressIndicatorCell.m)
===================================================================
--- trunk/bibdesk_vendorsrc/amaxwell/FileView/FVProgressIndicator.m             
                (rev 0)
+++ trunk/bibdesk_vendorsrc/amaxwell/FileView/FVProgressIndicator.m     
2024-01-23 09:36:22 UTC (rev 28654)
@@ -0,0 +1,142 @@
+//
+//  FVProgressIndicatorCell.m
+//  FileView
+//
+//  Created by Adam Maxwell on 2/15/08.
+/*
+ This software is Copyright (c) 2008
+ 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 "FVProgressIndicatorCell.h"
+
+
+@implementation FVProgressIndicatorCell
+
+@synthesize currentProgress=_currentProgress;
+@synthesize style=_style;
+@synthesize indexInView=_indexInView;
+
+static NSInteger numSteps = 8;
+
++ (void)initialize {
+    FVINITIALIZE(FVProgressIndicatorCell);
+    
+    if (floor(NSAppKitVersionNumber) <= NSAppKitVersionNumber10_15)
+        numSteps = 12;
+}
+
+- (id)init
+{
+    self = [super init];
+    if (self) {
+        _currentProgress = 0;
+        _currentStep = 0;
+        _style = FVProgressIndicatorDeterminate;
+    }
+    return self;
+}
+
+- (void)animate
+{
+    if (_style == FVProgressIndicatorIndeterminate)
+        _currentStep = (_currentStep + 1) % numSteps;
+}
+
+- (void)drawWithFrame:(NSRect)aRect
+{
+    CGContextRef context = [[NSGraphicsContext currentContext] graphicsPort];
+    CGContextSaveGState(context);
+    CGRect progressRect = NSRectToCGRect(aRect);    
+    CGPoint ctr = CGPointMake(CGRectGetMidX(progressRect), 
CGRectGetMidY(progressRect));
+    CGFloat h = CGRectGetHeight(progressRect) / 64.0;
+    
+    if (_style == FVProgressIndicatorIndeterminate) {
+        // indeterminate download length
+        CGFloat angle = M_PI * 2.0 / numSteps;
+        CGContextTranslateCTM(context, ctr.x, ctr.y);
+        CGContextRotateCTM(context, _currentStep * angle);
+        CGContextTranslateCTM(context, -ctr.x, -ctr.y);
+        NSInteger i;
+        for (i = 0; i < numSteps; i++) {
+            CGColorRef strokeColor = CGColorCreateGenericGray(0.0, (1.0 - 
(CGFloat)i / numSteps) * (numSteps - 4.0) / 8.0);
+            CGContextSetStrokeColorWithColor(context, strokeColor);
+            CGColorRelease(strokeColor);
+            CGContextSetLineWidth(context, (12.0 - numSteps / 2.0) * h);
+            CGContextSetLineCap(context, kCGLineCapRound);
+            CGContextBeginPath(context);
+            CGContextMoveToPoint(context, ctr.x, ctr.y - (14.0 + numSteps / 
4.0) * h);
+            CGContextAddLineToPoint(context, ctr.x, ctr.y - (26.0 + numSteps / 
4.0) * h);
+            CGContextStrokePath(context);
+            CGContextTranslateCTM(context, ctr.x, ctr.y);
+            CGContextRotateCTM(context, -angle);
+            CGContextTranslateCTM(context, -ctr.x, -ctr.y);
+        }
+    } else {
+        // determinate download length
+        CGFloat angle = 2.0 * M_PI * fmax(fmin(_currentProgress, 1.0), 0.0) - 
M_PI_2;
+        CGContextTranslateCTM(context, ctr.x, ctr.y);
+        CGContextTranslateCTM(context, -ctr.x, -ctr.y);
+        if (floor(NSAppKitVersionNumber) <= NSAppKitVersionNumber10_15) {
+            CGColorRef fillColor = CGColorCreateGenericGray(0, 0.5);
+            CGColorRef strokeColor = CGColorCreateGenericGray(0, 0.33333);
+            CGContextSetFillColorWithColor(context, fillColor);
+            CGContextSetStrokeColorWithColor(context, strokeColor);
+            CGColorRelease(fillColor);
+            CGColorRelease(strokeColor);
+            CGContextBeginPath(context);
+            CGContextAddEllipseInRect(context, CGRectInset(progressRect, 0.5, 
0.5));
+            CGContextStrokePath(context);
+            CGContextMoveToPoint(context, ctr.x, ctr.y);
+            CGContextAddArc(context, ctr.x, ctr.y, 32.0 * h, -M_PI_2, angle, 
false);
+            CGContextClosePath(context);
+            CGContextFillPath(context);
+        } else {
+            CGColorRef bgStrokeColor = CGColorCreateGenericGray(0, 0.05);
+            CGColorRef strokeColor = CGColorCreateGenericGray(0, 0.4);
+            CGContextSetLineWidth(context, 10.0 * h);
+            CGContextSetStrokeColorWithColor(context, bgStrokeColor);
+            CGColorRelease(bgStrokeColor);
+            CGContextBeginPath(context);
+            CGContextAddEllipseInRect(context, CGRectInset(progressRect, 5.0 * 
h, 5.0 * h));
+            CGContextStrokePath(context);
+            CGContextSetStrokeColorWithColor(context, strokeColor);
+            CGColorRelease(strokeColor);
+            CGContextSetLineCap(context, kCGLineCapRound);
+            CGContextBeginPath(context);
+            CGContextAddArc(context, ctr.x, ctr.y, 27.0 * h, -M_PI_2, angle, 
false);
+            CGContextStrokePath(context);
+        }
+    }
+    CGContextRestoreGState(context);
+}
+
+@end

Deleted: trunk/bibdesk_vendorsrc/amaxwell/FileView/FVProgressIndicatorCell.h
===================================================================
--- trunk/bibdesk_vendorsrc/amaxwell/FileView/FVProgressIndicatorCell.h 
2024-01-22 23:51:18 UTC (rev 28653)
+++ trunk/bibdesk_vendorsrc/amaxwell/FileView/FVProgressIndicatorCell.h 
2024-01-23 09:36:22 UTC (rev 28654)
@@ -1,74 +0,0 @@
-//
-//  FVProgressIndicatorCell.h
-//  FileView
-//
-//  Created by Adam Maxwell on 2/15/08.
-/*
- This software is Copyright (c) 2008
- 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>
-
-/*
- Custom progress indicator is drawn for multiple reasons:
- 1) it allows a determinate progress indicator in a small area
- 2) we can modify it slightly to draw an indeterminate indicator
- 3) performance of spinning NSProgressIndicator sucks (they flicker when 
scrolling)
- 4) spinning NSProgressIndicator has some undocumented maximum size (32x32?)
- */
-
-typedef NS_ENUM(NSInteger, FVProgressIndicatorStyle) {
-    FVProgressIndicatorIndeterminate = -1,
-    FVProgressIndicatorDeterminate   = 0
-};
-
-@interface FVProgressIndicatorCell : NSObject
-{
-@private
-    CGFloat                  _currentProgress;
-    NSInteger                _currentStep;
-    FVProgressIndicatorStyle _style;
-    NSUInteger               _indexInView;
-}
-
-@property (nonatomic) CGFloat currentProgress;
-
-// default is FVProgressIndicatorDeterminate
-@property (nonatomic) FVProgressIndicatorStyle style;
-
-@property (nonatomic) NSUInteger indexInView;
-
-- (void)animate;
-
-- (void)drawWithFrame:(NSRect)aRect;
-
-@end

Deleted: trunk/bibdesk_vendorsrc/amaxwell/FileView/FVProgressIndicatorCell.m
===================================================================
--- trunk/bibdesk_vendorsrc/amaxwell/FileView/FVProgressIndicatorCell.m 
2024-01-22 23:51:18 UTC (rev 28653)
+++ trunk/bibdesk_vendorsrc/amaxwell/FileView/FVProgressIndicatorCell.m 
2024-01-23 09:36:22 UTC (rev 28654)
@@ -1,142 +0,0 @@
-//
-//  FVProgressIndicatorCell.m
-//  FileView
-//
-//  Created by Adam Maxwell on 2/15/08.
-/*
- This software is Copyright (c) 2008
- 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 "FVProgressIndicatorCell.h"
-
-
-@implementation FVProgressIndicatorCell
-
-@synthesize currentProgress=_currentProgress;
-@synthesize style=_style;
-@synthesize indexInView=_indexInView;
-
-static NSInteger numSteps = 8;
-
-+ (void)initialize {
-    FVINITIALIZE(FVProgressIndicatorCell);
-    
-    if (floor(NSAppKitVersionNumber) <= NSAppKitVersionNumber10_15)
-        numSteps = 12;
-}
-
-- (id)init
-{
-    self = [super init];
-    if (self) {
-        _currentProgress = 0;
-        _currentStep = 0;
-        _style = FVProgressIndicatorDeterminate;
-    }
-    return self;
-}
-
-- (void)animate
-{
-    if (_style == FVProgressIndicatorIndeterminate)
-        _currentStep = (_currentStep + 1) % numSteps;
-}
-
-- (void)drawWithFrame:(NSRect)aRect
-{
-    CGContextRef context = [[NSGraphicsContext currentContext] graphicsPort];
-    CGContextSaveGState(context);
-    CGRect progressRect = NSRectToCGRect(aRect);    
-    CGPoint ctr = CGPointMake(CGRectGetMidX(progressRect), 
CGRectGetMidY(progressRect));
-    CGFloat h = CGRectGetHeight(progressRect) / 64.0;
-    
-    if (_style == FVProgressIndicatorIndeterminate) {
-        // indeterminate download length
-        CGFloat angle = M_PI * 2.0 / numSteps;
-        CGContextTranslateCTM(context, ctr.x, ctr.y);
-        CGContextRotateCTM(context, _currentStep * angle);
-        CGContextTranslateCTM(context, -ctr.x, -ctr.y);
-        NSInteger i;
-        for (i = 0; i < numSteps; i++) {
-            CGColorRef strokeColor = CGColorCreateGenericGray(0.0, (1.0 - 
(CGFloat)i / numSteps) * (numSteps - 4.0) / 8.0);
-            CGContextSetStrokeColorWithColor(context, strokeColor);
-            CGColorRelease(strokeColor);
-            CGContextSetLineWidth(context, (12.0 - numSteps / 2.0) * h);
-            CGContextSetLineCap(context, kCGLineCapRound);
-            CGContextBeginPath(context);
-            CGContextMoveToPoint(context, ctr.x, ctr.y - (14.0 + numSteps / 
4.0) * h);
-            CGContextAddLineToPoint(context, ctr.x, ctr.y - (26.0 + numSteps / 
4.0) * h);
-            CGContextStrokePath(context);
-            CGContextTranslateCTM(context, ctr.x, ctr.y);
-            CGContextRotateCTM(context, -angle);
-            CGContextTranslateCTM(context, -ctr.x, -ctr.y);
-        }
-    } else {
-        // determinate download length
-        CGFloat angle = 2.0 * M_PI * fmax(fmin(_currentProgress, 1.0), 0.0) - 
M_PI_2;
-        CGContextTranslateCTM(context, ctr.x, ctr.y);
-        CGContextTranslateCTM(context, -ctr.x, -ctr.y);
-        if (floor(NSAppKitVersionNumber) <= NSAppKitVersionNumber10_15) {
-            CGColorRef fillColor = CGColorCreateGenericGray(0, 0.5);
-            CGColorRef strokeColor = CGColorCreateGenericGray(0, 0.33333);
-            CGContextSetFillColorWithColor(context, fillColor);
-            CGContextSetStrokeColorWithColor(context, strokeColor);
-            CGColorRelease(fillColor);
-            CGColorRelease(strokeColor);
-            CGContextBeginPath(context);
-            CGContextAddEllipseInRect(context, CGRectInset(progressRect, 0.5, 
0.5));
-            CGContextStrokePath(context);
-            CGContextMoveToPoint(context, ctr.x, ctr.y);
-            CGContextAddArc(context, ctr.x, ctr.y, 32.0 * h, -M_PI_2, angle, 
false);
-            CGContextClosePath(context);
-            CGContextFillPath(context);
-        } else {
-            CGColorRef bgStrokeColor = CGColorCreateGenericGray(0, 0.05);
-            CGColorRef strokeColor = CGColorCreateGenericGray(0, 0.4);
-            CGContextSetLineWidth(context, 10.0 * h);
-            CGContextSetStrokeColorWithColor(context, bgStrokeColor);
-            CGColorRelease(bgStrokeColor);
-            CGContextBeginPath(context);
-            CGContextAddEllipseInRect(context, CGRectInset(progressRect, 5.0 * 
h, 5.0 * h));
-            CGContextStrokePath(context);
-            CGContextSetStrokeColorWithColor(context, strokeColor);
-            CGColorRelease(strokeColor);
-            CGContextSetLineCap(context, kCGLineCapRound);
-            CGContextBeginPath(context);
-            CGContextAddArc(context, ctr.x, ctr.y, 27.0 * h, -M_PI_2, angle, 
false);
-            CGContextStrokePath(context);
-        }
-    }
-    CGContextRestoreGState(context);
-}
-
-@end

Modified: 
trunk/bibdesk_vendorsrc/amaxwell/FileView/FileView.xcodeproj/project.pbxproj
===================================================================
--- 
trunk/bibdesk_vendorsrc/amaxwell/FileView/FileView.xcodeproj/project.pbxproj    
    2024-01-22 23:51:18 UTC (rev 28653)
+++ 
trunk/bibdesk_vendorsrc/amaxwell/FileView/FileView.xcodeproj/project.pbxproj    
    2024-01-23 09:36:22 UTC (rev 28654)
@@ -15,8 +15,8 @@
                CE05D3B20D7B22170034C2A8 /* FVColorMenuView.m in Sources */ = 
{isa = PBXBuildFile; fileRef = CE05D3B00D7B22170034C2A8 /* FVColorMenuView.m 
*/; };
                CE05D3C60D7B272A0034C2A8 /* FVDownload.h in Headers */ = {isa = 
PBXBuildFile; fileRef = CE05D3C40D7B272A0034C2A8 /* FVDownload.h */; };
                CE05D3C70D7B272A0034C2A8 /* FVDownload.m in Sources */ = {isa = 
PBXBuildFile; fileRef = CE05D3C50D7B272A0034C2A8 /* FVDownload.m */; };
-               CE05D3D00D7B27FC0034C2A8 /* FVProgressIndicatorCell.h in 
Headers */ = {isa = PBXBuildFile; fileRef = CE05D3CE0D7B27FC0034C2A8 /* 
FVProgressIndicatorCell.h */; };
-               CE05D3D10D7B27FC0034C2A8 /* FVProgressIndicatorCell.m in 
Sources */ = {isa = PBXBuildFile; fileRef = CE05D3CF0D7B27FC0034C2A8 /* 
FVProgressIndicatorCell.m */; };
+               CE05D3D00D7B27FC0034C2A8 /* FVProgressIndicator.h in Headers */ 
= {isa = PBXBuildFile; fileRef = CE05D3CE0D7B27FC0034C2A8 /* 
FVProgressIndicator.h */; };
+               CE05D3D10D7B27FC0034C2A8 /* FVProgressIndicator.m in Sources */ 
= {isa = PBXBuildFile; fileRef = CE05D3CF0D7B27FC0034C2A8 /* 
FVProgressIndicator.m */; };
                CE05D4700D7B36DD0034C2A8 /* FVIcon_Private.m in Sources */ = 
{isa = PBXBuildFile; fileRef = CE05D4690D7B36DD0034C2A8 /* FVIcon_Private.m */; 
};
                CE05D4710D7B36DD0034C2A8 /* FVMIMEIcon.h in Headers */ = {isa = 
PBXBuildFile; fileRef = CE05D46A0D7B36DD0034C2A8 /* FVMIMEIcon.h */; };
                CE05D4720D7B36DD0034C2A8 /* FVMIMEIcon.m in Sources */ = {isa = 
PBXBuildFile; fileRef = CE05D46B0D7B36DD0034C2A8 /* FVMIMEIcon.m */; };
@@ -158,8 +158,8 @@
                CE05D3B00D7B22170034C2A8 /* FVColorMenuView.m */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path 
= FVColorMenuView.m; sourceTree = "<group>"; };
                CE05D3C40D7B272A0034C2A8 /* FVDownload.h */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = 
FVDownload.h; sourceTree = "<group>"; };
                CE05D3C50D7B272A0034C2A8 /* FVDownload.m */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path 
= FVDownload.m; sourceTree = "<group>"; };
-               CE05D3CE0D7B27FC0034C2A8 /* FVProgressIndicatorCell.h */ = {isa 
= PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path 
= FVProgressIndicatorCell.h; sourceTree = "<group>"; };
-               CE05D3CF0D7B27FC0034C2A8 /* FVProgressIndicatorCell.m */ = {isa 
= PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; 
path = FVProgressIndicatorCell.m; sourceTree = "<group>"; };
+               CE05D3CE0D7B27FC0034C2A8 /* FVProgressIndicator.h */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = 
FVProgressIndicator.h; sourceTree = "<group>"; };
+               CE05D3CF0D7B27FC0034C2A8 /* FVProgressIndicator.m */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path 
= FVProgressIndicator.m; sourceTree = "<group>"; };
                CE05D4690D7B36DD0034C2A8 /* FVIcon_Private.m */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path 
= FVIcon_Private.m; sourceTree = "<group>"; };
                CE05D46A0D7B36DD0034C2A8 /* FVMIMEIcon.h */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = 
FVMIMEIcon.h; sourceTree = "<group>"; };
                CE05D46B0D7B36DD0034C2A8 /* FVMIMEIcon.m */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path 
= FVMIMEIcon.m; sourceTree = "<group>"; };
@@ -563,8 +563,8 @@
                        children = (
                                CE05D3C40D7B272A0034C2A8 /* FVDownload.h */,
                                CE05D3C50D7B272A0034C2A8 /* FVDownload.m */,
-                               CE05D3CE0D7B27FC0034C2A8 /* 
FVProgressIndicatorCell.h */,
-                               CE05D3CF0D7B27FC0034C2A8 /* 
FVProgressIndicatorCell.m */,
+                               CE05D3CE0D7B27FC0034C2A8 /* 
FVProgressIndicator.h */,
+                               CE05D3CF0D7B27FC0034C2A8 /* 
FVProgressIndicator.m */,
                        );
                        name = Download;
                        sourceTree = "<group>";
@@ -620,7 +620,7 @@
                                CE05D35E0D7B0D750034C2A8 /* FVUtilities.h in 
Headers */,
                                CE05D3B10D7B22170034C2A8 /* FVColorMenuView.h 
in Headers */,
                                CE05D3C60D7B272A0034C2A8 /* FVDownload.h in 
Headers */,
-                               CE05D3D00D7B27FC0034C2A8 /* 
FVProgressIndicatorCell.h in Headers */,
+                               CE05D3D00D7B27FC0034C2A8 /* 
FVProgressIndicator.h in Headers */,
                                CE05D4710D7B36DD0034C2A8 /* FVMIMEIcon.h in 
Headers */,
                                CE05D4730D7B36DD0034C2A8 /* FVMovieIcon.h in 
Headers */,
                                CE05D4750D7B36DD0034C2A8 /* 
FVPlaceholderImage.h in Headers */,
@@ -780,7 +780,7 @@
                                CE05D35B0D7B0D4A0034C2A8 /* FVUtilities.m in 
Sources */,
                                CE05D3B20D7B22170034C2A8 /* FVColorMenuView.m 
in Sources */,
                                CE05D3C70D7B272A0034C2A8 /* FVDownload.m in 
Sources */,
-                               CE05D3D10D7B27FC0034C2A8 /* 
FVProgressIndicatorCell.m in Sources */,
+                               CE05D3D10D7B27FC0034C2A8 /* 
FVProgressIndicator.m in Sources */,
                                CE05D4700D7B36DD0034C2A8 /* FVIcon_Private.m in 
Sources */,
                                CE05D4720D7B36DD0034C2A8 /* FVMIMEIcon.m in 
Sources */,
                                CE05D4740D7B36DD0034C2A8 /* FVMovieIcon.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