| // Copyright 2017-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 <UIKit/UIKit.h> |
| |
| #import "MDCBottomNavigationBar.h" |
| #import "MaterialInk.h" |
| #import "MaterialRipple.h" |
| |
| @interface MDCBottomNavigationItemView : UIView |
| |
| @property(nonatomic, assign) BOOL titleBelowIcon; |
| @property(nonatomic, assign) BOOL selected; |
| @property(nonatomic, assign) MDCBottomNavigationBarTitleVisibility titleVisibility; |
| #pragma clang diagnostic push |
| #pragma clang diagnostic ignored "-Wdeprecated-declarations" |
| @property(nonatomic, strong, nonnull) MDCInkView *inkView; |
| #pragma clang diagnostic pop |
| @property(nonatomic, strong, nonnull) MDCRippleTouchController *rippleTouchController; |
| @property(nonatomic, assign) UIOffset titlePositionAdjustment; |
| |
| @property(nonatomic, copy, nullable) NSString *badgeValue; |
| @property(nonatomic, copy, nullable) NSString *title; |
| @property(nonatomic, strong, nullable) UIFont *itemTitleFont UI_APPEARANCE_SELECTOR; |
| |
| /** |
| The number of lines available for rendering the title of this item. Defaults to 1. |
| |
| @note This property is only used when @c titleBelowIcon is @c true. |
| */ |
| @property(nonatomic, assign) NSInteger titleNumberOfLines; |
| // Default = YES |
| @property(nonatomic, assign) BOOL truncatesTitle; |
| |
| @property(nonatomic, strong, nonnull) UIButton *button; |
| @property(nonatomic, strong, nullable) UIImage *image; |
| @property(nonatomic, strong, nullable) UIImage *selectedImage; |
| |
| @property(nonatomic, strong, nullable) UIColor *badgeColor UI_APPEARANCE_SELECTOR; |
| @property(nonatomic, copy, nullable) UIColor *badgeTextColor; |
| @property(nonatomic, strong, nullable) UIColor *selectedItemTintColor UI_APPEARANCE_SELECTOR; |
| @property(nonatomic, strong, nullable) UIColor *unselectedItemTintColor UI_APPEARANCE_SELECTOR; |
| @property(nonatomic, strong, nullable) UIColor *selectedItemTitleColor; |
| |
| @property(nonatomic, assign) CGFloat contentVerticalMargin; |
| @property(nonatomic, assign) CGFloat contentHorizontalMargin; |
| /** The @c accessibilityIdentifier of the accessibility element for this view. */ |
| @property(nonatomic, copy, nullable) NSString *accessibilityElementIdentifier; |
| |
| - (void)setSelected:(BOOL)selected animated:(BOOL)animated; |
| |
| /** |
| Returns a rect that is the union of all visible content views, inset by |
| kMDCButtonNavigationItemViewPointerEffectHoverRectInset. This rect will never be larger than the |
| view's bounds. |
| |
| This is intended to be used by a @c UIPointerInteractionDelegate when creating a @c UIPointerShape |
| for a @c UIPointerStyle. |
| */ |
| - (CGRect)pointerEffectHighlightRect; |
| |
| #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, nullable) 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, nullable) UIImage *largeContentImage NS_AVAILABLE_IOS(13_0); |
| |
| @end |