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.

46 line
1.8KB

  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 MTMaterialView : UIView
  13. @property (nonatomic, assign) BOOL recipeDynamic;
  14. -(id)_initWithRecipe:(NSInteger)arg1 configuration:(NSInteger)arg2 initialWeighting:(CGFloat)arg3 scaleAdjustment:(id)arg4;
  15. +(id)materialViewWithRecipe:(NSInteger)arg1 options:(NSInteger)arg2 initialWeighting:(CGFloat)arg3 scaleAdjustment:(id)arg4;
  16. @end
  17. @interface BCBatteryDeviceController : NSObject
  18. @property (nonatomic, strong) NSArray *sortedDevices;
  19. -(id)_sortedDevices;
  20. +(id)sharedInstance;
  21. @end
  22. @interface BCBatteryDevice : NSObject
  23. @property (nonatomic, strong) id kaiCell;
  24. @property (nonatomic, strong) NSString *name;
  25. @property (nonatomic, assign) long long percentCharge;
  26. @property (nonatomic, assign) BOOL charging;
  27. @property (nonatomic, assign) BOOL batterySaverModeActive;
  28. @property (nonatomic, strong) NSString *identifier;
  29. -(id)glyph;
  30. @end
  31. @interface KAIBatteryCell : UIView
  32. @property (nonatomic, strong) BCBatteryDevice *device;
  33. @property (nonatomic, strong) UILabel *label;
  34. @property (nonatomic, strong) UILabel *percentLabel;
  35. @property (nonatomic, strong) UIImageView *glyphView;
  36. @property (nonatomic, strong) _UIBatteryView *battery;
  37. -(instancetype)initWithFrame:(CGRect)arg1 device:(BCBatteryDevice *)device;
  38. -(void)updateInfo;
  39. +(instancetype)cellForDeviceIfExists:(BCBatteryDevice *)device frameToCreateNew:(CGRect)arg2;
  40. +(void)resetArray;
  41. @end