VoiceMac/Classes/VoiceMob/Voice/MGMVoiceInbox.h

49 lines
967 B
C
Raw Normal View History

2010-09-30 22:52:12 -05:00
//
// MGMVoiceInbox.h
// VoiceMob
//
// Created by Mr. Gecko on 9/30/10.
// Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
//
#import <UIKit/UIKit.h>
@class MGMVoiceUser, MGMProgressView, MGMInstance;
@interface MGMVoiceInbox : NSObject {
MGMVoiceUser *voiceUser;
MGMInstance *instance;
IBOutlet UITableView *inboxesTable;
IBOutlet UITableView *messagesTable;
MGMProgressView *progressView;
NSArray *inboxItems;
NSArray *messagesItems;
int progressStartCount;
int currentInbox;
int maxResults;
unsigned int start;
int resultsCount;
float rightMax;
float leftMax;
NSMutableArray *currentData;
NSDate *lastDate;
}
+ (id)tabWithVoiceUser:(MGMVoiceUser *)theVoiceUser;
- (id)initWithVoiceUser:(MGMVoiceUser *)theVoiceUser;
- (MGMVoiceUser *)voiceUser;
- (UIView *)view;
- (void)releaseView;
- (void)startProgress;
- (void)stopProgress;
- (void)loadInbox;
- (int)currentInbox;
@end