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

MWMPlacePageBookmarkCell.h « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3424bf4856081eabdb5647a513249961ed8e45bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#import "MWMTableViewCell.h"

@protocol MWMPlacePageBookmarkDelegate <NSObject>

- (void)reloadBookmark;
- (void)editBookmarkTap;
- (void)moreTap;

@end

@class MWMPlacePage;

@interface MWMPlacePageBookmarkCell : MWMTableViewCell

- (void)configWithText:(NSString *)text
              delegate:(id<MWMPlacePageBookmarkDelegate>)delegate
        placePageWidth:(CGFloat)width
                isOpen:(BOOL)isOpen
                isHtml:(BOOL)isHtml;

- (CGFloat)cellHeight;

@end