mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-01-11 22:40:19 +00:00
63 lines
No EOL
1.8 KiB
Objective-C
63 lines
No EOL
1.8 KiB
Objective-C
#import <YouTubeHeader/YTCommonColorPalette.h>
|
|
#import "uYouPlus.h"
|
|
|
|
@interface YTSingleVideoController : NSObject
|
|
-(float)playbackRate;
|
|
-(void)setPlaybackRate:(float)arg1;
|
|
@end
|
|
|
|
@interface YTPlayerViewController : UIViewController
|
|
-(YTSingleVideoController *)activeVideo;
|
|
@end
|
|
|
|
@interface PlayerManager : NSObject
|
|
// Prevent uYou player bar from showing when not playing downloaded media
|
|
- (float)progress;
|
|
// Prevent uYou's playback from colliding with YouTube's
|
|
- (void)setSource:(id)source;
|
|
- (void)pause;
|
|
+ (id)sharedInstance;
|
|
@end
|
|
|
|
// iOS 16 uYou crash fix - @level3tjg: https://github.com/qnblackcat/uYouPlus/pull/224
|
|
@interface OBPrivacyLinkButton : UIButton
|
|
- (instancetype)initWithCaption:(NSString *)caption
|
|
buttonText:(NSString *)buttonText
|
|
image:(UIImage *)image
|
|
imageSize:(CGSize)imageSize
|
|
useLargeIcon:(BOOL)useLargeIcon
|
|
displayLanguage:(NSString *)displayLanguage;
|
|
@end
|
|
|
|
// uYouLocal fix
|
|
// @interface YTLocalPlaybackController : NSObject
|
|
// - (id)activeVideo;
|
|
// @end
|
|
|
|
// uYou theme fix
|
|
// @interface YTAppDelegate ()
|
|
// @property(nonatomic, strong) id downloadsVC;
|
|
// @end
|
|
|
|
// Fix uYou's appearance not updating if the app is backgrounded
|
|
@interface DownloadsPagerVC : UIViewController
|
|
- (NSArray<UIViewController *> *)viewControllers;
|
|
- (void)updatePageStyles;
|
|
@end
|
|
@interface DownloadingVC : UIViewController
|
|
- (void)updatePageStyles;
|
|
- (UITableView *)tableView;
|
|
@end
|
|
@interface DownloadingCell : UITableViewCell
|
|
- (void)updatePageStyles;
|
|
@end
|
|
@interface DownloadedVC : UIViewController
|
|
- (void)updatePageStyles;
|
|
- (UITableView *)tableView;
|
|
@end
|
|
@interface DownloadedCell : UITableViewCell
|
|
- (void)updatePageStyles;
|
|
@end
|
|
@interface UILabel (uYou)
|
|
+ (id)_defaultColor;
|
|
@end |