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/MWMPlacePageBookmarkCell.mm
parent279e4649433bcbc06e888d557f77d7dd8708fa98 (diff)
[ios] Made place page for iPad. Added big compas view. Added bookmarks edit.
Diffstat (limited to 'iphone/Maps/Classes/MWMPlacePageBookmarkCell.mm')
-rw-r--r--iphone/Maps/Classes/MWMPlacePageBookmarkCell.mm84
1 files changed, 58 insertions, 26 deletions
diff --git a/iphone/Maps/Classes/MWMPlacePageBookmarkCell.mm b/iphone/Maps/Classes/MWMPlacePageBookmarkCell.mm
index 329ef5b76a..064fb53832 100644
--- a/iphone/Maps/Classes/MWMPlacePageBookmarkCell.mm
+++ b/iphone/Maps/Classes/MWMPlacePageBookmarkCell.mm
@@ -7,70 +7,87 @@
//
#import "MWMPlacePageBookmarkCell.h"
+#import "MWMPlacePageEntity.h"
#import "UIKitCategories.h"
+#import "MWMPlacePage.h"
+#import "MWMPlacePageViewManager.h"
+#import "MWMBasePlacePageView.h"
+#import "MWMTextView.h"
-@interface MWMPlacePageBookmarkCell () <UITextViewDelegate>
+extern NSString * const kBookmarkCellWebViewDidFinishLoadContetnNotification = @"WebViewDidFifishLoadContent";
-@property (weak, nonatomic, readwrite) IBOutlet UITextView * title;
+@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 UITextView * descriptionTextView;
+@property (weak, nonatomic, readwrite) IBOutlet UILabel * descriptionLabel;
@property (weak, nonatomic) IBOutlet UIView * firstSeparatorView;
@property (weak, nonatomic) IBOutlet UIView * secondSeparatorView;
-@property (nonatomic) UITextView * activeTextView;
-
@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(keyboardWasShown:)
- name:UIKeyboardDidShowNotification object:nil];
+ selector:@selector(keyboardWillShown:)
+ name:UIKeyboardWillShowNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWillBeHidden:)
name:UIKeyboardWillHideNotification object:nil];
}
-- (void)keyboardWasShown:(NSNotification *)aNotification
+- (void)keyboardWillShown:(NSNotification *)aNotification
{
+
NSDictionary const * info = [aNotification userInfo];
CGSize const kbSize = [[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;
-
- UIEdgeInsets const contentInsets = UIEdgeInsetsMake(0., 0., kbSize.height, 0.);
- self.ownerTableView.contentInset = contentInsets;
- self.ownerTableView.scrollIndicatorInsets = contentInsets;
-
- CGRect aRect = self.ownerTableView.superview.frame;
- aRect.size.height -= kbSize.height;
- if (!CGRectContainsPoint(aRect, self.activeTextView.frame.origin))
- [self.ownerTableView scrollRectToVisible:self.activeTextView.frame animated:YES];
+ [self.placePage willStartEditingBookmarkTitle:kbSize.height];
+
+// UIEdgeInsets const contentInsets = UIEdgeInsetsMake(0., 0., kbSize.height, 0.);
+// self.ownerTableView.contentInset = contentInsets;
+// self.ownerTableView.scrollIndicatorInsets = contentInsets;
+//
+// CGRect aRect = self.ownerTableView.superview.frame;
+// aRect.size.height -= kbSize.height;
+// if (!CGRectContainsPoint(aRect, self.title.frame.origin))
+// [self.ownerTableView scrollRectToVisible:aRect animated:YES];
}
- (void)keyboardWillBeHidden:(NSNotification *)aNotification
{
- UIEdgeInsets const contentInsets = UIEdgeInsetsZero;
- self.ownerTableView.contentInset = contentInsets;
- self.ownerTableView.scrollIndicatorInsets = contentInsets;
+ NSDictionary const * info = [aNotification userInfo];
+ CGSize const kbSize = [[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;
+ [self.placePage willFinishEditingBookmarkTitle:kbSize.height];
+// UIEdgeInsets const contentInsets = UIEdgeInsetsZero;
+// self.ownerTableView.contentInset = contentInsets;
+// self.ownerTableView.scrollIndicatorInsets = contentInsets;
}
-- (void)textViewDidBeginEditing:(UITextView *)textView
+- (void)textFieldDidEndEditing:(UITextField *)textField
{
- self.activeTextView = textView;
+ MWMPlacePageEntity * entity = self.placePage.manager.entity;
+ entity.bookmarkTitle = textField.text;
+ [entity synchronize];
}
-- (void)textViewDidEndEditing:(UITextView *)textView
+- (BOOL)textFieldShouldClear:(UITextField *)textField
{
- self.activeTextView = nil;
+ return YES;
}
-- (void)textViewDidChange:(UITextView *)textView
+- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
- [textView scrollRangeToVisible:[textView selectedRange]];
+ [textField resignFirstResponder];
+ return YES;
}
- (void)dealloc
@@ -78,4 +95,19 @@
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
+- (IBAction)colorPickerButtonTap:(id)sender
+{
+ [self.placePage changeBookmarkColor];
+}
+
+- (IBAction)categoryButtonTap:(id)sender
+{
+ [self.placePage changeBookmarkCategory];
+}
+
+- (IBAction)editTap:(id)sender
+{
+ [self.placePage changeBookmarkDescription];
+}
+
@end