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/Bookmarks/BalloonView.h')
-rw-r--r--iphone/Maps/Bookmarks/BalloonView.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/iphone/Maps/Bookmarks/BalloonView.h b/iphone/Maps/Bookmarks/BalloonView.h
deleted file mode 100644
index ae88ede4e5..0000000000
--- a/iphone/Maps/Bookmarks/BalloonView.h
+++ /dev/null
@@ -1,38 +0,0 @@
-#import <UIKit/UIKit.h>
-
-#include "../../../map/bookmark.hpp"
-#include "../../../map/bookmark_balloon.hpp"
-
-
-@interface BalloonView : NSObject
-{
- shared_ptr<BookmarkBalloon> m_balloon;
-
- graphics::Image::Info m_images[2];
-}
-
-@property(nonatomic, retain) NSString * title;
-// Currently displays bookmark description (notes)
-@property(nonatomic, retain) NSString * notes;
-// Stores displayed bookmark icon file name
-@property(nonatomic, retain) NSString * color;
-// If we clicked already existing bookmark, it will be here
-@property(nonatomic, assign) BookmarkAndCategory editedBookmark;
-
-@property(nonatomic, assign) CGPoint globalPosition;
-@property(nonatomic, retain) NSString * setName;
-
-
-- (id) initWithTarget:(id)target;
-- (void) clear;
-
-// Kosher method to add bookmark into the Framework.
-// It automatically "edits" bookmark if it's already exists
-- (void) addOrEditBookmark;
-// Deletes bookmark if we were editing it (clicked on already added bm)
-// and does nothing if called for "new", not added bookmark
-- (void) deleteBookmark;
-
-- (void) addBookmarkToCategory:(size_t)index;
-
-@end