-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Wes Smith
committed
Oct 29, 2015
1 parent
60cc91d
commit 7988bea
Showing
69 changed files
with
222 additions
and
88 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+6 Bytes
(100%)
Button.bundle/BTNDefaultItemButton~ipad.nib/objects-8.0+.nib
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-8 Bytes
(100%)
Button.bundle/BTNDefaultItemButton~iphone.nib/objects-8.0+.nib
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+8 Bytes
(100%)
Button.bundle/BTNInventoryItemCell~ipad.nib/objects-8.0+.nib
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+10 Bytes
(100%)
Button.bundle/BTNInventoryItemCell~iphone.nib/objects-8.0+.nib
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Button.bundle/BTNInventoryListCell~ipad.nib/objects-8.0+.nib
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Button.bundle/BTNInventoryListCell~iphone.nib/objects-8.0+.nib
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+1 Byte
(100%)
Button.bundle/BTNInventoryPreviewView~ipad.nib/objects-8.0+.nib
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(100%)
Button.bundle/BTNInventoryPreviewView~iphone.nib/objects-8.0+.nib
Binary file not shown.
Binary file modified
BIN
+9 Bytes
(100%)
Button.bundle/BTNInventoryPreviewView~iphone.nib/runtime.nib
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-3 Bytes
(100%)
Button.bundle/BTNLocationRequestView~ipad.nib/objects-8.0+.nib
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-10 Bytes
(100%)
Button.bundle/BTNLocationRequestView~iphone.nib/objects-8.0+.nib
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
Button.framework/Versions/A/Headers/BTNDropinButtonAppearanceProtocol.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
@import Foundation; | ||
#import "BTNDropinButtonConstants.h" | ||
|
||
@protocol BTNDropinButtonAppearance <NSObject> | ||
|
||
@optional | ||
|
||
///----------------- | ||
/// @name Appearance | ||
///----------------- | ||
|
||
|
||
/// Defines the insets of the dropin button's content view. | ||
@property (nonatomic, assign) UIEdgeInsets contentInsets UI_APPEARANCE_SELECTOR; | ||
|
||
|
||
/// Defines the alignment of the button's content. This supercedes any left/right content inset. | ||
@property (nonatomic, assign) BTNDropinContentAlignment contentAlignment UI_APPEARANCE_SELECTOR; | ||
|
||
|
||
/// Defines the corner radius of the dropin button (default is 0). | ||
@property (nonatomic, assign) CGFloat cornerRadius UI_APPEARANCE_SELECTOR; | ||
|
||
|
||
/// Defines the border width of the dropin button border (default is 0). | ||
@property (nonatomic, assign) CGFloat borderWidth UI_APPEARANCE_SELECTOR; | ||
|
||
|
||
/// Defines the color of the dropin button border. | ||
@property (nonatomic, strong) UIColor *borderColor UI_APPEARANCE_SELECTOR; | ||
|
||
|
||
/// Defines the size of the icon view in the dropin button (applied to height and width). | ||
@property (nonatomic, assign) CGFloat iconSize UI_APPEARANCE_SELECTOR; | ||
|
||
|
||
/// Defines the spacing between the icon view and the text label in the dropin button. | ||
@property (nonatomic, assign) CGFloat iconLabelSpacing UI_APPEARANCE_SELECTOR; | ||
|
||
|
||
/// Defines the font used in the dropin button. | ||
@property (nonatomic, strong) UIFont *font UI_APPEARANCE_SELECTOR; | ||
|
||
|
||
/// Defines the string case of the dropin button text. | ||
@property (nonatomic, assign) BTNDropinButtonTextCase textCase UI_APPEARANCE_SELECTOR; | ||
|
||
|
||
/// Defines the color of the dropin text. | ||
@property (nonatomic, strong) UIColor *tintColor UI_APPEARANCE_SELECTOR; | ||
|
||
|
||
/// Defines the highlighted tint color of the dropin button, text. | ||
@property (nonatomic, strong) UIColor *highlightedTintColor UI_APPEARANCE_SELECTOR; | ||
|
||
|
||
/// Defines the color of the dropin button text (supersedes tintColor). | ||
@property (nonatomic, strong) UIColor *textColor UI_APPEARANCE_SELECTOR; | ||
|
||
|
||
/// Defines the highlighted color of the dropin button text (supersedes highlightedTintColor). | ||
@property (nonatomic, strong) UIColor *highlightedTextColor UI_APPEARANCE_SELECTOR; | ||
|
||
|
||
/// Defines the color of the dropin button icon (supersedes tintColor). | ||
@property (nonatomic, strong) UIColor *iconColor UI_APPEARANCE_SELECTOR; | ||
|
||
|
||
// Defines the highlighted color of the dropin button icon (supersedes highlightedTintColor). | ||
@property (nonatomic, strong) UIColor *highlightedIconColor UI_APPEARANCE_SELECTOR; | ||
|
||
|
||
/// Defines the normal background color for the button. | ||
@property (nonatomic, strong) UIColor *normalBackgroundColor UI_APPEARANCE_SELECTOR; | ||
|
||
|
||
/// Defines the highlighted background color for the button. | ||
@property (nonatomic, strong) UIColor *highlightedBackgroundColor UI_APPEARANCE_SELECTOR; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
Button.framework/Versions/A/Headers/BTNDropinButtonConstants.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/** | ||
Dropin Button Constants | ||
*/ | ||
|
||
typedef NS_ENUM(NSUInteger, BTNDropinContentAlignment) { | ||
/// Default alignment for the button content. | ||
BTNDropinContentAlignmentDefault, | ||
/// Center alignemtn for the button content. | ||
BTNDropinContentAlignmentCenter | ||
}; | ||
|
||
|
||
typedef NS_ENUM(NSUInteger, BTNDropinButtonTextCase) { | ||
/// The default text case (e.g. Request a ride) | ||
BTNDropinButtonTextCaseDefault, | ||
/// A lowercase representation (e.g. request a ride) | ||
BTNDropinButtonTextCaseLower, | ||
/// An uppercase representation (e.g. REQUEST A RIDE) | ||
BTNDropinButtonTextCaseUpper | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.