| // Copyright 2016-present the Material Components for iOS authors. All Rights Reserved. |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| #import "MDCButtonBar.h" |
| |
| /** MDCBarButtonItemBuilder is an implementation of a Material button item factory. */ |
| @interface MDCAppBarButtonBarBuilder : NSObject |
| |
| /** |
| Returns a view that represents the given bar button item. |
| */ |
| - (UIView *)buttonBar:(MDCButtonBar *)buttonBar |
| viewForItem:(UIBarButtonItem *)barButtonItem |
| layoutHints:(MDCBarButtonItemLayoutHints)layoutHints; |
| |
| /** The title color for the bar button items. */ |
| @property(nonatomic, strong) UIColor *buttonTitleColor; |
| |
| /** The underlying color for the bar button items. */ |
| @property(nonatomic, strong) UIColor *buttonUnderlyingColor; |
| |
| /** |
| Sets the desired button title font for a given state. Will only affect buttons created after this |
| invocation. |
| |
| @param font The font that should be displayed on text buttons for the given state. |
| @param state The state for which the font should be displayed. |
| */ |
| - (void)setTitleFont:(UIFont *)font forState:(UIControlState)state; |
| |
| /** |
| Gets the desired button title font for a given state. |
| |
| If no font has been set for a given state, the returned value will fall back to the value |
| set for UIControlStateNormal. |
| |
| @param state The state for which the font should be returned. |
| @return The font associated with the given state. |
| */ |
| - (UIFont *)titleFontForState:(UIControlState)state; |
| |
| /** |
| Sets the title label color for the given state for all buttons. |
| |
| @param color The color that should be used on text buttons labels for the given state. |
| @param state The state for which the color should be used. |
| */ |
| - (void)setTitleColor:(UIColor *)color forState:(UIControlState)state; |
| |
| /** |
| Returns the color set for @c state that was set by setButtonsTitleColor:forState:. |
| |
| If no value has been set for a given state, the returned value will fall back to the value |
| set for UIControlStateNormal. |
| |
| @param state The state for which the color should be returned. |
| @return The color associated with the given state. |
| */ |
| - (UIColor *)titleColorForState:(UIControlState)state; |
| |
| /** |
| Updates a button's title color using the builder's title color state. |
| |
| The title color is updated in the following order: |
| |
| 1. @c self.buttonTitleColor, if non-nil, is assigned to UIControlStateNormal. |
| 2. All explicit @c setTitleColor:forState: values are assigned. |
| 3. The UIBarButtonItem's @c tintColor is assigned to UIControlStateNormal. |
| */ |
| - (void)updateTitleColorForButton:(UIButton *)button withItem:(UIBarButtonItem *)item; |
| |
| #pragma mark - UILargeContentViewerItem |
| |
| /** |
| The title to display in the large content viewer. If set to nil, this property will return |
| @c title. |
| */ |
| @property(nonatomic, copy) NSString *largeContentTitle NS_AVAILABLE_IOS(13_0); |
| |
| /** |
| The image to display in the large content viwer. If set to nil, the property will return |
| @c image . If set to nil (or not set) @c scalesLargeContentImage will return YES otherwise NO. |
| */ |
| @property(nonatomic) UIImage *largeContentImage NS_AVAILABLE_IOS(13_0); |
| |
| @end |