1
1
mirror of https://github.com/Burrit0z/Dockify_Source.git synced 2025-07-01 17:16:46 +00:00
This commit is contained in:
Burrit0z
2019-12-28 09:13:37 -05:00
parent d538437880
commit c0d7152d3e

28
Tweak.x
View File

@ -1,7 +1,8 @@
//Set up stuff
//#import <SpringBoardHome/SBDockIconListView.h>
//#import <SpringBoardHome/SBDockView.h>
//#import <SpringBoardHome/SBIconListView.h>
//I looked at Kritanta's "Home Plus" tweak for help with ios13 stuff. I DID NOT
//copy anything, at least knowingly because these tweaks are simillar, please
//understand the code may be simillar becuase we are doing similar things.
//I am liscensing this under MIT, anyone can use anything they need to from here
#include <UIKit/UIKit.h>
#import <Cephei/HBPreferences.h>
@interface SBDockView
@ -14,6 +15,13 @@
@interface SBIconListView
@end
@interface SBRootIconListView : UIView
+ (NSInteger)iconColumnsForInterfaceOrientation;
@end
@interface SBDockIconListView : SBRootIconListView
@end
//Set up variables for use with Cephei
static BOOL transparent;
static BOOL hidden;
@ -27,6 +35,7 @@ HBPreferences *preferences;
%hook SBDockView
//this deals with everything adjusting opacity/transparency
//ios 12 and 13
-(void)setBackgroundAlpha:(double)arg1 {
if (transparent == NO && hidden == NO) { //if not transparent and not hidden
%orig(customOpacity);
@ -51,6 +60,7 @@ HBPreferences *preferences;
%hook SBDockIconListView
//ios 12
+(NSInteger)maxIcons {
if (hidden) {
return (0);
@ -59,15 +69,7 @@ HBPreferences *preferences;
}
}
-(BOOL)allowsAddingIconCount:(unsigned long long)arg1 {
if (hidden) {
return (0);
%orig(NO);
} else {
%orig(YES);
return (setIconNumber);
}
}
//ios13
%end