2010-09-24 15:35:47 -05:00
|
|
|
//
|
|
|
|
// MGMController.h
|
|
|
|
// VoiceMob
|
|
|
|
//
|
|
|
|
// Created by Mr. Gecko on 9/24/10.
|
2013-07-20 06:56:17 -05:00
|
|
|
// Copyright (c) 2011 Mr. Gecko's Media (James Coleman). http://mrgeckosmedia.com/
|
2010-09-24 15:35:47 -05:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2013-07-20 06:56:17 -05:00
|
|
|
@class MGMThemeManager, MGMAccountController, MGMAccountSetup, MGMReverseLookup, MGMInstance, MGMVoiceMultiSMS;
|
|
|
|
|
|
|
|
#if MGMSIPENABLED
|
|
|
|
@class MGMSIPCallView;
|
|
|
|
#endif
|
2010-09-30 12:27:22 -05:00
|
|
|
|
2010-09-24 15:35:47 -05:00
|
|
|
@interface MGMController : UIViewController {
|
|
|
|
IBOutlet UIWindow *mainWindow;
|
2010-09-30 12:27:22 -05:00
|
|
|
|
2013-07-20 06:56:17 -05:00
|
|
|
BOOL inBackground;
|
|
|
|
|
2010-09-30 12:27:22 -05:00
|
|
|
MGMThemeManager *themeManager;
|
|
|
|
MGMAccountController *accountController;
|
2010-09-24 15:35:47 -05:00
|
|
|
}
|
2013-07-20 06:56:17 -05:00
|
|
|
- (BOOL)isInBackground;
|
2010-09-30 12:27:22 -05:00
|
|
|
- (MGMThemeManager *)themeManager;
|
2013-07-20 06:56:17 -05:00
|
|
|
- (MGMAccountController *)accountController;
|
2010-09-24 15:35:47 -05:00
|
|
|
|
2010-09-30 12:27:22 -05:00
|
|
|
- (void)showAccountSetup;
|
|
|
|
- (void)dismissAccountSetup:(MGMAccountSetup *)theAccountSetup;
|
2013-07-20 06:56:17 -05:00
|
|
|
|
|
|
|
- (void)showReverseLookupWithNumber:(NSString *)theNumber;
|
|
|
|
- (void)dismissReverseLookup:(MGMReverseLookup *)theReverseLookup;
|
|
|
|
|
|
|
|
- (void)showMultiSMSWithInstance:(MGMInstance *)theInstance;
|
|
|
|
- (void)dismissMultiSMS:(MGMVoiceMultiSMS *)theMultiSMS;
|
|
|
|
|
|
|
|
#if MGMSIPENABLED
|
|
|
|
- (void)showCallView:(MGMSIPCallView *)theCallView;
|
|
|
|
- (void)dismissCallView:(MGMSIPCallView *)theCallView;
|
|
|
|
#endif
|
2010-09-24 15:35:47 -05:00
|
|
|
@end
|