forked from organicmaps/organicmaps
[ios] get the current Side buttons available size
This size is used to update the side buttons during the modally search screen dragging Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
parent
f42083b8c9
commit
fcaad4d98e
4 changed files with 9 additions and 0 deletions
|
@ -14,5 +14,6 @@
|
|||
- (void)processMyPositionStateModeEvent:(MWMMyPositionMode)mode;
|
||||
|
||||
+ (void)updateAvailableArea:(CGRect)frame;
|
||||
+ (CGRect)getAvailableArea;
|
||||
|
||||
@end
|
||||
|
|
|
@ -57,6 +57,9 @@ NSString * const kUDDidShowLongTapToShowSideButtonsToast = @"kUDDidShowLongTapTo
|
|||
}
|
||||
|
||||
+ (void)updateAvailableArea:(CGRect)frame { [[self buttons].sideView updateAvailableArea:frame]; }
|
||||
|
||||
+ (CGRect)getAvailableArea { return [self buttons].sideView.getAvailableArea; }
|
||||
|
||||
- (void)zoomIn
|
||||
{
|
||||
GetFramework().Scale(Framework::SCALE_MAG, true);
|
||||
|
|
|
@ -8,5 +8,6 @@
|
|||
- (void)setHidden:(BOOL)hidden animated:(BOOL)animated;
|
||||
|
||||
- (void)updateAvailableArea:(CGRect)frame;
|
||||
- (CGRect)getAvailableArea;
|
||||
|
||||
@end
|
||||
|
|
|
@ -144,6 +144,10 @@ CGFloat const kButtonsBottomOffset = 6;
|
|||
[self setNeedsLayout];
|
||||
}
|
||||
|
||||
- (CGRect)getAvailableArea {
|
||||
return self.availableArea;
|
||||
}
|
||||
|
||||
- (CGFloat)availableHeight {
|
||||
return self.availableArea.size.height - kButtonsTopOffset - kButtonsBottomOffset;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue