[ios] Disabled idle screen while my position is active

@TODO enable idle mode when gps is not centered on the screen
This commit is contained in:
Alex Zolotarev 2011-08-01 18:13:20 +02:00 committed by Alex Zolotarev
parent 69a244a430
commit 1785cc8617
4 changed files with 21 additions and 2 deletions

View file

@ -67,12 +67,14 @@ storage::Storage m_storage;
m_framework->StartLocationService(bind(locUpdatedImpl, self, onLocUpdatedSel));
((UIBarButtonItem *)sender).style = UIBarButtonItemStyleDone;
((UIBarButtonItem *)sender).image = [UIImage imageNamed:@"location-search.png"];
[[MapsAppDelegate theApp] disableStandby];
}
else
{
m_framework->StopLocationService();
((UIBarButtonItem *)sender).style = UIBarButtonItemStyleBordered;
m_myPositionButton.image = [UIImage imageNamed:@"location.png"];
[[MapsAppDelegate theApp] enableStandby];
}
}

View file

@ -9,6 +9,7 @@
{
GuideViewController * m_guideViewController;
SettingsManager * m_settingsManager;
NSInteger m_standbyCounter;
}
@property (nonatomic, retain) IBOutlet UIWindow * window;
@ -21,5 +22,7 @@
- (GuideViewController *)guideViewController;
- (SettingsManager *)settingsManager;
- (void)onSloynikEngineInitialized:(void *)pEngine;
- (void)disableStandby;
- (void)enableStandby;
@end

View file

@ -86,5 +86,18 @@
[super dealloc];
}
- (void) disableStandby
{
++m_standbyCounter;
[UIApplication sharedApplication].idleTimerDisabled = YES;
}
- (void) enableStandby
{
--m_standbyCounter;
if (m_standbyCounter == 0)
[UIApplication sharedApplication].idleTimerDisabled = NO;
}
@end

View file

@ -1,6 +1,7 @@
#include "../../platform/download_manager.hpp"
#import "IPhoneDownload.h"
#import "MapsAppDelegate.h"
#import <UIKit/UIApplication.h>
@ -42,7 +43,7 @@ public:
// save download in array to cancel it later if necessary
[activeDownloads addObject:download];
// prevent device from going to standby
[UIApplication sharedApplication].idleTimerDisabled = YES;
[[MapsAppDelegate theApp] disableStandby];
}
else
{
@ -71,7 +72,7 @@ public:
}
// enable standby if no more downloads are left
if ([activeDownloads count] == 0)
[UIApplication sharedApplication].idleTimerDisabled = NO;
[[MapsAppDelegate theApp] enableStandby];
}
virtual void CancelAllDownloads()