-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTweak.xm
452 lines (330 loc) · 10.3 KB
/
Tweak.xm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
//#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#include <substrate.h>
#import <ifaddrs.h>
#import <arpa/inet.h>
@interface SBWallpaperEffectView : UIView
@end
@interface SBDockView : UIView
@property(nonatomic) CGFloat alpha;
@property(retain, nonatomic) SBWallpaperEffectView *_backgroundView;
@end
@interface SBAlertView : UIView {
//SBAlert* _alert;
unsigned _shouldAnimateIn : 1;
}
@end
@interface SBUIAction : NSObject
- (id)initWithTitle:(id)arg1 handler:(id /* block */)arg2;
- (id)initWithTitle:(id)arg1 subtitle:(id)arg2 handler:(id /* block */)arg3;
- (id)initWithTitle:(id)arg1 subtitle:(id)arg2 image:(id)arg3 badgeView:(id)arg4 handler:(id /* block */)arg5;
- (id)initWithTitle:(id)arg1 subtitle:(id)arg2 image:(id)arg3 handler:(id /* block */)arg4;
@end
@protocol CCUIButtonModuleDelegate <NSObject>
@required
- (void)buttonModule:(id)arg1 willExecuteSecondaryActionWithCompletionHandler:(id /* block */)arg2;
@end
@interface CCUIButtonModule : NSObject
- (id<CCUIButtonModuleDelegate>)delegate;
@end
@interface CCUIWiFiSetting : CCUIButtonModule
@end
/*
@interface _UIActionSlider : UIControl
-(void)setTrackText:(NSString *)arg1 ;
@end
@interface SBPowerDownView : SBAlertView
@end
%hook SBPowerDownController
-(void)activate{
SBPowerDownView *powerDownView = MSHookIvar<SBPowerDownView *>(self, "_powerDownView"); // Than
_UIActionSlider *actionSlider = MSHookIvar<_UIActionSlider *>(powerDownView, "_actionSlider");
[actionSlider setTrackText:@"Are you sure?"];
%orig;
}
%end
*/
/****************************
Dock modifiers
****************************/
//Fjerner Doc'en
%hook SBDockView
-(void)layoutSubviews
{
%orig;
SBWallpaperEffectView *backgroundView = MSHookIvar<SBWallpaperEffectView *>(self, "_backgroundView");
backgroundView.hidden = YES;
}
//Sætter Alpha på dock'en - hvis man vil beholde den.
/* - (void)setBackgroundAlpha:(double)arg1
{
%orig;
MSHookIvar<SBWallpaperEffectView *>(self, "_backgroundView").alpha = 0.0;
}*/
%end
/****************************
CCSetings modifiers
****************************/
@interface SBFButton : UIButton
-(id)initWithFrame:(CGRect)arg1 ;
-(void)setHighlighted:(BOOL)arg1 ;
-(void)setSelected:(BOOL)arg1 ;
-(void)_updateSelected:(BOOL)arg1 highlighted:(BOOL)arg2 ;
-(BOOL)_drawingAsSelected;
-(void)_touchUpInside;
-(void)_updateForStateChange;
@end
@protocol CCUIControlCenterButtonDelegate <NSObject>
@end
@interface CCUIControlCenterButton : SBFButton {
unsigned long long _buttonType;
UIColor* _selectedColor;
UIImageView* _glyphImageView;
UILabel* _label;
UIImageView* _alteredStateGlyphImageView;
UILabel* _alteredStateLabel;
UIView* _backgroundFlatColorView;
BOOL _animatesStateChanges;
BOOL _showingMenu;
id<CCUIControlCenterButtonDelegate> _delegate;
unsigned long long _roundCorners;
UIImage* _glyphImage;
UIImage* _selectedGlyphImage;
double _naturalHeight;
}
-(void)setText:(NSString *)arg1 ;
-(void)setEnabled:(BOOL)arg1 ;
-(void)setText:(NSString *)arg1 ;
-(NSString *)text;
-(void)dealloc;
@end
@interface CCUIControlCenterPushButton : CCUIControlCenterButton {
NSString* _identifier;
NSNumber* _sortKey;
}
@property (nonatomic,copy) NSString * identifier; //@synthesize identifier=_identifier - In the implementation block
@property (nonatomic,copy) NSNumber * sortKey; //@synthesize sortKey=_sortKey - In the implementation block
-(id)initWithFrame:(CGRect)arg1 ;
-(id)description;
-(NSString *)identifier;
-(void)setIdentifier:(NSString *)arg1 ;
-(NSNumber *)sortKey;
-(void)setSortKey:(NSNumber *)arg1 ;
@end
@interface CCUIControlCenterSectionView : UIView {
long long _layoutStyle;
}
@end
@interface CCUINightShiftContentView : CCUIControlCenterSectionView {
CCUIControlCenterPushButton* _button;
}
@end
@interface pkaDblBtn : CCUINightShiftContentView {
CCUIControlCenterPushButton* _button2;
}
@end
//kan vi tilføje en ny knap til nightshift dimsen?
/*%hook SBControlCenterController
/*UIButton *btn;
btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
btn.frame = CGRectMake(15.0, 375.0 ,280.0, 20.0);
[btn setTitle:@"Respring" forState:UIControlStateNormal];
[btn setTitle:@"Done" forState:UIControlStateHighlighted];
[btn setTitleColor:[UIColor blackColor]forState:UIControlStateNormal];
*/
//-(void)_beginPresentation{
//BOOL* isAirPlayEnabled = MSHookIvar<CCUIAirStuffSectionController *>(MSHookIvar<id>(MSHookIvar<id>(self, "_viewController"), "_contentView"), "_airPlaySection").isVisible;
//isAirPlayEnabled = FALSE;
/* UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Connect VPN"
message:@"Do you with to connect to your VPN?"
delegate:self
cancelButtonTitle:@"Nope"
otherButtonTitles:@"Yes",nil];
[alert show];
// [btn addTarget:self action:@selector(respring:) forControlEvents:UIControlEventTouchDown];
// [[self window] addSubview:btn];
%orig;
}
%end
*/
/*%hook CCUIControlCenterViewController
-(double)_scrollviewContentMaxHeight{
return 245.0;
}
%end*/
%hook CCUIControlCenterContainerView
-(double)_contentHeight{ return 245.0;}
%end
%hook CCUIControlCenterPushButtonSettings
-(void)setEnabled:(BOOL)arg1{
%orig;
return;
}
%end
//disables colors on buttons in ControlCenter
%hook CCUIControlCenterButton
-(id)_effectiveSelectedColor{
return 0;
}
%end
%hook CCUIPersonalHotspotSetting
+(BOOL)isSupported:(int)arg1{ return TRUE; }
+(BOOL)isInternalButton{ return FALSE; }
%end
%hook CCUILowPowerModeSetting
+(BOOL)isSupported:(int)arg1{ return TRUE; }
+(BOOL)isInternalButton{ return FALSE; }
-(id)glyphImageForState:(int)arg1{
return [UIImage imageNamed:@"[email protected]" inBundle:[NSBundle bundleWithPath:@"/Applications/Activator.app/"] compatibleWithTraitCollection:nil];
}
%end
%hook CCUIRecordScreenShortcut
+(BOOL)isSupported:(int)arg1{
return TRUE;
}
+(BOOL)isInternalButton{
return FALSE;
}
-(BOOL)isRestricted{
return FALSE;
}
//Tilføjer et ikon til record knappen
- (UIImage *)glyphImageForState:(UIControlState)state
{
return [UIImage imageNamed:@"[email protected]" inBundle:[NSBundle bundleWithPath:@"/Applications/Camera.app/"] compatibleWithTraitCollection:nil];
}
%end
%hook CCUICalculatorShortcut
- (UIImage *)glyphImageForState:(UIControlState)state
{
return [UIImage imageNamed:@"[email protected]" inBundle:[NSBundle bundleWithPath:@"/Applications/Activator.app/"] compatibleWithTraitCollection:nil];
}
-(NSURL *)url{
return [NSURL URLWithString:@"prefs:root=General&path=Network/VPN"];
}
-(void)activateApp{
[[UIApplication sharedApplication] openURL:
[NSURL URLWithString:@"prefs:root=VPN"]];
}
%end
/*%
hook CCUIMuteSetting
+(BOOL)isSupported:(int)arg1{
return TRUE;
}
-(BOOL)isRestricted{
return FALSE;
}
%end
%hook CCUIAirStuffSectionController
-(void)_airDropTapped:(id)arg1{
}
%end
%hook CCUIArtraceShortcut
+(BOOL)isSupported:(int)arg1{
return TRUE;
}
+(BOOL)isInternalButton{
return FALSE;
}
-(NSURL *)url{
return [NSURL URLWithString:@"prefs:root=General&path=Network/VPN"];
}
-(void)activateApp{
[[UIApplication sharedApplication] openURL:
[NSURL URLWithString:@"prefs:root=VPN"]];
}
%end
*/
/*%hook CCUIWiFiSetting
-(void)_setWifiEnabled:(BOOL)arg1 {
if (arg1 == FALSE){
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Connect VPN"
message:@"Do you with to connect to your VPN?"
delegate:self
cancelButtonTitle:@"Nope"
otherButtonTitles:@"Yes",nil];
[alert show];
}
}
%end*/
/****************************
Carrier modifiers
****************************/
//Hides the signalstrength dots..
%hook UIStatusBarSignalStrengthItemView
- (id)contentsImage{
return NULL;
}
%end
//Hides the CarrierName
%hook UIStatusBarServiceItemView
-(id)_serviceContentsImage{
return NULL;
}
-(id)contentsImage{
return NULL;
}
%end
/****************************
SpringBoard modifiers
****************************/
%hook SBIconLabelImageParameters
-(NSString *)text{
return @"";
}
%end
%hook SBFolder
-(NSString *)displayName{
return @"";
}
%end
//Fjerner folder background'en
%hook SBFolderBackgroundView
-(id)_tintViewBackgroundColorAtFullAlpha{
return NULL;
}
%end
%hook BSPlatform
- (BOOL)hasOrbCapability {
return YES; // To support 3D touch emulating tweaks like Peek-a-boo
}
%end
%hook CCUIWiFiSetting
- (int)orbBehavior {
return 2; // returning 2 allows the 3D touch to be enabled and also tells it where to pull the options from.
}
- (NSArray *)buttonActions {
NSMutableArray *actions = [NSMutableArray new];
struct ifaddrs *interfaces = NULL;
struct ifaddrs *temp_addr = NULL;
NSString *wifiAddress = nil;
NSString *cellAddress = nil;
// retrieve the current interfaces - returns 0 on success
if(!getifaddrs(&interfaces)) {
// Loop through linked list of interfaces
temp_addr = interfaces;
while(temp_addr != NULL) {
if(temp_addr->ifa_addr->sa_family == AF_INET) {
NSString *name = [NSString stringWithUTF8String:temp_addr->ifa_name];
NSString *addr = [NSString stringWithUTF8String:inet_ntoa(((struct sockaddr_in *)temp_addr->ifa_addr)->sin_addr)]; // pdp_ip0
//NSLog(@"NAME: \"%@\" addr: %@", name, addr); // see for yourself
if([name isEqualToString:@"en0"]) {
// Interface is the wifi connection on the iPhone
wifiAddress = addr;
}
}
temp_addr = temp_addr->ifa_next;
}
// Free memory
freeifaddrs(interfaces);
}
NSString *addr = wifiAddress ? wifiAddress : cellAddress;
// SBUIAction can be thought of as an UIApplicationShortcutItem
SBUIAction *network = [[NSClassFromString(@"SBUIAction") alloc] initWithTitle:@"Current IP:" subtitle:addr handler:^(void) {
[[self delegate] buttonModule:self willExecuteSecondaryActionWithCompletionHandler:nil]; // this must be called to dismiss the 3D Touch Menu
}];
[actions addObject:network];
return [actions copy];
}
%end