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.

35 lines
852B

  1. #import <Preferences/PSListController.h>
  2. #import <Preferences/PSTableCell.h>
  3. #import <Preferences/PSSpecifier.h>
  4. #import <Preferences/PSListItemsController.h>
  5. #import <Foundation/NSUserDefaults.h>
  6. @interface PSListController (kai)
  7. -(void)setFrame:(CGRect)frame;
  8. @end
  9. @interface NSTask : NSObject
  10. @property(copy) NSArray *arguments;
  11. @property(copy) NSString *launchPath;
  12. - (id)init;
  13. - (void)waitUntilExit;
  14. - (void)launch;
  15. @end
  16. @interface KAIRootListController : PSListController
  17. @property (nonatomic, strong) UILabel *titleLabel;
  18. @property (nonatomic, strong) UIImageView *iconView;
  19. @end
  20. @protocol PreferencesTableCustomView
  21. - (id)initWithSpecifier:(id)arg1;
  22. @end
  23. @interface KaiHeaderCell : PSTableCell <PreferencesTableCustomView> {
  24. UIView *bgView;
  25. UILabel *packageNameLabel;
  26. UILabel *developerLabel;
  27. UILabel *versionLabel;
  28. }
  29. @end