Skip to content

Commit

Permalink
Refactor a bit to make more consistent with other XCFixins
Browse files Browse the repository at this point in the history
  • Loading branch information
andyarvanitis committed Apr 15, 2012
1 parent 1d5f468 commit ca8cb53
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<key>CFBundleVersion</key>
<string>1</string>
<key>NSPrincipalClass</key>
<string>CurrentLineHighlighter</string>
<string>XCFixin_CurrentLineHighlighter</string>
<key>XC4Compatible</key>
<true/>
<key>XCGCReady</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,9 @@
// WITH THE SOFTWARE.

#import <Cocoa/Cocoa.h>
#import "XCFixin.h"

// Singleton instance
//
static id singleton = nil;


@interface XCodeCurrentLineHighlighter : NSObject
@interface XCFixin_XCodeCurrentLineHighlighter : NSObject
{
@private
Class sourceEditorViewClass;
Expand All @@ -48,25 +44,7 @@ @interface XCodeCurrentLineHighlighter : NSObject
@end


@implementation XCodeCurrentLineHighlighter

//-----------------------------------------------------------------------------------------------
+ (void) load { // This class method gets called when the library is loaded
//-----------------------------------------------------------------------------------------------
// This library will get loaded by every subprocess that gets spawned,
// so make sure to ignore anything but the main Xcode application.
//
if ( [[[NSProcessInfo processInfo] processName] isEqualToString:@"Xcode"] ) {

// NSLog(@"Xcode current line highlighter plugin loaded");

if (singleton == nil) {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
singleton = [[XCodeCurrentLineHighlighter alloc] init];
[pool drain];
}
}
}
@implementation XCFixin_XCodeCurrentLineHighlighter

//-----------------------------------------------------------------------------------------------
- (id) init {
Expand Down Expand Up @@ -280,5 +258,22 @@ - (void) selectionChanged:(NSNotification*)notification {
}
}

//-----------------------------------------------------------------------------------------------
+ (void) pluginDidLoad: (NSBundle*)plugin
//-----------------------------------------------------------------------------------------------
{
// Singleton instance
static id highlighter = nil;

XCFixinPreflight();

highlighter = [[XCFixin_XCodeCurrentLineHighlighter alloc] init];

if (!highlighter) {
NSLog(@"%s: highlighter init failed.\n",__FUNCTION__);
}

XCFixinPostflight();
}

@end
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
55C015D212B7BC2500354E5C /* XCFixin_CurrentLineHighlighter.m in Sources */ = {isa = PBXBuildFile; fileRef = 55C015D112B7BC2500354E5C /* XCFixin_CurrentLineHighlighter.m */; };
8D5B49B0048680CD000E48DA /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C167DFE841241C02AAC07 /* InfoPlist.strings */; };
8D5B49B4048680CD000E48DA /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7ADFEA557BF11CA2CBB /* Cocoa.framework */; };
A120F04B153A772C00FDC691 /* XCFixin.m in Sources */ = {isa = PBXBuildFile; fileRef = A120F04A153A772C00FDC691 /* XCFixin.m */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
Expand All @@ -18,6 +19,8 @@
55C015D112B7BC2500354E5C /* XCFixin_CurrentLineHighlighter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XCFixin_CurrentLineHighlighter.m; sourceTree = "<group>"; };
8D5B49B6048680CD000E48DA /* XCFixin_CurrentLineHighlighter.xcplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = XCFixin_CurrentLineHighlighter.xcplugin; sourceTree = BUILT_PRODUCTS_DIR; };
8D5B49B7048680CD000E48DA /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
A120F048153A73DE00FDC691 /* XCFixin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = XCFixin.h; path = "/Users/andy/Projects/Xcode-4-Fixins/À La Carte Projects/XCFixin_HideDistractions/../../Shared Code/XCFixin.h"; sourceTree = "<absolute>"; };
A120F04A153A772C00FDC691 /* XCFixin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = XCFixin.m; path = "/Users/andy/Projects/Xcode-4-Fixins/À La Carte Projects/XCFixin_UserScripts/../../Shared Code/XCFixin.m"; sourceTree = "<absolute>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -63,6 +66,8 @@
08FB77AFFE84173DC02AAC07 /* Classes */ = {
isa = PBXGroup;
children = (
A120F048153A73DE00FDC691 /* XCFixin.h */,
A120F04A153A772C00FDC691 /* XCFixin.m */,
55C015D112B7BC2500354E5C /* XCFixin_CurrentLineHighlighter.m */,
);
name = Classes;
Expand Down Expand Up @@ -149,6 +154,7 @@
buildActionMask = 2147483647;
files = (
55C015D212B7BC2500354E5C /* XCFixin_CurrentLineHighlighter.m in Sources */,
A120F04B153A772C00FDC691 /* XCFixin.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down

0 comments on commit ca8cb53

Please sign in to comment.