Revision: 28787
http://sourceforge.net/p/bibdesk/svn/28787
Author: hofman
Date: 2024-02-21 10:27:28 +0000 (Wed, 21 Feb 2024)
Log Message:
-----------
rename private class
Modified Paths:
--------------
trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.m
Modified: trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.m
===================================================================
--- trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.m 2024-02-21
10:05:50 UTC (rev 28786)
+++ trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.m 2024-02-21
10:27:28 UTC (rev 28787)
@@ -150,19 +150,19 @@
#pragma mark -
-@protocol FVContentViewDelegate
+@protocol FVDisplayViewDelegate
- (void)drawRect:(NSRect)rect inView:(NSView *)view;
@end
-@interface FVContentView : NSView {
- __weak id<FVContentViewDelegate> _delegate;
+@interface FVDisplayView : NSView {
+ __weak id<FVDisplayViewDelegate> _delegate;
}
-- (id)initWithFrame:(NSRect)frameRect
delegate:(id<FVContentViewDelegate>)delegate;
+- (id)initWithFrame:(NSRect)frameRect
delegate:(id<FVDisplayViewDelegate>)delegate;
@end
#pragma mark -
-@interface FVDropHighlightView : FVContentView {
+@interface FVDropHighlightView : FVDisplayView {
NSUInteger _dropIndex;
FVDropOperation _dropOperation;
}
@@ -172,7 +172,7 @@
#pragma mark -
-@interface FVFileView (FVDelegateDeclarations) <FVDownloadDelegate,
QLPreviewPanelDataSource, QLPreviewPanelDelegate, FVContentViewDelegate>
+@interface FVFileView (FVDelegateDeclarations) <FVDownloadDelegate,
QLPreviewPanelDataSource, QLPreviewPanelDelegate, FVDisplayViewDelegate>
@end
#if !defined(MAC_OS_X_VERSION_10_7) || MAC_OS_X_VERSION_MAX_ALLOWED <
MAC_OS_X_VERSION_10_7
@@ -334,7 +334,7 @@
+ (BOOL)accessInstanceVariablesDirectly { return NO; }
- (void)_commonInit {
- _contentView = [[FVContentView alloc] initWithFrame:[self bounds]
delegate:self];
+ _contentView = [[FVDisplayView alloc] initWithFrame:[self bounds]
delegate:self];
[_contentView setAutoresizingMask:NSViewWidthSizable |
NSViewHeightSizable];
[self addSubview:_contentView];
@@ -5027,9 +5027,9 @@
#pragma mark -
-@implementation FVContentView
+@implementation FVDisplayView
-- (id)initWithFrame:(NSRect)frameRect
delegate:(id<FVContentViewDelegate>)delegate {
+- (id)initWithFrame:(NSRect)frameRect
delegate:(id<FVDisplayViewDelegate>)delegate {
self = [self initWithFrame:frameRect];
if (self) {
_delegate = delegate;
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