Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'iphone/Maps/Classes/MWMPlacePagePreviewCell.h')
-rw-r--r--iphone/Maps/Classes/MWMPlacePagePreviewCell.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/iphone/Maps/Classes/MWMPlacePagePreviewCell.h b/iphone/Maps/Classes/MWMPlacePagePreviewCell.h
new file mode 100644
index 0000000000..dde52ca55b
--- /dev/null
+++ b/iphone/Maps/Classes/MWMPlacePagePreviewCell.h
@@ -0,0 +1,24 @@
+#import "MWMTableViewCell.h"
+
+@class MWMPlacePageData;
+@class MWMCircularProgress;
+
+@protocol MWMPlacePageCellUpdateProtocol;
+@protocol MWMPlacePageLayoutDataSource;
+
+@interface MWMPlacePagePreviewCell : MWMTableViewCell
+
+- (void)setDistanceToObject:(NSString *)distance;
+- (void)rotateDirectionArrowToAngle:(CGFloat)angle;
+
+- (void)setDownloaderViewHidden:(BOOL)isHidden animated:(BOOL)isAnimated;
+- (void)setDownloadingProgress:(CGFloat)progress;
+
+- (void)configure:(MWMPlacePageData *)data
+ updateLayoutDelegate:(id<MWMPlacePageCellUpdateProtocol>)delegate
+ dataSource:(id<MWMPlacePageLayoutDataSource>)dataSource;
+
+
+- (MWMCircularProgress *)mapDownloadProgress;
+
+@end