Mobile API Reference  MicroStrategy 2019
PromptBarcodeCell.h
Go to the documentation of this file.
1 //
2 // PromptBarcodeCell.h
3 // MSTRMobile
4 //
5 // Created by Firat Alpergin on 3/18/10.
6 // Copyright 2010 MicroStrategy. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
11 #import "PromptBaseCell.h"
13 
14 #define IMAGE_WIDTH 31
15 #define BARCODE_MIDDLE_PADDING 5
16 
17 //@class PromptSummaryScreen;
19 
20 @interface PromptBarcodeCell : PromptBaseCell <BarcodeScannerControllerDelegate, KeypadInputControllerDelegate> {
21  UILabel *valueLabel;
22  UIImageView *barcodeImageView;
23 
24  //PromptSummaryScreen *parent;
25  //MIPromptSummaryScreen *parent;
27 }
28 
29 //@property (nonatomic, assign) PromptSummaryScreen *parent;
30 @property (nonatomic, assign) MIPromptSummaryScreenSV *parent;
31 
32 +(PromptBarcodeCell*)newCellForPrompt:(Prompt*)_prompt;
33 -(void)displayCamera;
34 
35 @end
MIPromptSummaryScreenSV * parent
Definition: PromptBarcodeCell.h:26
UILabel * valueLabel
Definition: PromptBarcodeCell.h:21
Definition: PromptBarcodeCell.h:20
Definition: MIPromptSummaryScreenSV.h:15
Definition: PromptBaseCell.h:22
UIImageView * barcodeImageView
Definition: PromptBarcodeCell.h:22