Permalink
Cannot retrieve contributors at this time
Jump to Line
Fetching contributors…
| #import <Availability2.h> | |
| #if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_3_2 | |
| #import <Foundation/NSObject.h> | |
| #import <GraphicsServices/GSEvent.h> | |
| @interface SBBrightnessController : NSObject { | |
| BOOL _debounce; | |
| } | |
| +(id)sharedBrightnessController; | |
| -(float)_calcButtonRepeatDelay; | |
| -(void)adjustBacklightLevel:(BOOL)level; | |
| -(void)increaseBrightnessAndRepeat; | |
| -(void)decreaseBrightnessAndRepeat; | |
| -(void)handleBrightnessEvent:(GSEventRef)event; | |
| @end | |
| #endif |