co-maps/iphone/Maps/Classes/CustomViews/NavigationDashboard/Views/RoutePreview/MWMRoutePreview.h
2025-11-22 13:58:55 +01:00

31 lines
812 B
Objective-C

#import "MWMCircularProgressState.h"
#import "MWMRouterType.h"
typedef NS_ENUM(NSInteger, MWMDrivingOptionsState) {
MWMDrivingOptionsStateNone,
MWMDrivingOptionsStateDefine,
MWMDrivingOptionsStateChange
};
@class MWMRoutePreview;
@protocol MWMRoutePreviewDelegate
- (void)routePreviewDidPressDrivingOptions:(MWMRoutePreview *)routePreview;
@end
@interface MWMRoutePreview : UIView
@property(nonatomic) MWMDrivingOptionsState drivingOptionsState;
@property(weak, nonatomic) id<MWMRoutePreviewDelegate> delegate;
- (void)addToView:(UIView *)superview;
- (void)remove;
- (void)statePrepare;
- (void)selectRouter:(MWMRouterType)routerType;
- (void)router:(MWMRouterType)routerType setState:(MWMCircularProgressState)state;
- (void)router:(MWMRouterType)routerType setProgress:(CGFloat)progress;
@end