2010-09-30 12:27:22 -05:00
|
|
|
//
|
|
|
|
// MGMContactView.h
|
|
|
|
// VoiceMob
|
|
|
|
//
|
|
|
|
// Created by Mr. Gecko on 9/29/10.
|
2013-07-20 06:56:17 -05:00
|
|
|
// Copyright (c) 2011 Mr. Gecko's Media (James Coleman). http://mrgeckosmedia.com/
|
2010-09-30 12:27:22 -05:00
|
|
|
//
|
|
|
|
|
2013-07-20 06:56:17 -05:00
|
|
|
#import <UIKit/UIKit.h>
|
2010-09-30 12:27:22 -05:00
|
|
|
|
2013-07-20 06:56:17 -05:00
|
|
|
@class MGMThemeManager, MGMContacts;
|
2010-09-30 12:27:22 -05:00
|
|
|
|
|
|
|
@interface MGMContactView : UITableViewCell {
|
|
|
|
MGMThemeManager *themeManager;
|
2013-07-20 06:56:17 -05:00
|
|
|
MGMContacts *contacts;
|
2010-09-30 12:27:22 -05:00
|
|
|
UIImageView *photoView;
|
|
|
|
UILabel *nameField;
|
|
|
|
UILabel *phoneField;
|
|
|
|
NSDictionary *contact;
|
2013-07-20 06:56:17 -05:00
|
|
|
NSString *number;
|
|
|
|
|
|
|
|
NSLock *photoLock;
|
|
|
|
int photoWaiting;
|
2010-09-30 12:27:22 -05:00
|
|
|
}
|
|
|
|
- (void)setThemeManager:(MGMThemeManager *)theThemeManager;
|
2013-07-20 06:56:17 -05:00
|
|
|
- (void)setContacts:(MGMContacts *)theContacts;
|
2010-09-30 12:27:22 -05:00
|
|
|
- (void)setContact:(NSDictionary *)theContact;
|
2013-07-20 06:56:17 -05:00
|
|
|
|
|
|
|
- (void)getPhotoForNumber:(NSString *)theNumber;
|
2010-09-30 12:27:22 -05:00
|
|
|
@end
|