Device battery indicators on your Lock Screen
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
880B

  1. #import <UIKit/UIKit.h>
  2. #import <substrate.h>
  3. @interface _UIBatteryView : UIView
  4. @property (nonatomic, assign) CGFloat chargePercent;
  5. @property (nonatomic, assign) CGFloat bodyColorAlpha;
  6. @property (nonatomic, assign) CGFloat pinColorAlpha;
  7. @property (nonatomic, assign) BOOL showsPercentage;
  8. @property (nonatomic, assign) BOOL saverModeActive;
  9. @property (nonatomic, assign) BOOL showsInlineChargingIndicator;
  10. @property (nonatomic, assign) NSInteger chargingState;
  11. @end
  12. @interface BCBatteryDeviceController
  13. @property (nonatomic, strong) NSArray *sortedDevices;
  14. -(id)_sortedDevices;
  15. +(id)sharedInstance;
  16. @end
  17. @interface BCBatteryDevice : BCBatteryDeviceController
  18. -(id)glyph;
  19. @end
  20. @interface KAIBattery : UIView
  21. @property (nonatomic, strong) NSArray *devices;
  22. @property (nonatomic, assign) NSInteger number;
  23. -(instancetype)initWithFrame:(CGRect)arg1;
  24. -(void)updateBattery;
  25. @end