diff options
author | rowanbeentje <rowan@beent.je> | 2010-07-21 21:44:59 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2010-07-21 21:44:59 +0000 |
commit | eb29a57a6860961c0caa00787d779f4cb4117c90 (patch) | |
tree | 1ccdd5da2281f5b0b3b98792176f7352e97cc192 | |
parent | 1a31d19e675a18d93bf294c765af83a9b8557821 (diff) | |
download | sequelpro-eb29a57a6860961c0caa00787d779f4cb4117c90.tar.gz sequelpro-eb29a57a6860961c0caa00787d779f4cb4117c90.tar.bz2 sequelpro-eb29a57a6860961c0caa00787d779f4cb4117c90.zip |
Add the BWToolkit.ibplugin to the Resources directory of BWToolkitFramework.framework
- Removed via builds scripts, so not included in the final product
- Allows loading .xibs using BWToolkit items without purposefully installing the .ibplugin beforehand
- Allows us to update the .ibplugin as we update the framework versions, to keep them in sync
Should allow people to load the Sequel Pro .xcodeproj and start building it more easily.
201 files changed, 1431 insertions, 0 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/BWToolkitFramework b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/BWToolkitFramework new file mode 120000 index 00000000..07148544 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/BWToolkitFramework @@ -0,0 +1 @@ +Versions/Current/BWToolkitFramework
\ No newline at end of file diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Headers b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Headers new file mode 120000 index 00000000..a177d2a6 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Headers @@ -0,0 +1 @@ +Versions/Current/Headers
\ No newline at end of file diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Resources b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Resources new file mode 120000 index 00000000..953ee36f --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Resources @@ -0,0 +1 @@ +Versions/Current/Resources
\ No newline at end of file diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/BWToolkitFramework b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/BWToolkitFramework Binary files differnew file mode 100755 index 00000000..8fea2fcd --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/BWToolkitFramework diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredButton.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredButton.h new file mode 100644 index 00000000..29edb975 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredButton.h @@ -0,0 +1,21 @@ +// +// BWAnchoredButton.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWAnchoredButton : NSButton +{ + BOOL isAtLeftEdgeOfBar; + BOOL isAtRightEdgeOfBar; + NSPoint topAndLeftInset; +} + +@property BOOL isAtLeftEdgeOfBar; +@property BOOL isAtRightEdgeOfBar; + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredButtonBar.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredButtonBar.h new file mode 100644 index 00000000..4ff4a737 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredButtonBar.h @@ -0,0 +1,27 @@ +// +// BWAnchoredButtonBar.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWAnchoredButtonBar : NSView +{ + BOOL isResizable, isAtBottom, handleIsRightAligned; + int selectedIndex; + id splitViewDelegate; +} + +@property BOOL isResizable, isAtBottom, handleIsRightAligned; +@property int selectedIndex; + +// The mode of this bar with a resize handle makes use of some NSSplitView delegate methods. Use the splitViewDelegate for any custom delegate implementations +// you'd like to provide. +@property (assign) id splitViewDelegate; + ++ (BOOL)wasBorderedBar; + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredButtonCell.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredButtonCell.h new file mode 100644 index 00000000..3a157e8c --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredButtonCell.h @@ -0,0 +1,16 @@ +// +// BWAnchoredButtonCell.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWAnchoredButtonCell : NSButtonCell +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredPopUpButton.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredPopUpButton.h new file mode 100644 index 00000000..150db433 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredPopUpButton.h @@ -0,0 +1,21 @@ +// +// BWAnchoredPopUpButton.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWAnchoredPopUpButton : NSPopUpButton +{ + BOOL isAtLeftEdgeOfBar; + BOOL isAtRightEdgeOfBar; + NSPoint topAndLeftInset; +} + +@property BOOL isAtLeftEdgeOfBar; +@property BOOL isAtRightEdgeOfBar; + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredPopUpButtonCell.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredPopUpButtonCell.h new file mode 100644 index 00000000..8de4fe89 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredPopUpButtonCell.h @@ -0,0 +1,16 @@ +// +// BWAnchoredPopUpButtonCell.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWAnchoredPopUpButtonCell : NSPopUpButtonCell +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWGradientBox.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWGradientBox.h new file mode 100644 index 00000000..6bf9eb16 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWGradientBox.h @@ -0,0 +1,24 @@ +// +// BWGradientBox.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWGradientBox : NSView +{ + NSColor *fillStartingColor, *fillEndingColor, *fillColor; + NSColor *topBorderColor, *bottomBorderColor; + float topInsetAlpha, bottomInsetAlpha; + + BOOL hasTopBorder, hasBottomBorder, hasGradient, hasFillColor; +} + +@property (nonatomic, retain) NSColor *fillStartingColor, *fillEndingColor, *fillColor, *topBorderColor, *bottomBorderColor; +@property float topInsetAlpha, bottomInsetAlpha; +@property BOOL hasTopBorder, hasBottomBorder, hasGradient, hasFillColor; + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWHyperlinkButton.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWHyperlinkButton.h new file mode 100644 index 00000000..768a2e72 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWHyperlinkButton.h @@ -0,0 +1,18 @@ +// +// BWHyperlinkButton.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWHyperlinkButton : NSButton +{ + NSString *urlString; +} + +@property (copy, nonatomic) NSString *urlString; + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWHyperlinkButtonCell.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWHyperlinkButtonCell.h new file mode 100644 index 00000000..c133b08b --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWHyperlinkButtonCell.h @@ -0,0 +1,16 @@ +// +// BWHyperlinkButtonCell.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWHyperlinkButtonCell : NSButtonCell +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWInsetTextField.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWInsetTextField.h new file mode 100644 index 00000000..f572e3e5 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWInsetTextField.h @@ -0,0 +1,16 @@ +// +// BWInsetTextField.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWInsetTextField : NSTextField +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWSelectableToolbar.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWSelectableToolbar.h new file mode 100644 index 00000000..318fdc98 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWSelectableToolbar.h @@ -0,0 +1,36 @@ +// +// BWSelectableToolbar.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@class BWSelectableToolbarHelper; + +// Notification that gets sent when a toolbar item has been clicked. You can get the button that was clicked by getting the object +// for the key @"BWClickedItem" in the supplied userInfo dictionary. +extern NSString * const BWSelectableToolbarItemClickedNotification; + +@interface BWSelectableToolbar : NSToolbar +{ + BWSelectableToolbarHelper *helper; + NSMutableArray *itemIdentifiers; + NSMutableDictionary *itemsByIdentifier, *enabledByIdentifier; + BOOL inIB; + + // For the IB inspector + int selectedIndex; + BOOL isPreferencesToolbar; +} + +// Call one of these methods to set the active tab. +- (void)setSelectedItemIdentifier:(NSString *)itemIdentifier; // Use if you want an action in the tabbed window to change the tab. +- (void)setSelectedItemIdentifierWithoutAnimation:(NSString *)itemIdentifier; // Use if you want to show the window with a certain item selected. + +// Programmatically disable or enable a toolbar item. +- (void)setEnabled:(BOOL)flag forIdentifier:(NSString *)itemIdentifier; + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWSheetController.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWSheetController.h new file mode 100644 index 00000000..bfa7c57c --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWSheetController.h @@ -0,0 +1,31 @@ +// +// BWSheetController.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWSheetController : NSObject +{ + NSWindow *sheet; + NSWindow *parentWindow; + id delegate; +} + +@property (nonatomic, retain) IBOutlet NSWindow *sheet, *parentWindow; +@property (nonatomic, retain) IBOutlet id delegate; + +- (IBAction)openSheet:(id)sender; +- (IBAction)closeSheet:(id)sender; +- (IBAction)messageDelegateAndCloseSheet:(id)sender; + +// The optional delegate should implement the method: +// - (BOOL)shouldCloseSheet:(id)sender +// Return YES if you want the sheet to close after the button click, NO if it shouldn't close. The sender +// object is the button that requested the close. This is helpful because in the event that there are multiple buttons +// hooked up to the messageDelegateAndCloseSheet: method, you can distinguish which button called the method. + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWSplitView.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWSplitView.h new file mode 100644 index 00000000..ed9731a6 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWSplitView.h @@ -0,0 +1,45 @@ +// +// BWSplitView.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) and Fraser Kuyvenhoven. +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWSplitView : NSSplitView +{ + NSColor *color; + BOOL colorIsEnabled, checkboxIsEnabled, dividerCanCollapse, collapsibleSubviewCollapsed; + id secondaryDelegate; + NSMutableDictionary *minValues, *maxValues, *minUnits, *maxUnits; + NSMutableDictionary *resizableSubviewPreferredProportion, *nonresizableSubviewPreferredSize; + NSArray *stateForLastPreferredCalculations; + int collapsiblePopupSelection; + float uncollapsedSize; + + // Collapse button + NSButton *toggleCollapseButton; + BOOL isAnimating; +} + +@property (retain) NSMutableDictionary *minValues, *maxValues, *minUnits, *maxUnits; +@property (retain) NSMutableDictionary *resizableSubviewPreferredProportion, *nonresizableSubviewPreferredSize; +@property (retain) NSArray *stateForLastPreferredCalculations; +@property (retain) NSButton *toggleCollapseButton; +@property (assign) id secondaryDelegate; +@property BOOL collapsibleSubviewCollapsed; +@property int collapsiblePopupSelection; +@property BOOL dividerCanCollapse; + +// The split view divider color +@property (copy) NSColor *color; + +// Flag for whether a custom divider color is enabled. If not, the standard divider color is used. +@property BOOL colorIsEnabled; + +// Call this method to collapse or expand a subview configured as collapsible in the IB inspector. +- (IBAction)toggleCollapse:(id)sender; + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWStyledTextField.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWStyledTextField.h new file mode 100644 index 00000000..dda90170 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWStyledTextField.h @@ -0,0 +1,33 @@ +// +// BWStyledTextField.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWStyledTextField : NSTextField +{ + +} + +- (BOOL)hasGradient; +- (void)setHasGradient:(BOOL)flag; +- (NSColor *)startingColor; +- (void)setStartingColor:(NSColor *)color; +- (NSColor *)endingColor; +- (void)setEndingColor:(NSColor *)color; + +- (NSColor *)solidColor; +- (void)setSolidColor:(NSColor *)color; + +- (BOOL)hasShadow; +- (void)setHasShadow:(BOOL)flag; +- (BOOL)shadowIsBelow; +- (void)setShadowIsBelow:(BOOL)flag; +- (NSColor *)shadowColor; +- (void)setShadowColor:(NSColor *)color; + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWStyledTextFieldCell.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWStyledTextFieldCell.h new file mode 100644 index 00000000..ae0924b5 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWStyledTextFieldCell.h @@ -0,0 +1,23 @@ +// +// BWStyledTextFieldCell.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWStyledTextFieldCell : NSTextFieldCell +{ + BOOL shadowIsBelow, hasShadow, hasGradient; + NSColor *shadowColor, *startingColor, *endingColor, *solidColor; + + NSShadow *shadow; + NSMutableDictionary *previousAttributes; +} + +@property BOOL shadowIsBelow, hasShadow, hasGradient; +@property (nonatomic, retain) NSColor *shadowColor, *startingColor, *endingColor, *solidColor; + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTexturedSlider.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTexturedSlider.h new file mode 100755 index 00000000..54356bf5 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTexturedSlider.h @@ -0,0 +1,25 @@ +// +// BWTexturedSlider.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWTexturedSlider : NSSlider +{ + int trackHeight, indicatorIndex; + NSRect sliderCellRect; + NSButton *minButton, *maxButton; +} + +@property int indicatorIndex; +@property (retain) NSButton *minButton; +@property (retain) NSButton *maxButton; + +- (int)trackHeight; +- (void)setTrackHeight:(int)newTrackHeight; + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTexturedSliderCell.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTexturedSliderCell.h new file mode 100755 index 00000000..184dd8ec --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTexturedSliderCell.h @@ -0,0 +1,19 @@ +// +// BWTexturedSliderCell.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWTexturedSliderCell : NSSliderCell +{ + BOOL isPressed; + int trackHeight; +} + +@property int trackHeight; + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTokenAttachmentCell.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTokenAttachmentCell.h new file mode 100644 index 00000000..8d69de58 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTokenAttachmentCell.h @@ -0,0 +1,17 @@ +// +// BWTokenAttachmentCell.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> +#import "NSTokenAttachmentCell.h" + +@interface BWTokenAttachmentCell : NSTokenAttachmentCell +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTokenField.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTokenField.h new file mode 100644 index 00000000..907bbc9e --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTokenField.h @@ -0,0 +1,16 @@ +// +// BWTokenField.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWTokenField : NSTokenField +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTokenFieldCell.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTokenFieldCell.h new file mode 100644 index 00000000..0ea0f04a --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTokenFieldCell.h @@ -0,0 +1,16 @@ +// +// BWTokenFieldCell.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWTokenFieldCell : NSTokenFieldCell +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWToolbarItem.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWToolbarItem.h new file mode 100644 index 00000000..06f0a6d1 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWToolbarItem.h @@ -0,0 +1,16 @@ +// +// BWToolbarItem.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWToolbarItem : NSToolbarItem +{ + NSString *identifierString; +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWToolbarShowColorsItem.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWToolbarShowColorsItem.h new file mode 100644 index 00000000..517f60df --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWToolbarShowColorsItem.h @@ -0,0 +1,16 @@ +// +// BWToolbarShowColorsItem.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWToolbarShowColorsItem : NSToolbarItem +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWToolbarShowFontsItem.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWToolbarShowFontsItem.h new file mode 100644 index 00000000..8c7ec5d5 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWToolbarShowFontsItem.h @@ -0,0 +1,16 @@ +// +// BWToolbarShowFontsItem.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWToolbarShowFontsItem : NSToolbarItem +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWToolkitFramework.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWToolkitFramework.h new file mode 100644 index 00000000..38b6ea3a --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWToolkitFramework.h @@ -0,0 +1,47 @@ +// +// BWToolkitFramework.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +// This is a convenience header for importing the BWToolkit framework into your classes. + +#import "BWAnchoredButton.h" +#import "BWAnchoredButtonBar.h" +#import "BWAnchoredButtonCell.h" +#import "BWAnchoredPopUpButton.h" +#import "BWAnchoredPopUpButtonCell.h" +#import "BWGradientBox.h" +#import "BWHyperlinkButton.h" +#import "BWHyperlinkButtonCell.h" +#import "BWInsetTextField.h" +#import "BWSelectableToolbar.h" +#import "BWSheetController.h" +#import "BWSplitView.h" +#import "BWStyledTextField.h" +#import "BWStyledTextFieldCell.h" +#import "BWTexturedSlider.h" +#import "BWTexturedSliderCell.h" +#import "BWTokenAttachmentCell.h" +#import "BWTokenField.h" +#import "BWTokenFieldCell.h" +#import "BWToolbarItem.h" +#import "BWToolbarShowColorsItem.h" +#import "BWToolbarShowFontsItem.h" +#import "BWTransparentButton.h" +#import "BWTransparentButtonCell.h" +#import "BWTransparentCheckbox.h" +#import "BWTransparentCheckboxCell.h" +#import "BWTransparentPopUpButton.h" +#import "BWTransparentPopUpButtonCell.h" +#import "BWTransparentScroller.h" +#import "BWTransparentScrollView.h" +#import "BWTransparentSlider.h" +#import "BWTransparentSliderCell.h" +#import "BWTransparentTableView.h" +#import "BWTransparentTableViewCell.h" +#import "BWTransparentTextFieldCell.h" +#import "BWUnanchoredButton.h" +#import "BWUnanchoredButtonCell.h" diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentButton.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentButton.h new file mode 100644 index 00000000..46c64b6e --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentButton.h @@ -0,0 +1,16 @@ +// +// BWTransparentButton.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWTransparentButton : NSButton +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentButtonCell.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentButtonCell.h new file mode 100644 index 00000000..4dbc42e6 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentButtonCell.h @@ -0,0 +1,17 @@ +// +// BWTransparentButtonCell.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> +#import "BWTransparentButton.h" + +@interface BWTransparentButtonCell : NSButtonCell +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentCheckbox.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentCheckbox.h new file mode 100644 index 00000000..0ee83192 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentCheckbox.h @@ -0,0 +1,16 @@ +// +// BWTransparentCheckbox.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWTransparentCheckbox : NSButton +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentCheckboxCell.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentCheckboxCell.h new file mode 100644 index 00000000..b126b3e8 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentCheckboxCell.h @@ -0,0 +1,17 @@ +// +// BWTransparentCheckboxCell.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> +#import "BWTransparentCheckbox.h" + +@interface BWTransparentCheckboxCell : NSButtonCell +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentPopUpButton.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentPopUpButton.h new file mode 100644 index 00000000..9512c6f6 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentPopUpButton.h @@ -0,0 +1,16 @@ +// +// BWTransparentPopUpButton.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWTransparentPopUpButton : NSPopUpButton +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentPopUpButtonCell.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentPopUpButtonCell.h new file mode 100644 index 00000000..03aa9cb3 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentPopUpButtonCell.h @@ -0,0 +1,16 @@ +// +// BWTransparentPopUpButtonCell.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWTransparentPopUpButtonCell : NSPopUpButtonCell +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentScrollView.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentScrollView.h new file mode 100644 index 00000000..1deeed5c --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentScrollView.h @@ -0,0 +1,16 @@ +// +// BWTransparentScrollView.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWTransparentScrollView : NSScrollView +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentScroller.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentScroller.h new file mode 100644 index 00000000..661e5fe2 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentScroller.h @@ -0,0 +1,16 @@ +// +// BWTransparentScroller.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWTransparentScroller : NSScroller +{ + BOOL isVertical; +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentSlider.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentSlider.h new file mode 100644 index 00000000..51de73d6 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentSlider.h @@ -0,0 +1,16 @@ +// +// BWTransparentSlider.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWTransparentSlider : NSSlider +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentSliderCell.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentSliderCell.h new file mode 100644 index 00000000..7c5e1466 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentSliderCell.h @@ -0,0 +1,16 @@ +// +// BWTransparentSliderCell.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWTransparentSliderCell : NSSliderCell +{ + BOOL isPressed; +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentTableView.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentTableView.h new file mode 100644 index 00000000..badebb05 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentTableView.h @@ -0,0 +1,16 @@ +// +// BWTransparentTableView.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWTransparentTableView : NSTableView +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentTableViewCell.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentTableViewCell.h new file mode 100644 index 00000000..ed55f0f0 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentTableViewCell.h @@ -0,0 +1,16 @@ +// +// BWTransparentTableViewCell.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWTransparentTableViewCell : NSTextFieldCell +{ + BOOL mIsEditingOrSelecting; +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentTextFieldCell.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentTextFieldCell.h new file mode 100644 index 00000000..e44b6cea --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWTransparentTextFieldCell.h @@ -0,0 +1,16 @@ +// +// BWTransparentTextFieldCell.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWTransparentTextFieldCell : NSTextFieldCell +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWUnanchoredButton.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWUnanchoredButton.h new file mode 100644 index 00000000..03ab6211 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWUnanchoredButton.h @@ -0,0 +1,16 @@ +// +// BWUnanchoredButton.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface BWUnanchoredButton : NSButton +{ + NSPoint topAndLeftInset; +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWUnanchoredButtonCell.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWUnanchoredButtonCell.h new file mode 100644 index 00000000..8204cb0d --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/BWUnanchoredButtonCell.h @@ -0,0 +1,17 @@ +// +// BWUnanchoredButtonCell.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> +#import "BWAnchoredButtonCell.h" + +@interface BWUnanchoredButtonCell : BWAnchoredButtonCell +{ + +} + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSApplication+BWAdditions.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSApplication+BWAdditions.h new file mode 100644 index 00000000..50280490 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSApplication+BWAdditions.h @@ -0,0 +1,15 @@ +// +// NSApplication+BWAdditions.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface NSApplication (BWAdditions) + ++ (BOOL)bwIsOnLeopard; + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSColor+BWAdditions.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSColor+BWAdditions.h new file mode 100644 index 00000000..06a0bc25 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSColor+BWAdditions.h @@ -0,0 +1,16 @@ +// +// NSColor+BWAdditions.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface NSColor (BWAdditions) + +// Use this method to draw 1 px wide lines independent of scale factor. Handy for resolution independent drawing. Still needs some work - there are issues with drawing at the edges of views. +- (void)bwDrawPixelThickLineAtPosition:(int)posInPixels withInset:(int)insetInPixels inRect:(NSRect)aRect inView:(NSView *)view horizontal:(BOOL)isHorizontal flip:(BOOL)shouldFlip; + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSImage+BWAdditions.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSImage+BWAdditions.h new file mode 100644 index 00000000..b876023e --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSImage+BWAdditions.h @@ -0,0 +1,19 @@ +// +// NSImage+BWAdditions.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface NSImage (BWAdditions) + +// Draw a solid color over an image - taking into account alpha. Useful for coloring template images. +- (NSImage *)bwTintedImageWithColor:(NSColor *)tint; + +// Rotate an image 90 degrees clockwise or counterclockwise +- (NSImage *)bwRotateImage90DegreesClockwise:(BOOL)clockwise; + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSTokenAttachment.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSTokenAttachment.h new file mode 100644 index 00000000..7f34df21 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSTokenAttachment.h @@ -0,0 +1,22 @@ +/* + * Generated by class-dump 3.1.2. + * + * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2007 by Steve Nygard. + */ + +#import <Cocoa/Cocoa.h> + +@interface NSTokenAttachment : NSTextAttachment +{ + id _delegate; +} + +- (id)initWithDelegate:(id)fp8; +- (void)encodeWithCoder:(id)fp8; +- (id)initWithCoder:(id)fp8; +- (id)attachmentCell; +- (id)delegate; +- (void)setDelegate:(id)fp8; + +@end + diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSTokenAttachmentCell.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSTokenAttachmentCell.h new file mode 100644 index 00000000..0f564f66 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSTokenAttachmentCell.h @@ -0,0 +1,52 @@ +/* + * Generated by class-dump 3.1.2. + * + * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2007 by Steve Nygard. + */ + +#import <Cocoa/Cocoa.h> + +@interface NSTokenAttachmentCell : NSTextAttachmentCell +{ + id _representedObject; + id _textColor; + id _reserved; + struct { + unsigned int _selected:1; + unsigned int _edgeStyle:2; + unsigned int _reserved:29; + } _tacFlags; +} + ++ (void)initialize; +- (id)initTextCell:(id)fp8; +- (id)init; +- (void)dealloc; +- (id)representedObject; +- (void)setRepresentedObject:(id)fp8; +- (int)interiorBackgroundStyle; +- (BOOL)_hasMenu; +- (id)tokenForegroundColor; +- (id)tokenBackgroundColor; +- (id)textColor; +- (void)setTextColor:(id)fp8; +- (id)pullDownImage; +- (id)menu; +- (NSSize)cellSizeForBounds:(NSRect)fp8; +- (NSSize)cellSize; +- (NSRect)drawingRectForBounds:(NSRect)fp8; +- (NSRect)titleRectForBounds:(NSRect)fp8; +- (NSRect)cellFrameForTextContainer:(id)fp8 proposedLineFragment:(NSRect)fp12 glyphPosition:(NSPoint)fp28 characterIndex:(unsigned int)fp36; +- (NSPoint)cellBaselineOffset; +- (NSRect)pullDownRectForBounds:(NSRect)fp8; +- (void)drawTokenWithFrame:(NSRect)fp8 inView:(id)fp24; +- (void)drawInteriorWithFrame:(NSRect)fp8 inView:(id)fp24; +- (void)drawWithFrame:(NSRect)fp8 inView:(id)fp24; +- (void)drawWithFrame:(NSRect)fp8 inView:(id)fp24 characterIndex:(unsigned int)fp28 layoutManager:(id)fp32; +- (void)encodeWithCoder:(id)fp8; +- (id)initWithCoder:(id)fp8; +- (BOOL)wantsToTrackMouseForEvent:(id)fp8 inRect:(NSRect)fp12 ofView:(id)fp28 atCharacterIndex:(unsigned int)fp32; +- (BOOL)trackMouse:(id)fp8 inRect:(NSRect)fp12 ofView:(id)fp28 atCharacterIndex:(unsigned int)fp32 untilMouseUp:(BOOL)fp36; + +@end + diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSView+BWAdditions.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSView+BWAdditions.h new file mode 100644 index 00000000..21a4c700 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSView+BWAdditions.h @@ -0,0 +1,18 @@ +// +// NSView+BWAdditions.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface NSView (BWAdditions) + +- (void)bwBringToFront; + +// Returns animator proxy and calls setWantsLayer:NO on the view when the animation completes +- (id)bwAnimator; + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSWindow+BWAdditions.h b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSWindow+BWAdditions.h new file mode 100644 index 00000000..ed86396e --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Headers/NSWindow+BWAdditions.h @@ -0,0 +1,16 @@ +// +// NSWindow+BWAdditions.h +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <Cocoa/Cocoa.h> + +@interface NSWindow (BWAdditions) + +- (void)bwResizeToSize:(NSSize)newSize animate:(BOOL)animateFlag; +- (BOOL)bwIsTextured; + +@end diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/ButtonBarPullDownArrow.pdf b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/ButtonBarPullDownArrow.pdf Binary files differnew file mode 100644 index 00000000..79350a27 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/ButtonBarPullDownArrow.pdf diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/GradientSplitViewDimpleBitmap.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/GradientSplitViewDimpleBitmap.tif Binary files differnew file mode 100644 index 00000000..52c9d818 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/GradientSplitViewDimpleBitmap.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/GradientSplitViewDimpleVector.pdf b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/GradientSplitViewDimpleVector.pdf Binary files differnew file mode 100644 index 00000000..2f430e3e --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/GradientSplitViewDimpleVector.pdf diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/Info.plist b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/Info.plist new file mode 100644 index 00000000..3f250ff7 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/Info.plist @@ -0,0 +1,22 @@ +<?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>BWToolkitFramework</string> + <key>CFBundleIdentifier</key> + <string>com.brandonwalkin.BWToolkitFramework</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundlePackageType</key> + <string>FMWK</string> + <key>CFBundleSignature</key> + <string>????</string> + <key>CFBundleVersion</key> + <string>1.2.5</string> + <key>NSPrincipalClass</key> + <string>BWToolkit</string> +</dict> +</plist> diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/Library-SheetController.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/Library-SheetController.tif Binary files differnew file mode 100644 index 00000000..a7089a06 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/Library-SheetController.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/License.rtf b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/License.rtf new file mode 100644 index 00000000..1b1e793b --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/License.rtf @@ -0,0 +1,18 @@ +{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf250 +{\fonttbl\f0\fnil\fcharset0 Verdana;\f1\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red73\green73\blue73;} +{\*\listtable{\list\listtemplateid1\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid1\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid1}} +{\*\listoverridetable{\listoverride\listid1\listoverridecount0\ls1}} +\deftab720 +\pard\pardeftab720\sl400\sa280\ql\qnatural + +\f0\fs24 \cf2 Copyright (c) 2010, Brandon Walkin +\f1 \uc0\u8232 +\f0 All rights reserved.\ +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\ +\pard\tx220\tx720\pardeftab720\li720\fi-720\sl400\sa20\ql\qnatural +\ls1\ilvl0\cf2 {\listtext \'95 }Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\ +{\listtext \'95 }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.\ +{\listtext \'95 }Neither the name of the Brandon Walkin nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\ +\pard\pardeftab720\sl400\sa280\ql\qnatural +\cf2 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.}
\ No newline at end of file diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/Release Notes.rtf b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/Release Notes.rtf new file mode 100644 index 00000000..b32304cb --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/Release Notes.rtf @@ -0,0 +1,65 @@ +{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf250 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red100\green56\blue32;\red196\green26\blue22;} +{\*\listtable{\list\listtemplateid1\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid1\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid1} +{\list\listtemplateid2\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid101\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid2} +{\list\listtemplateid3\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid201\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid3}} +{\*\listoverridetable{\listoverride\listid1\listoverridecount0\ls1}{\listoverride\listid2\listoverridecount0\ls2}{\listoverride\listid3\listoverridecount0\ls3}} +\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural + +\f0\b\fs54 \cf0 BWToolkit +\fs36 \ + +\b0 Plugin for Interface Builder 3\ + +\b \ +\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural + +\b0\fs30 \cf0 Version 1.2.5\ +January 20, 2010\ +\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural + +\fs32 \cf0 \ +\ +\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural + +\b\fs36 \cf0 Installation +\b0\fs28 \ +\ +Note: If you're building on 10.5, you'll need to build BWToolkit from source.\ +\ +Step 1. Double click the BWToolkit.ibplugin file to load the plugin into Interface Builder\ +\ +Note: Interface Builder will reference this file rather than copy it to another location. Keep the .ibplugin file in a location where it won't be deleted.\ +\ +Step 2. In the Xcode project you want to use the plugin in:\ +\pard\tx220\tx720\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\li720\fi-720\ql\qnatural\pardirnatural +\ls1\ilvl0\cf0 {\listtext \'95 }Right click the Linked Frameworks folder and click Add -> Existing Frameworks. Select the BWToolkitFramework.framework directory.\ +\pard\tx220\tx720\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\li720\fi-720\ql\qnatural\pardirnatural +\ls2\ilvl0\cf0 {\listtext \'95 }Right click your target and click Add -> New Build Phase -> New Copy Files Build Phase. For destination, select Frameworks, leave the path field blank, and close the window.\ +\pard\tx220\tx720\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\li720\fi-720\ql\qnatural\pardirnatural +\ls3\ilvl0\cf0 {\listtext \'95 }Drag the BWToolkit framework from Linked Frameworks to the Copy Files build phase you just added.\ +\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural +\cf0 \ +Note: You'll have to repeat step 2 for each project you want to use BWToolkit in.\ +\ +If you need to reference BWToolkit objects in your classes, you can import the main header like so:\ +\ +\pard\tx560\pardeftab560\ql\qnatural\pardirnatural + +\f1\fs24 \cf2 \CocoaLigature0 #import \cf3 <BWToolkitFramework/BWToolkitFramework.h> +\f0\fs28 \cf0 \CocoaLigature1 \ +\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural + +\fs32 \cf0 \ +\ +\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural + +\b\fs36 \cf0 License\ +\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural + +\b0\fs28 \cf0 \ +All source code is provided under the three clause BSD license. Attribution is appreciated but by no means required.\ +\ +\ +}
\ No newline at end of file diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderPhotoLarge.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderPhotoLarge.tif Binary files differnew file mode 100644 index 00000000..69c38f91 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderPhotoLarge.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderPhotoSmall.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderPhotoSmall.tif Binary files differnew file mode 100644 index 00000000..f5f644b3 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderPhotoSmall.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderSpeakerLoud.png b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderSpeakerLoud.png Binary files differnew file mode 100644 index 00000000..d7e87f77 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderSpeakerLoud.png diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderSpeakerQuiet.png b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderSpeakerQuiet.png Binary files differnew file mode 100644 index 00000000..5836a7af --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderSpeakerQuiet.png diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderThumbN.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderThumbN.tiff Binary files differnew file mode 100644 index 00000000..064db7ac --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderThumbN.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderThumbP.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderThumbP.tiff Binary files differnew file mode 100644 index 00000000..a62dc01e --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderThumbP.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderTrackFill.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderTrackFill.tiff Binary files differnew file mode 100644 index 00000000..fe3105ad --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderTrackFill.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderTrackLeft.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderTrackLeft.tiff Binary files differnew file mode 100644 index 00000000..0250746f --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderTrackLeft.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderTrackRight.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderTrackRight.tiff Binary files differnew file mode 100644 index 00000000..4ac75734 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TexturedSliderTrackRight.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/ToolbarItemColors.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/ToolbarItemColors.tiff Binary files differnew file mode 100644 index 00000000..c8191661 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/ToolbarItemColors.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/ToolbarItemFonts.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/ToolbarItemFonts.tiff Binary files differnew file mode 100644 index 00000000..eeda1835 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/ToolbarItemFonts.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentButtonFillN.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentButtonFillN.tiff Binary files differnew file mode 100644 index 00000000..d5dda9f6 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentButtonFillN.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentButtonFillP.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentButtonFillP.tiff Binary files differnew file mode 100644 index 00000000..31237382 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentButtonFillP.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentButtonLeftN.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentButtonLeftN.tiff Binary files differnew file mode 100644 index 00000000..f346e2a9 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentButtonLeftN.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentButtonLeftP.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentButtonLeftP.tiff Binary files differnew file mode 100644 index 00000000..7d764aa2 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentButtonLeftP.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentButtonRightN.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentButtonRightN.tiff Binary files differnew file mode 100644 index 00000000..8fd41997 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentButtonRightN.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentButtonRightP.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentButtonRightP.tiff Binary files differnew file mode 100644 index 00000000..d000b4f2 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentButtonRightP.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentCheckboxOffN.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentCheckboxOffN.tiff Binary files differnew file mode 100644 index 00000000..61137927 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentCheckboxOffN.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentCheckboxOffP.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentCheckboxOffP.tiff Binary files differnew file mode 100644 index 00000000..2eebeed0 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentCheckboxOffP.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentCheckboxOnN.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentCheckboxOnN.tiff Binary files differnew file mode 100644 index 00000000..5642a498 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentCheckboxOnN.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentCheckboxOnP.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentCheckboxOnP.tiff Binary files differnew file mode 100644 index 00000000..71f11e25 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentCheckboxOnP.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpFillN.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpFillN.tiff Binary files differnew file mode 100644 index 00000000..26e948e7 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpFillN.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpFillP.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpFillP.tiff Binary files differnew file mode 100644 index 00000000..31237382 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpFillP.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpLeftN.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpLeftN.tiff Binary files differnew file mode 100644 index 00000000..fa4cb8a6 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpLeftN.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpLeftP.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpLeftP.tiff Binary files differnew file mode 100644 index 00000000..f402d79e --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpLeftP.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpPullDownRightN.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpPullDownRightN.tif Binary files differnew file mode 100644 index 00000000..e280e2f5 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpPullDownRightN.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpPullDownRightP.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpPullDownRightP.tif Binary files differnew file mode 100644 index 00000000..029d05ae --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpPullDownRightP.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpRightN.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpRightN.tiff Binary files differnew file mode 100644 index 00000000..9b9bcf58 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpRightN.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpRightP.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpRightP.tiff Binary files differnew file mode 100644 index 00000000..dbc14743 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentPopUpRightP.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerKnobBottom.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerKnobBottom.tif Binary files differnew file mode 100644 index 00000000..6fe6c902 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerKnobBottom.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerKnobHorizontalFill.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerKnobHorizontalFill.tif Binary files differnew file mode 100644 index 00000000..ad8e4b01 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerKnobHorizontalFill.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerKnobLeft.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerKnobLeft.tif Binary files differnew file mode 100644 index 00000000..ef91486d --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerKnobLeft.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerKnobRight.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerKnobRight.tif Binary files differnew file mode 100644 index 00000000..5a8707b5 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerKnobRight.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerKnobTop.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerKnobTop.tif Binary files differnew file mode 100644 index 00000000..75e79458 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerKnobTop.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerKnobVerticalFill.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerKnobVerticalFill.tif Binary files differnew file mode 100644 index 00000000..66fd2a53 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerKnobVerticalFill.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerSlotBottom.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerSlotBottom.tif Binary files differnew file mode 100644 index 00000000..60f0d5fe --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerSlotBottom.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerSlotHorizontalFill.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerSlotHorizontalFill.tif Binary files differnew file mode 100644 index 00000000..cd904d37 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerSlotHorizontalFill.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerSlotLeft.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerSlotLeft.tif Binary files differnew file mode 100644 index 00000000..4bcd1a45 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerSlotLeft.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerSlotRight.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerSlotRight.tif Binary files differnew file mode 100644 index 00000000..f9a5ab96 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerSlotRight.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerSlotTop.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerSlotTop.tif Binary files differnew file mode 100644 index 00000000..799a1cbe --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerSlotTop.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerSlotVerticalFill.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerSlotVerticalFill.tif Binary files differnew file mode 100644 index 00000000..3c72ef17 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentScrollerSlotVerticalFill.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderThumbN.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderThumbN.tiff Binary files differnew file mode 100644 index 00000000..99d06785 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderThumbN.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderThumbP.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderThumbP.tiff Binary files differnew file mode 100644 index 00000000..0ede44a4 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderThumbP.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderTrackFill.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderTrackFill.tiff Binary files differnew file mode 100644 index 00000000..79fdd98b --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderTrackFill.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderTrackLeft.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderTrackLeft.tiff Binary files differnew file mode 100644 index 00000000..e8a39382 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderTrackLeft.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderTrackRight.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderTrackRight.tiff Binary files differnew file mode 100644 index 00000000..58c2b17d --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderTrackRight.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderTriangleThumbN.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderTriangleThumbN.tiff Binary files differnew file mode 100644 index 00000000..14bad9e8 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderTriangleThumbN.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderTriangleThumbP.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderTriangleThumbP.tiff Binary files differnew file mode 100644 index 00000000..c1e5d2a8 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/TransparentSliderTriangleThumbP.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/Current b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/Current new file mode 120000 index 00000000..8c7e5a66 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Frameworks/BWToolkitFramework.framework/Versions/Current @@ -0,0 +1 @@ +A
\ No newline at end of file diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Info.plist b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Info.plist new file mode 100644 index 00000000..717f1811 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Info.plist @@ -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>BWToolkit</string> + <key>CFBundleIdentifier</key> + <string>com.brandonwalkin.BWToolkit</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>BWToolkit</string> + <key>CFBundlePackageType</key> + <string>BNDL</string> + <key>CFBundleShortVersionString</key> + <string>1.2.5</string> + <key>CFBundleSignature</key> + <string>????</string> + <key>CFBundleVersion</key> + <string>1.2.5</string> + <key>NSPrincipalClass</key> + <string>BWToolkit</string> +</dict> +</plist> diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/MacOS/BWToolkit b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/MacOS/BWToolkit Binary files differnew file mode 100755 index 00000000..da8daaf0 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/MacOS/BWToolkit diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAddMiniBottomBar.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAddMiniBottomBar.classdescription new file mode 100644 index 00000000..50e4adcb --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAddMiniBottomBar.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWAddMiniBottomBar; + SuperClass = NSView; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAddRegularBottomBar.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAddRegularBottomBar.classdescription new file mode 100644 index 00000000..dd613eb4 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAddRegularBottomBar.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWAddRegularBottomBar; + SuperClass = NSView; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAddSmallBottomBar.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAddSmallBottomBar.classdescription new file mode 100644 index 00000000..24192d4f --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAddSmallBottomBar.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWAddSmallBottomBar; + SuperClass = NSView; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAnchoredButton.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAnchoredButton.classdescription new file mode 100644 index 00000000..2b4003c2 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAnchoredButton.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWAnchoredButton; + SuperClass = NSButton; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAnchoredButtonBar.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAnchoredButtonBar.classdescription new file mode 100644 index 00000000..c677071b --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAnchoredButtonBar.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWAnchoredButtonBar; + SuperClass = NSView; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAnchoredButtonBarInspector.nib b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAnchoredButtonBarInspector.nib Binary files differnew file mode 100644 index 00000000..b826a0f7 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAnchoredButtonBarInspector.nib diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAnchoredPopUpButton.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAnchoredPopUpButton.classdescription new file mode 100644 index 00000000..5ea9bf34 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWAnchoredPopUpButton.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWAnchoredPopUpButton; + SuperClass = NSPopUpButton; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWBottomBarLibrary.nib b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWBottomBarLibrary.nib Binary files differnew file mode 100644 index 00000000..053c4b1c --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWBottomBarLibrary.nib diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWButtonBarLibrary.nib b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWButtonBarLibrary.nib Binary files differnew file mode 100644 index 00000000..1b84e3a6 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWButtonBarLibrary.nib diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWControllersLibrary.nib b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWControllersLibrary.nib Binary files differnew file mode 100644 index 00000000..e6337fee --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWControllersLibrary.nib diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWGradientBoxInspector.nib b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWGradientBoxInspector.nib Binary files differnew file mode 100644 index 00000000..5b3e24f6 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWGradientBoxInspector.nib diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWHyperlinkButtonInspector.nib b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWHyperlinkButtonInspector.nib Binary files differnew file mode 100644 index 00000000..579e0a59 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWHyperlinkButtonInspector.nib diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWInsetTextField.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWInsetTextField.classdescription new file mode 100644 index 00000000..88a41fbd --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWInsetTextField.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWInsetTextField; + SuperClass = NSTextField; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWRemoveBottomBar.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWRemoveBottomBar.classdescription new file mode 100644 index 00000000..a0b9ccf7 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWRemoveBottomBar.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWRemoveBottomBar; + SuperClass = NSView; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWSelectableToolbar.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWSelectableToolbar.classdescription new file mode 100644 index 00000000..a8f2b9a1 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWSelectableToolbar.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWSelectableToolbar; + SuperClass = NSToolbar; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWSelectableToolbarInspector.nib b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWSelectableToolbarInspector.nib Binary files differnew file mode 100644 index 00000000..03b4c43a --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWSelectableToolbarInspector.nib diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWSheetController.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWSheetController.classdescription new file mode 100644 index 00000000..ed54c5a2 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWSheetController.classdescription @@ -0,0 +1,14 @@ +{ + Actions = { + "openSheet:" = id; + "closeSheet:" = id; + "messageDelegateAndCloseSheet:" = id; + }; + Outlets = { + sheet = NSWindow; + parentWindow = NSWindow; + delegate = id; + }; + ClassName = BWSheetController; + SuperClass = NSObject; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWSplitView.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWSplitView.classdescription new file mode 100755 index 00000000..2b1e847f --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWSplitView.classdescription @@ -0,0 +1,11 @@ +{ + Actions = + { + "toggleCollapse:" = id; + }; + Outlets = + { + }; + ClassName = BWSplitView; + SuperClass = NSSplitView; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWSplitViewInspector.nib b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWSplitViewInspector.nib Binary files differnew file mode 100644 index 00000000..5dd4ae09 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWSplitViewInspector.nib diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWSplitViewLibrary.nib b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWSplitViewLibrary.nib Binary files differnew file mode 100644 index 00000000..a02e54e0 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWSplitViewLibrary.nib diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWStyledTextFieldInspector.nib b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWStyledTextFieldInspector.nib Binary files differnew file mode 100644 index 00000000..9b69e2cc --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWStyledTextFieldInspector.nib diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTexturedSlider.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTexturedSlider.classdescription new file mode 100755 index 00000000..f61e4bdf --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTexturedSlider.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWTexturedSlider; + SuperClass = NSSlider; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTexturedSliderCell.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTexturedSliderCell.classdescription new file mode 100755 index 00000000..bf8ee438 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTexturedSliderCell.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWTexturedSliderCell; + SuperClass = NSSliderCell; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTexturedSliderInspector.nib b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTexturedSliderInspector.nib Binary files differnew file mode 100644 index 00000000..1cc9afce --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTexturedSliderInspector.nib diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTokenField.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTokenField.classdescription new file mode 100644 index 00000000..7f17d931 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTokenField.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWTokenField; + SuperClass = NSTokenField; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTokenFieldCell.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTokenFieldCell.classdescription new file mode 100644 index 00000000..38288f1f --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTokenFieldCell.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWTokenFieldCell; + SuperClass = NSTokenFieldCell; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWToolbarItem.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWToolbarItem.classdescription new file mode 100644 index 00000000..268defa6 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWToolbarItem.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWToolbarItem; + SuperClass = NSToolbarItem; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWToolbarItemInspector.nib b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWToolbarItemInspector.nib Binary files differnew file mode 100644 index 00000000..a32f6e34 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWToolbarItemInspector.nib diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWToolbarItemsLibrary.nib b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWToolbarItemsLibrary.nib Binary files differnew file mode 100644 index 00000000..b2c4d903 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWToolbarItemsLibrary.nib diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWToolbarShowColorsItem.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWToolbarShowColorsItem.classdescription new file mode 100644 index 00000000..a597a973 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWToolbarShowColorsItem.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWToolbarShowColorsItem; + SuperClass = NSToolbarItem; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWToolbarShowFontsItem.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWToolbarShowFontsItem.classdescription new file mode 100644 index 00000000..b4e260e7 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWToolbarShowFontsItem.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWToolbarShowFontsItem; + SuperClass = NSToolbarItem; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentButton.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentButton.classdescription new file mode 100644 index 00000000..d1ef0e4f --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentButton.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWTransparentButton; + SuperClass = NSButton; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentButtonCell.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentButtonCell.classdescription new file mode 100644 index 00000000..7c556d9f --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentButtonCell.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWTransparentButtonCell; + SuperClass = NSButtonCell; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentCheckbox.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentCheckbox.classdescription new file mode 100644 index 00000000..145e03f2 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentCheckbox.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWTransparentCheckbox; + SuperClass = NSButton; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentCheckboxCell.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentCheckboxCell.classdescription new file mode 100644 index 00000000..81dba9d8 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentCheckboxCell.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWTransparentCheckboxCell; + SuperClass = NSButtonCell; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentControlsLibrary.nib b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentControlsLibrary.nib Binary files differnew file mode 100644 index 00000000..c4e3e765 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentControlsLibrary.nib diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentPopUpButton.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentPopUpButton.classdescription new file mode 100644 index 00000000..2d8850a5 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentPopUpButton.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWTransparentPopUpButton; + SuperClass = NSPopUpButton; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentPopUpButtonCell.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentPopUpButtonCell.classdescription new file mode 100644 index 00000000..89b50050 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentPopUpButtonCell.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWTransparentPopUpButtonCell; + SuperClass = NSPopUpButtonCell; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentScroller.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentScroller.classdescription new file mode 100644 index 00000000..52ce8716 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentScroller.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWTransparentScroller; + SuperClass = NSScroller; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentSlider.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentSlider.classdescription new file mode 100644 index 00000000..572256f8 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentSlider.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWTransparentSlider; + SuperClass = NSSlider; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentSliderCell.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentSliderCell.classdescription new file mode 100644 index 00000000..659b7270 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentSliderCell.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWTransparentSliderCell; + SuperClass = NSSliderCell; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentTableView.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentTableView.classdescription new file mode 100644 index 00000000..b5386dc7 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentTableView.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWTransparentTableView; + SuperClass = NSTableView; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentTableViewCell.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentTableViewCell.classdescription new file mode 100644 index 00000000..952e877b --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentTableViewCell.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWTransparentTableViewCell; + SuperClass = NSTextFieldCell; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentTextFieldCell.classdescription b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentTextFieldCell.classdescription new file mode 100644 index 00000000..7b827ae4 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/BWTransparentTextFieldCell.classdescription @@ -0,0 +1,12 @@ +{ + Actions = { + // Define action descriptions here, for example + // "myAction:" = id; + }; + Outlets = { + // Define outlet descriptions here, for example + // myOutlet = NSView; + }; + ClassName = BWTransparentTextFieldCell; + SuperClass = NSTextFieldCell; +} diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/English.lproj/BWToolkitLibrary.nib b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/English.lproj/BWToolkitLibrary.nib Binary files differnew file mode 100644 index 00000000..26160135 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/English.lproj/BWToolkitLibrary.nib diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/English.lproj/InfoPlist.strings b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/English.lproj/InfoPlist.strings Binary files differnew file mode 100644 index 00000000..1e3bac88 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/English.lproj/InfoPlist.strings diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/GradientWellPattern.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/GradientWellPattern.tif Binary files differnew file mode 100644 index 00000000..cca6408a --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/GradientWellPattern.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarMode1.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarMode1.tif Binary files differnew file mode 100644 index 00000000..832f85fd --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarMode1.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarMode1Pressed.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarMode1Pressed.tif Binary files differnew file mode 100644 index 00000000..2eb547e5 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarMode1Pressed.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarMode2.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarMode2.tif Binary files differnew file mode 100644 index 00000000..100f2b30 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarMode2.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarMode2Pressed.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarMode2Pressed.tif Binary files differnew file mode 100644 index 00000000..3ce9a6bc --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarMode2Pressed.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarMode3.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarMode3.tif Binary files differnew file mode 100644 index 00000000..99e6eec2 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarMode3.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarMode3Pressed.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarMode3Pressed.tif Binary files differnew file mode 100644 index 00000000..d1f44d41 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarMode3Pressed.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarModeSelection.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarModeSelection.tif Binary files differnew file mode 100644 index 00000000..60858923 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-ButtonBarModeSelection.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-SplitViewArrowBlueLeft.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-SplitViewArrowBlueLeft.tif Binary files differnew file mode 100644 index 00000000..b87897f2 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-SplitViewArrowBlueLeft.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-SplitViewArrowBlueRight.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-SplitViewArrowBlueRight.tif Binary files differnew file mode 100644 index 00000000..9ec1e62e --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-SplitViewArrowBlueRight.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-SplitViewArrowRedFill.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-SplitViewArrowRedFill.tif Binary files differnew file mode 100644 index 00000000..7633130e --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-SplitViewArrowRedFill.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-SplitViewArrowRedLeft.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-SplitViewArrowRedLeft.tif Binary files differnew file mode 100644 index 00000000..8a347d18 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-SplitViewArrowRedLeft.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-SplitViewArrowRedRight.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-SplitViewArrowRedRight.tif Binary files differnew file mode 100644 index 00000000..7ab676ce --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-SplitViewArrowRedRight.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-SplitViewBackground.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-SplitViewBackground.tiff Binary files differnew file mode 100644 index 00000000..92abe845 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Inspector-SplitViewBackground.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AddMiniBottomBar.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AddMiniBottomBar.tif Binary files differnew file mode 100644 index 00000000..36b5d728 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AddMiniBottomBar.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AddRegularBottomBar.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AddRegularBottomBar.tif Binary files differnew file mode 100644 index 00000000..6ceb1fc4 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AddRegularBottomBar.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AddSheetBottomBar.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AddSheetBottomBar.tif Binary files differnew file mode 100644 index 00000000..d989aa5e --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AddSheetBottomBar.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AddSmallBottomBar.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AddSmallBottomBar.tif Binary files differnew file mode 100644 index 00000000..3379ff0a --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AddSmallBottomBar.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AnchoredButton.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AnchoredButton.tif Binary files differnew file mode 100644 index 00000000..9c47851a --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AnchoredButton.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AnchoredButtonBar.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AnchoredButtonBar.tif Binary files differnew file mode 100644 index 00000000..1e2fd214 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AnchoredButtonBar.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AnchoredPopUpButton.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AnchoredPopUpButton.tif Binary files differnew file mode 100644 index 00000000..eddeb0ad --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-AnchoredPopUpButton.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-GradientBox.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-GradientBox.tif Binary files differnew file mode 100644 index 00000000..b177651d --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-GradientBox.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-GradientSplitView.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-GradientSplitView.tif Binary files differnew file mode 100644 index 00000000..ac4b2ff2 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-GradientSplitView.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-HorizontalSplitView.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-HorizontalSplitView.tif Binary files differnew file mode 100644 index 00000000..cef2bae8 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-HorizontalSplitView.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-InsetTextField.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-InsetTextField.tif Binary files differnew file mode 100644 index 00000000..37fefc3c --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-InsetTextField.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-RemoveBottomBar.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-RemoveBottomBar.tif Binary files differnew file mode 100644 index 00000000..eefb1d0e --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-RemoveBottomBar.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-SelectableToolbar.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-SelectableToolbar.tif Binary files differnew file mode 100644 index 00000000..ae34b80e --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-SelectableToolbar.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-SheetController.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-SheetController.tif Binary files differnew file mode 100644 index 00000000..a7089a06 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-SheetController.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-ShowColors.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-ShowColors.tif Binary files differnew file mode 100644 index 00000000..7ec752ef --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-ShowColors.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-ShowFonts.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-ShowFonts.tif Binary files differnew file mode 100644 index 00000000..fd053bef --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-ShowFonts.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-StyledTextField.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-StyledTextField.tif Binary files differnew file mode 100644 index 00000000..2ab8d9d3 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-StyledTextField.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TexturedAddButton.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TexturedAddButton.tif Binary files differnew file mode 100644 index 00000000..c8f7d77f --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TexturedAddButton.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TexturedRemoveButton.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TexturedRemoveButton.tif Binary files differnew file mode 100644 index 00000000..a89a2458 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TexturedRemoveButton.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TexturedSlider.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TexturedSlider.tif Binary files differnew file mode 100644 index 00000000..a8f7a7c0 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TexturedSlider.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TokenField.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TokenField.tif Binary files differnew file mode 100644 index 00000000..068f43ba --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TokenField.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-ToolbarItem.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-ToolbarItem.tiff Binary files differnew file mode 100644 index 00000000..ce706938 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-ToolbarItem.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentButton.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentButton.tif Binary files differnew file mode 100644 index 00000000..944945c3 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentButton.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentCheckbox.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentCheckbox.tif Binary files differnew file mode 100644 index 00000000..d6235dfb --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentCheckbox.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentCheckboxCell.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentCheckboxCell.tif Binary files differnew file mode 100644 index 00000000..7a79f888 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentCheckboxCell.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentLabel.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentLabel.tif Binary files differnew file mode 100644 index 00000000..7d15753f --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentLabel.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentPopUpButton.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentPopUpButton.tif Binary files differnew file mode 100644 index 00000000..215d122d --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentPopUpButton.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentSlider.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentSlider.tif Binary files differnew file mode 100644 index 00000000..0bab5b17 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentSlider.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentTableView.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentTableView.tif Binary files differnew file mode 100644 index 00000000..76b88fe0 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentTableView.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentTextView.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentTextView.tif Binary files differnew file mode 100644 index 00000000..78bbbca6 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-TransparentTextView.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-VerticalSplitView.tif b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-VerticalSplitView.tif Binary files differnew file mode 100644 index 00000000..ea86f9f7 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/Library-VerticalSplitView.tif diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/ToolbarItemColors.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/ToolbarItemColors.tiff Binary files differnew file mode 100644 index 00000000..c8191661 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/ToolbarItemColors.tiff diff --git a/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/ToolbarItemFonts.tiff b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/ToolbarItemFonts.tiff Binary files differnew file mode 100644 index 00000000..eeda1835 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin/Contents/Resources/ToolbarItemFonts.tiff diff --git a/Scripts/build.sh b/Scripts/build.sh index bf0749ea..88641238 100755 --- a/Scripts/build.sh +++ b/Scripts/build.sh @@ -19,6 +19,9 @@ echo 'Updating build version...' # Add the build/bundle version "${SRCROOT}/Scripts/build-version.pl" +# Remove the .ibplugin from within BWToolkit +rm -rf "${BUILD_PRODUCT}/Contents/Frameworks/BWToolkitFramework.framework/Versions/A/Resources/BWToolkit.ibplugin" + # Perform localisation updates for 'Release' or 'Distribution' builds if [[ "$CONFIGURATION" == 'Release' || "$CONFIGURATION" == 'Distribution' ]] then |