Esempio n. 1
0
		public StartMapViewController (UIViewController msp, IMapLocationRequest maplocationRequest) 
			: base("StartMapViewController", null)
		{
			_MaplocationRequest = maplocationRequest;
			_MSP = msp;
			_list = new List<ImageInfo> ();									
		}
Esempio n. 2
0
		public TimelineViewController (FilterType filterType, bool pushing, UINavigationController msp, 
		                               IMapLocationRequest maplocationRequest) 
			: base(pushing)
		{
			_FilterType = filterType;
			_MapLocationRequest = maplocationRequest;
			
			ShowLoadMorePhotos = true;

			this.TableView.SeparatorStyle = UITableViewCellSeparatorStyle.None;
			this.TableView.BackgroundColor = new UIColor (226f, 231f, 237f, 1f);
			this.TableView.AllowsSelection = false;

			switch(filterType)
			{
				case FilterType.Friends:
					TableView.BackgroundView = new UIImageView(Graphics.GetImgResource("fond1"));
					break;
				case FilterType.Recent:
					TableView.BackgroundView = new UIImageView(Graphics.GetImgResource("fond2"));
					break;
				case FilterType.All:
					TableView.BackgroundView = new UIImageView(Graphics.GetImgResource("fond3"));
					break;
			}

			_list = new List<ImageInfo>();
			_MSP = msp;
			
			OnGestSwipe += HandleOnSwipe;
		}
Esempio n. 3
0
		public StartMapViewController (UIViewController msp, IMapLocationRequest maplocationRequest, Image image) 
			: this(msp, maplocationRequest)
		{
			this.image = image;						
		}		
Esempio n. 4
0
		public StartMapViewController (UIViewController msp, IMapLocationRequest maplocationRequest, List<Image> images)
			: this(msp, maplocationRequest)
		{
			this.images = images;						
		}