Mobile API Reference  MicroStrategy 2019
PromptLocationCell.h
Go to the documentation of this file.
1 //
2 // PromptLocationCell.h
3 // MSTRMobile
4 //
5 // Created by Firat Alpergin on 4/25/10.
6 // Copyright 2010 MicroStrategy Incorporated. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 #import "PromptBaseCell.h"
11 #import <CoreLocation/CoreLocation.h>
12 #import <Generic.h>
13 
14 #define BUTTON_WIDTH 28
15 #define BUTTON_HEIGHT 28
16 
17 @class ConstantPrompt, PromptSummaryScreen;
18 
19 @interface PromptLocationCell : PromptBaseCell <CLLocationManagerDelegate> {
20  CLLocationManager *locationManager;
21  UILabel *locationLabel;
23 
24  UIButton *locationButton;
25  UIImage *selImgLight;
26  UIImage *selImgDark;
27 }
28 
29 @property (nonatomic, assign) PromptSummaryScreen *parent;
30 
31 +(PromptLocationCell *)newCellForPrompt:(ConstantPrompt *)_prompt;
32 
33 @end
CLLocationManager * locationManager
Definition: PromptLocationCell.h:20
Definition: PromptLocationCell.h:19
UILabel * locationLabel
Definition: PromptLocationCell.h:21
UIImage * selImgLight
Definition: PromptLocationCell.h:25
UIButton * locationButton
Definition: PromptLocationCell.h:24
UIImage * selImgDark
Definition: PromptLocationCell.h:26
Definition: PromptSummaryScreen.h:18
Definition: PromptBaseCell.h:22
PromptSummaryScreen * parent
Definition: PromptLocationCell.h:22