Revision: 2934
http://skim-app.svn.sourceforge.net/skim-app/?rev=2934&view=rev
Author: hofman
Date: 2007-09-17 14:14:13 -0700 (Mon, 17 Sep 2007)
Log Message:
-----------
Add an NSView category to summarize different categories we have on NSView.
Modified Paths:
--------------
trunk/NSValue_SKExtensions.h
trunk/NSValue_SKExtensions.m
trunk/SKApplicationController.h
trunk/SKApplicationController.m
trunk/SKDocument.h
trunk/SKDocument.m
trunk/SKPreferenceController.m
trunk/Skim.xcodeproj/project.pbxproj
Added Paths:
-----------
trunk/NSView_SKExtensions.h
trunk/NSView_SKExtensions.m
Modified: trunk/NSValue_SKExtensions.h
===================================================================
--- trunk/NSValue_SKExtensions.h 2007-09-17 18:19:33 UTC (rev 2933)
+++ trunk/NSValue_SKExtensions.h 2007-09-17 21:14:13 UTC (rev 2934)
@@ -2,10 +2,40 @@
// NSValue_SKExtensions.h
// Skim
//
-// Created by Christiaan Hofman on 26/5/07.
-// Copyright 2007 __MyCompanyName__. All rights reserved.
-//
+// Created by Christiaan Hofman on 5/26/07.
+/*
+ This software is Copyright (c) 2007
+ 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>
Modified: trunk/NSValue_SKExtensions.m
===================================================================
--- trunk/NSValue_SKExtensions.m 2007-09-17 18:19:33 UTC (rev 2933)
+++ trunk/NSValue_SKExtensions.m 2007-09-17 21:14:13 UTC (rev 2934)
@@ -2,10 +2,40 @@
// NSValue_SKExtensions.m
// Skim
//
-// Created by Christiaan Hofman on 26/5/07.
-// Copyright 2007 __MyCompanyName__. All rights reserved.
-//
+// Created by Christiaan Hofman on 5/26/07.
+/*
+ This software is Copyright (c) 2007
+ 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 "NSValue_SKExtensions.h"
Added: trunk/NSView_SKExtensions.h
===================================================================
--- trunk/NSView_SKExtensions.h (rev 0)
+++ trunk/NSView_SKExtensions.h 2007-09-17 21:14:13 UTC (rev 2934)
@@ -0,0 +1,53 @@
+//
+// NSView_SKExtensions.h
+// Skim
+//
+// Created by Christiaan Hofman on 9/17/07.
+/*
+ This software is Copyright (c) 2007
+ 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>
+
+
[EMAIL PROTECTED] NSView (SKExtensions)
+
+- (id)subviewOfClass:(Class)aClass;
+
+- (void)scrollLineUp;
+- (void)scrollLineDown;
+- (void)scrollLineRight;
+- (void)scrollLineLeft;
+
+- (void)deactivateColorAndLineWells;
+
[EMAIL PROTECTED]
Added: trunk/NSView_SKExtensions.m
===================================================================
--- trunk/NSView_SKExtensions.m (rev 0)
+++ trunk/NSView_SKExtensions.m 2007-09-17 21:14:13 UTC (rev 2934)
@@ -0,0 +1,117 @@
+//
+// NSView_SKExtensions.m
+// Skim
+//
+// Created by Christiaan Hofman on 9/17/07.
+/*
+ This software is Copyright (c) 2007
+ 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 "NSView_SKExtensions.h"
+#import "SKLineWell.h"
+
+
[EMAIL PROTECTED] NSView (SKExtensions)
+
+- (id)subviewOfClass:(Class)aClass {
+ if ([self isKindOfClass:aClass])
+ return self;
+
+ NSEnumerator *viewEnum = [[self subviews] objectEnumerator];
+ NSView *view, *subview;
+
+ while (subview = [viewEnum nextObject]) {
+ if (view = [subview subviewOfClass:aClass])
+ return view;
+ }
+ return nil;
+}
+
+- (void)scrollLineUp {
+ NSScrollView *scrollView = [self enclosingScrollView];
+ NSView *documentView = [scrollView documentView];
+ NSPoint point = [documentView visibleRect].origin;
+ point.y -= [scrollView verticalLineScroll];
+ [documentView scrollPoint:point];
+}
+
+- (void)scrollLineDown {
+ NSScrollView *scrollView = [self enclosingScrollView];
+ NSView *documentView = [scrollView documentView];
+ NSPoint point = [documentView visibleRect].origin;
+ point.y += [scrollView verticalLineScroll];
+ [documentView scrollPoint:point];
+}
+
+- (void)scrollLineRight {
+ NSScrollView *scrollView = [self enclosingScrollView];
+ NSView *documentView = [scrollView documentView];
+ NSPoint point = [documentView visibleRect].origin;
+ point.x -= [scrollView horizontalLineScroll];
+ [documentView scrollPoint:point];
+}
+
+- (void)scrollLineLeft {
+ NSScrollView *scrollView = [self enclosingScrollView];
+ NSView *documentView = [scrollView documentView];
+ NSPoint point = [documentView visibleRect].origin;
+ point.x += [scrollView horizontalLineScroll];
+ [documentView scrollPoint:point];
+}
+
+- (void)deactivateColorAndLineWells {
+ [[self subviews] makeObjectsPerformSelector:_cmd];
+}
+
[EMAIL PROTECTED]
+
+
[EMAIL PROTECTED] NSColorWell (SKPreferenceControllerExtensions)
[EMAIL PROTECTED]
+
[EMAIL PROTECTED] NSColorWell (SKPreferenceControllerExtensions)
+- (void)deactivateColorAndLineWells {
+ [self deactivate];
+ [super deactivateColorAndLineWells];
+}
[EMAIL PROTECTED]
+
+
[EMAIL PROTECTED] SKLineWell (SKPreferenceControllerExtensions)
[EMAIL PROTECTED]
+
[EMAIL PROTECTED] SKLineWell (SKPreferenceControllerExtensions)
+- (void)deactivateColorAndLineWells {
+ [self deactivate];
+ [super deactivateColorAndLineWells];
+}
[EMAIL PROTECTED]
Modified: trunk/SKApplicationController.h
===================================================================
--- trunk/SKApplicationController.h 2007-09-17 18:19:33 UTC (rev 2933)
+++ trunk/SKApplicationController.h 2007-09-17 21:14:13 UTC (rev 2934)
@@ -81,15 +81,6 @@
#pragma mark -
[EMAIL PROTECTED] NSView (SKScrollingExtensions)
-- (void)scrollLineUp;
-- (void)scrollLineDown;
-- (void)scrollLineRight;
-- (void)scrollLineLeft;
[EMAIL PROTECTED]
-
-#pragma mark -
-
enum {
SKSplashTypeResize,
SKSplashTypeScroll
Modified: trunk/SKApplicationController.m
===================================================================
--- trunk/SKApplicationController.m 2007-09-17 18:19:33 UTC (rev 2933)
+++ trunk/SKApplicationController.m 2007-09-17 21:14:13 UTC (rev 2934)
@@ -59,6 +59,7 @@
#import "Files_SKExtensions.h"
#import "NSGeometry_SKExtensions.h"
#import "NSTask_SKExtensions.h"
+#import "NSView_SKExtensions.h"
#define WEBSITE_URL @"http://skim-app.sourceforge.net/"
#define WIKI_URL @"http://skim-app.sourceforge.net/wiki/"
@@ -564,44 +565,6 @@
#pragma mark -
[EMAIL PROTECTED] NSView (SKScrollingExtensions)
-
-- (void)scrollLineUp {
- NSScrollView *scrollView = [self enclosingScrollView];
- NSView *documentView = [scrollView documentView];
- NSPoint point = [documentView visibleRect].origin;
- point.y -= [scrollView verticalLineScroll];
- [documentView scrollPoint:point];
-}
-
-- (void)scrollLineDown {
- NSScrollView *scrollView = [self enclosingScrollView];
- NSView *documentView = [scrollView documentView];
- NSPoint point = [documentView visibleRect].origin;
- point.y += [scrollView verticalLineScroll];
- [documentView scrollPoint:point];
-}
-
-- (void)scrollLineRight {
- NSScrollView *scrollView = [self enclosingScrollView];
- NSView *documentView = [scrollView documentView];
- NSPoint point = [documentView visibleRect].origin;
- point.x -= [scrollView horizontalLineScroll];
- [documentView scrollPoint:point];
-}
-
-- (void)scrollLineLeft {
- NSScrollView *scrollView = [self enclosingScrollView];
- NSView *documentView = [scrollView documentView];
- NSPoint point = [documentView visibleRect].origin;
- point.x += [scrollView horizontalLineScroll];
- [documentView scrollPoint:point];
-}
-
[EMAIL PROTECTED]
-
-#pragma mark -
-
@implementation SKSplashWindow
- (id)initWithType:(int)splashType atPoint:(NSPoint)point screen:(NSScreen
*)screen {
Modified: trunk/SKDocument.h
===================================================================
--- trunk/SKDocument.h 2007-09-17 18:19:33 UTC (rev 2933)
+++ trunk/SKDocument.h 2007-09-17 21:14:13 UTC (rev 2934)
@@ -145,8 +145,3 @@
- (NSDictionary *)AppleScriptPDFViewSettingsFromPDFViewSettings;
- (NSDictionary *)PDFViewSettingsFromAppleScriptPDFViewSettings;
@end
-
-
[EMAIL PROTECTED] NSView (SKExtensions)
-- (id)subviewOfClass:(Class)aClass;
[EMAIL PROTECTED]
Modified: trunk/SKDocument.m
===================================================================
--- trunk/SKDocument.m 2007-09-17 18:19:33 UTC (rev 2933)
+++ trunk/SKDocument.m 2007-09-17 21:14:13 UTC (rev 2934)
@@ -64,6 +64,7 @@
#import "SKFDFParser.h"
#import "NSData_SKExtensions.h"
#import "SKProgressController.h"
+#import "NSView_SKExtensions.h"
#define BUNDLE_DATA_FILENAME @"data"
@@ -1777,25 +1778,6 @@
@end
[EMAIL PROTECTED] NSView (SKExtensions)
-
-- (id)subviewOfClass:(Class)aClass {
- if ([self isKindOfClass:aClass])
- return self;
-
- NSEnumerator *viewEnum = [[self subviews] objectEnumerator];
- NSView *view, *subview;
-
- while (subview = [viewEnum nextObject]) {
- if (view = [subview subviewOfClass:aClass])
- return view;
- }
- return nil;
-}
-
[EMAIL PROTECTED]
-
-
@implementation NSFileManager (SKDocumentExtensions)
- (NSString *)subfileWithExtension:(NSString *)extension
inPDFBundleAtPath:(NSString *)path {
Modified: trunk/SKPreferenceController.m
===================================================================
--- trunk/SKPreferenceController.m 2007-09-17 18:19:33 UTC (rev 2933)
+++ trunk/SKPreferenceController.m 2007-09-17 21:14:13 UTC (rev 2934)
@@ -41,6 +41,7 @@
#import "NSUserDefaultsController_SKExtensions.h"
#import "SKApplicationController.h"
#import "SKLineWell.h"
+#import "NSView_SKExtensions.h"
#import <Sparkle/Sparkle.h>
static float SKDefaultFontSizes[] = {8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0,
16.0, 18.0, 20.0, 24.0, 28.0, 32.0, 48.0, 64.0};
@@ -49,35 +50,6 @@
static NSString *SKTeXEditorArguments[] = {@"-l %line \"%file\"", @"+%line
\"%file\"", @"+%line \"%file\"", @"--no-wait +%line \"%file\"", @"--no-wait
+%line \"%file\"", @"\"%file\" %line"};
[EMAIL PROTECTED] NSView (SKPreferenceControllerExtensions)
-- (void)deactivateColorAndLineWells;
[EMAIL PROTECTED]
-
[EMAIL PROTECTED] NSView (SKPreferenceControllerExtensions)
-- (void)deactivateColorAndLineWells {
- [[self subviews] makeObjectsPerformSelector:_cmd];
-}
[EMAIL PROTECTED]
-
[EMAIL PROTECTED] NSColorWell (SKPreferenceControllerExtensions)
[EMAIL PROTECTED]
-
[EMAIL PROTECTED] NSColorWell (SKPreferenceControllerExtensions)
-- (void)deactivateColorAndLineWells {
- [self deactivate];
- [super deactivateColorAndLineWells];
-}
[EMAIL PROTECTED]
-
[EMAIL PROTECTED] SKLineWell (SKPreferenceControllerExtensions)
-- (void)deactivateColorAndLineWells {
- [self deactivate];
- [super deactivateColorAndLineWells];
-}
[EMAIL PROTECTED]
-
-#pragma mark -
-
@implementation SKPreferenceController
+ (id)sharedPrefenceController {
Modified: trunk/Skim.xcodeproj/project.pbxproj
===================================================================
--- trunk/Skim.xcodeproj/project.pbxproj 2007-09-17 18:19:33 UTC (rev
2933)
+++ trunk/Skim.xcodeproj/project.pbxproj 2007-09-17 21:14:13 UTC (rev
2934)
@@ -65,6 +65,7 @@
CE209FAA0C9D38C6007C72F9 /* SKProgressController.m in Sources
*/ = {isa = PBXBuildFile; fileRef = CE209FA80C9D38C6007C72F9 /*
SKProgressController.m */; };
CE20AC9C0C9EF2F9007C72F9 /* notesTemplate.rtfd in Resources */
= {isa = PBXBuildFile; fileRef = CE20AC990C9EF2F9007C72F9 /* notesTemplate.rtfd
*/; };
CE20B1600C9EFC29007C72F9 /* notesTemplate.rtfd in CopyFiles */
= {isa = PBXBuildFile; fileRef = CE20AC990C9EF2F9007C72F9 /* notesTemplate.rtfd
*/; };
+ CE20B1950C9F23CC007C72F9 /* NSView_SKExtensions.m in Sources */
= {isa = PBXBuildFile; fileRef = CE20B1930C9F23CC007C72F9 /*
NSView_SKExtensions.m */; };
CE2BD83E0BD4132B00A5F4DB /* Sparkle.framework in Frameworks */
= {isa = PBXBuildFile; fileRef = CE2BD82A0BD4132B00A5F4DB /* Sparkle.framework
*/; };
CE2BD8450BD4135600A5F4DB /* Sparkle.framework in CopyFiles */ =
{isa = PBXBuildFile; fileRef = CE2BD82A0BD4132B00A5F4DB /* Sparkle.framework
*/; };
CE2DE4920B85D48F00D0DA12 /* SKThumbnail.m in Sources */ = {isa
= PBXBuildFile; fileRef = CE2DE4910B85D48F00D0DA12 /* SKThumbnail.m */; };
@@ -386,6 +387,8 @@
CE209FA70C9D38C6007C72F9 /* SKProgressController.h */ = {isa =
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path =
SKProgressController.h; sourceTree = "<group>"; };
CE209FA80C9D38C6007C72F9 /* SKProgressController.m */ = {isa =
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path
= SKProgressController.m; sourceTree = "<group>"; };
CE20AC990C9EF2F9007C72F9 /* notesTemplate.rtfd */ = {isa =
PBXFileReference; lastKnownFileType = wrapper.rtfd; path = notesTemplate.rtfd;
sourceTree = "<group>"; };
+ CE20B1920C9F23CC007C72F9 /* NSView_SKExtensions.h */ = {isa =
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path =
NSView_SKExtensions.h; sourceTree = "<group>"; };
+ CE20B1930C9F23CC007C72F9 /* NSView_SKExtensions.m */ = {isa =
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path
= NSView_SKExtensions.m; sourceTree = "<group>"; };
CE2BD8170BD4127A00A5F4DB /* Sparkle.xcodeproj */ = {isa =
PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name =
Sparkle.xcodeproj; path = vendorsrc/andymatuschak/Sparkle/Sparkle.xcodeproj;
sourceTree = "<group>"; };
CE2BD82A0BD4132B00A5F4DB /* Sparkle.framework */ = {isa =
PBXFileReference; lastKnownFileType = wrapper.framework; path =
Sparkle.framework; sourceTree = BUILT_PRODUCTS_DIR; };
CE2DE4900B85D48F00D0DA12 /* SKThumbnail.h */ = {isa =
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path =
SKThumbnail.h; sourceTree = "<group>"; };
@@ -856,6 +859,8 @@
CEF711A00B90B714003A2771 /*
NSUserDefaultsController_SKExtensions.m */,
CE41B2C90C08D17100E36EB7 /*
NSValue_SKExtensions.h */,
CE41B2CA0C08D17100E36EB7 /*
NSValue_SKExtensions.m */,
+ CE20B1920C9F23CC007C72F9 /*
NSView_SKExtensions.h */,
+ CE20B1930C9F23CC007C72F9 /*
NSView_SKExtensions.m */,
CE4A8BA00BB1597F004AD07D /*
NSWindowController_SKExtensions.h */,
CE4A8BA10BB15980004AD07D /*
NSWindowController_SKExtensions.m */,
CE2DE50B0B85DC4000D0DA12 /*
PDFPage_SKExtensions.h */,
@@ -1552,6 +1557,7 @@
CEA1D6EA0C9984400061A6D4 /*
SKTextWithIconCell.m in Sources */,
CEBD52ED0C9C0AE500FBF6A4 /* SKBookmark.m in
Sources */,
CE209FAA0C9D38C6007C72F9 /*
SKProgressController.m in Sources */,
+ CE20B1950C9F23CC007C72F9 /*
NSView_SKExtensions.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Skim-app-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/skim-app-commit