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

MWMPlacePageBookmarkCell.mm « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68e1eae09c61fffd847a6c970426f4b39ba03662 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#import "MWMPlacePageBookmarkCell.h"
#import "MWMPlacePageEntity.h"
#import "UIKitCategories.h"
#import "MWMPlacePage.h"
#import "MWMPlacePageViewManager.h"
#import "MWMBasePlacePageView.h"
#import "MWMTextView.h"

extern NSString * const kBookmarkCellWebViewDidFinishLoadContetnNotification = @"WebViewDidFifishLoadContent";

@interface MWMPlacePageBookmarkCell () <UITextFieldDelegate, UIWebViewDelegate>

@property (weak, nonatomic, readwrite) IBOutlet UITextField * title;
@property (weak, nonatomic, readwrite) IBOutlet UIButton * categoryButton;
@property (weak, nonatomic, readwrite) IBOutlet UIButton * markButton;
@property (weak, nonatomic, readwrite) IBOutlet UILabel * descriptionLabel;
@property (weak, nonatomic) IBOutlet UIImageView * icon;

@property (weak, nonatomic) IBOutlet UIView * firstSeparatorView;
@property (weak, nonatomic) IBOutlet UIView * secondSeparatorView;

@end

@implementation MWMPlacePageBookmarkCell

- (void)configure
{
  MWMPlacePageEntity const * entity = self.placePage.manager.entity;
  self.title.text = entity.bookmarkTitle;
  [self.categoryButton setTitle:[NSString stringWithFormat:@"%@ >", entity.bookmarkCategory] forState:UIControlStateNormal];
  [self.markButton setImage:[UIImage imageNamed:[NSString stringWithFormat:@"%@-on", entity.bookmarkColor]] forState:UIControlStateNormal];
  [[NSNotificationCenter defaultCenter] addObserver:self
                                           selector:@selector(keyboardWillShown:)
                                               name:UIKeyboardWillShowNotification object:nil];

  [[NSNotificationCenter defaultCenter] addObserver:self
                                           selector:@selector(keyboardWillBeHidden)
                                               name:UIKeyboardWillHideNotification object:nil];
}

- (void)keyboardWillShown:(NSNotification *)aNotification
{
  NSDictionary const * info = [aNotification userInfo];
  CGSize const kbSize = [[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;
  if ([self.title isEditing])
    [self.placePage willStartEditingBookmarkTitle:kbSize.height];
}

- (void)keyboardWillBeHidden
{
  if ([self.title isEditing])
    [self.placePage willFinishEditingBookmarkTitle:self.title.text.length > 0 ? self.title.text : self.placePage.manager.entity.title];
}

- (void)textFieldDidEndEditing:(UITextField *)textField
{
  MWMPlacePageEntity * entity = self.placePage.manager.entity;
  entity.bookmarkTitle = textField.text.length > 0 ? textField.text : self.placePage.manager.entity.title;
  [entity synchronize];
  [textField resignFirstResponder];
}

- (void)layoutSubviews
{
  CGFloat const leftOffset = 16.;
  CGFloat const topOffset = 15.;
  self.icon.origin = CGPointMake(leftOffset, topOffset);
}

- (BOOL)textFieldShouldClear:(UITextField *)textField
{
  return YES;
}

- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
  [textField resignFirstResponder];
  return YES;
}

- (void)dealloc
{
  [[NSNotificationCenter defaultCenter] removeObserver:self];
}

- (IBAction)colorPickerButtonTap
{
  [self.placePage changeBookmarkColor];
  [self.title resignFirstResponder];
}

- (IBAction)categoryButtonTap
{
  [self.placePage changeBookmarkCategory];
  [self.title resignFirstResponder];
}

- (IBAction)editTap
{
  [self.placePage changeBookmarkDescription];
  [self.title resignFirstResponder];
}

@end