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:
authorv.mikhaylenko <v.mikhaylenko@corp.mail.ru>2015-05-25 16:13:04 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:39 +0300
commit279c4e252521359d59d76e533b7cde41a74183e9 (patch)
tree614a5a8462f69c0b81342d7fbcf19f49cf2e8f18 /iphone/Maps/Classes/MWMBasePlacePageView.h
parent279e4649433bcbc06e888d557f77d7dd8708fa98 (diff)
[ios] Made place page for iPad. Added big compas view. Added bookmarks edit.
Diffstat (limited to 'iphone/Maps/Classes/MWMBasePlacePageView.h')
-rw-r--r--iphone/Maps/Classes/MWMBasePlacePageView.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/iphone/Maps/Classes/MWMBasePlacePageView.h b/iphone/Maps/Classes/MWMBasePlacePageView.h
index 24f22d4866..c042dabda7 100644
--- a/iphone/Maps/Classes/MWMBasePlacePageView.h
+++ b/iphone/Maps/Classes/MWMBasePlacePageView.h
@@ -8,17 +8,24 @@
#import <UIKit/UIKit.h>
-@class MWMPlacePageEntity;
+@class MWMPlacePageEntity, MWMDirectionView;
@interface MWMBasePlacePageView : UIView
@property (weak, nonatomic) IBOutlet UILabel * titleLabel;
@property (weak, nonatomic) IBOutlet UILabel * typeLabel;
@property (weak, nonatomic) IBOutlet UILabel * distanceLabel;
-@property (weak, nonatomic) IBOutlet UIImageView * directionArrow;
+@property (nonatomic) IBOutlet UIImageView * directionArrow;
@property (weak, nonatomic) IBOutlet UITableView * featureTable;
+@property (weak, nonatomic) IBOutlet UIView * separatorView;
+@property (weak, nonatomic) IBOutlet UIButton * directionButton;
+@property (nonatomic) UIView * typeDescriptionView;
+@property (nonatomic) MWMDirectionView * directionView;
- (void)configureWithEntity:(MWMPlacePageEntity *)entity;
- (void)addBookmark;
+- (void)removeBookmark;
+- (void)reloadBookmarkCell;
+- (void)layoutDistanceLabel;
@end