Device battery indicators on your Lock Screen
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

49 lines
1.9KB

  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 internal;
  28. @property (nonatomic, assign) BOOL batterySaverModeActive;
  29. @property (nonatomic, strong) NSString *identifier;
  30. -(id)glyph;
  31. -(id)kaiCellForDevice;
  32. -(void)resetKaiCellForNewPrefs;
  33. @end
  34. @interface KAIBatteryCell : UIView
  35. @property (nonatomic, strong) BCBatteryDevice *device;
  36. @property (nonatomic, strong) UILabel *label;
  37. @property (nonatomic, strong) UILabel *percentLabel;
  38. @property (nonatomic, strong) UIImageView *glyphView;
  39. @property (nonatomic, strong) _UIBatteryView *battery;
  40. @property (nonatomic, strong) NSLayoutConstraint *width;
  41. @property (nonatomic, strong) NSLayoutConstraint *height;
  42. -(instancetype)initWithFrame:(CGRect)arg1 device:(BCBatteryDevice *)device;
  43. -(void)updateInfo;
  44. @end