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.

39 lines
953B

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