forked from ccgus/flycode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
4,665 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,178 @@ | ||
#import <Cocoa/Cocoa.h> | ||
|
||
// | ||
// This object is passed during initialization. You must register your | ||
// available functionality with one of the methods implemented by the | ||
// plug-in controller | ||
// | ||
|
||
@class CodaTextView; | ||
|
||
@interface CodaPlugInsController : NSObject | ||
{ | ||
NSMutableArray* plugins; | ||
NSMutableDictionary* loadedMenuItemsDict; | ||
} | ||
|
||
// The following methods are available to plugin developers | ||
// in Coda 1.0.4 and later: | ||
|
||
- (NSString*)codaVersion:(id)sender; | ||
|
||
// codaVersion returns the version of Coda that is hosting the plugin, | ||
// such as "1.0.4" | ||
|
||
- (void)registerActionWithTitle:(NSString*)title target:(id)target selector:(SEL)selector; | ||
|
||
// registerActionWithTitle:target:selector: exposes to the user a plugin action (a menu item) | ||
// with the given title, that will perform the given selector on the target | ||
|
||
- (CodaTextView*)focusedTextView:(id)sender; | ||
|
||
// focusedTextView returns to the plugin an abstract object representing the text view | ||
// in Coda that currently has focus | ||
|
||
// ### | ||
// The following methods are available to plugin developers | ||
// in Coda 1.5.2 and later: | ||
|
||
- (int)apiVersion; | ||
|
||
// apiVersion returns 2 as of Coda 1.5.2. It does not exist in previous versions. | ||
|
||
- (void)displayHTMLString:(NSString*)html; | ||
|
||
- (void)registerActionWithTitle:(NSString*)title | ||
underSubmenuWithTitle:(NSString*)submenuTitle | ||
target:(id)target | ||
selector:(SEL)selector | ||
representedObject:(id)repOb | ||
keyEquivalent:(NSString*)keyEquivalent | ||
pluginName:(NSString*)aName; | ||
|
||
- (void)saveAll; | ||
|
||
@end | ||
|
||
|
||
// | ||
// This is your hook to a text view in Coda. You can use this to provide | ||
// manipulation of files. | ||
// | ||
|
||
@class StudioPlainTextEditor; | ||
|
||
@interface CodaTextView : NSObject | ||
{ | ||
StudioPlainTextEditor* editor; | ||
} | ||
|
||
// The following methods are available to plugin developers | ||
// in Coda 1.0.4 and later: | ||
|
||
- (void)insertText:(NSString*)inText; | ||
|
||
// insertText: inserts the given string at the insertion point | ||
|
||
- (void)replaceCharactersInRange:(NSRange)aRange withString:(NSString *)aString; | ||
|
||
// replaces characters in the given range with the given string | ||
|
||
- (NSRange)selectedRange; | ||
|
||
// selectedRange returns the range of currently selected characters | ||
|
||
- (NSString*)selectedText; | ||
|
||
// selectedText returns the currently selected text, or nil if none | ||
|
||
- (void)setSelectedRange:(NSRange)range; | ||
|
||
// setSelectedRange: selects the given character range | ||
|
||
// The following methods are available to plugin developers | ||
// in Coda 1.5.2 and later: | ||
|
||
- (NSString*)currentLine; | ||
|
||
// currentLine returns a string containing the entire content of the | ||
// line that the insertion point is on | ||
|
||
- (unsigned int)currentLineNumber; | ||
|
||
// currentLineNumber returns the line number corresponding to the | ||
// location of the insertion point | ||
|
||
- (void)deleteSelection; | ||
|
||
// deleteSelection deletes the selected text range | ||
|
||
- (NSString*)lineEnding; | ||
|
||
// lineEnding returns the current line ending of the file | ||
|
||
- (NSRange)rangeOfCurrentLine; | ||
|
||
// Returns the character range of the entire line the insertion point | ||
// is on | ||
|
||
- (unsigned int)startOfLine; | ||
|
||
// startOfLine returns the character index (relative to the beginning of the document) | ||
// of the start of the line the insertion point is on | ||
|
||
- (NSString*)string; | ||
|
||
// string returns the entire document as a plain string | ||
|
||
- (NSString*)stringWithRange:(NSRange)range; | ||
|
||
// stringWithRange: returns the specified ranged substring of the entire document | ||
|
||
- (int)tabWidth; | ||
|
||
//tabWidth: returns the width of tabs as spaces | ||
|
||
- (NSRange)previousWordRange; | ||
|
||
// previousWordRange: returns the range of the word previous to the insertion point | ||
|
||
- (BOOL)usesTabs; | ||
|
||
// usesTabs returns if the editor is currently uses tabs instead of spaces for indentation | ||
|
||
- (void)save; | ||
|
||
// saves the document you are working on | ||
|
||
- (void)beginUndoGrouping; | ||
- (void)endUndoGrouping; | ||
|
||
// allows for multiple text manipulations to be considered one "undo/redo" | ||
// operation | ||
|
||
- (NSWindow*)window; | ||
|
||
// returns the window the editor is located in (useful for showing sheets) | ||
|
||
// - (NSString*)path; - Coming in the next beta | ||
|
||
// returns the path to the text view's file (may be nil for unsaved documents) | ||
|
||
@end | ||
|
||
|
||
// | ||
// Your plug-in must conform to this protocol | ||
// | ||
|
||
@protocol CodaPlugIn | ||
|
||
- (id)initWithPlugInController:(CodaPlugInsController*)aController bundle:(NSBundle*)yourBundle; | ||
- (NSString*)name; | ||
|
||
@end | ||
|
||
|
||
|
||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>English</string> | ||
<key>CFBundleExecutable</key> | ||
<string>${EXECUTABLE_NAME}</string> | ||
<key>CFBundleName</key> | ||
<string>${PRODUCT_NAME}</string> | ||
<key>CFBundleIconFile</key> | ||
<string></string> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.flyingmeat.Coda.JSCocoaLoader</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundlePackageType</key> | ||
<string>BNDL</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleVersion</key> | ||
<string>1.0</string> | ||
<key>NSPrincipalClass</key> | ||
<string>JSCocoaLoaderPlugIn</string> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// | ||
// BridgeSupportController.h | ||
// JSCocoa | ||
// | ||
// Created by Patrick Geiller on 08/07/08. | ||
// Copyright 2008 __MyCompanyName__. All rights reserved. | ||
// | ||
|
||
#import <Cocoa/Cocoa.h> | ||
|
||
@interface BridgeSupportController : NSObject { | ||
|
||
|
||
NSMutableArray* paths; | ||
NSMutableArray* xmlDocuments; | ||
|
||
NSMutableDictionary* hash; | ||
} | ||
|
||
+ (id)sharedController; | ||
|
||
- (BOOL)loadBridgeSupport:(NSString*)path; | ||
- (BOOL)isBridgeSupportLoaded:(NSString*)path; | ||
- (NSUInteger)bridgeSupportIndexForString:(NSString*)string; | ||
|
||
/* | ||
- (NSString*)query:(NSString*)name withType:(NSString*)type; | ||
- (NSString*)query:(NSString*)name withType:(NSString*)type inBridgeSupportFile:(NSString*)file; | ||
*/ | ||
- (NSString*)queryName:(NSString*)name; | ||
- (NSString*)queryName:(NSString*)name type:(NSString*)type; | ||
|
||
|
||
@end |
Oops, something went wrong.