-
Notifications
You must be signed in to change notification settings - Fork 120
/
advanced_settings.py
618 lines (503 loc) · 34.8 KB
/
advanced_settings.py
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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
#!/usr/bin/env python
# This file is part of PixelFlasher https://github.com/badabing2005/PixelFlasher
#
# Copyright (C) 2024 Badabing2005
# SPDX-License-Identifier: AGPL-3.0-or-later
#
# This program is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option) any
# later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
# for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
# Also add information on how to contact you by electronic and paper mail.
#
# If your software can interact with users remotely through a computer network,
# you should also make sure that it provides a way for users to get its source.
# For example, if your program is a web application, its interface could
# display a "Source" link that leads users to an archive of the code. There are
# many ways you could offer source, and different solutions will be better for
# different programs; see section 13 for the specific requirements.
#
# You should also get your employer (if you work as a programmer) or school, if
# any, to sign a "copyright disclaimer" for the program, if necessary. For more
# information on this, and how to apply and follow the GNU AGPL, see
# <https://www.gnu.org/licenses/>.
import wx
import images as images
import webbrowser
from runtime import *
# ============================================================================
# Class AdvancedSettings
# ============================================================================
class AdvancedSettings(wx.Dialog):
def __init__(self, parent, *args, **kwargs):
wx.Dialog.__init__(self, parent, *args, **kwargs, style=wx.DEFAULT_DIALOG_STYLE|wx.RESIZE_BORDER)
self.SetTitle("Advanced Configuration Settings")
# Top Part:
top_panel = wx.Panel(self)
top_sizer = wx.BoxSizer(wx.VERTICAL)
warning_sizer = wx.BoxSizer(wx.HORIZONTAL)
warning_text = '''WARNING!
This is advanced configuration.
Unless you know what you are doing,
you should not be enabling it.
YOU AND YOU ALONE ARE RESPONSIBLE FOR ANYTHING THAT HAPPENS TO YOUR DEVICE.
THIS TOOL IS CODED WITH THE EXPRESS ASSUMPTION THAT YOU ARE FAMILIAR WITH
ADB, MAGISK, ANDROID, AND ROOT.
IT IS YOUR RESPONSIBILITY TO ENSURE THAT YOU KNOW WHAT YOU ARE DOING.
'''
# warning label
self.warning_label = wx.StaticText(parent=top_panel, id=wx.ID_ANY, label=warning_text, pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.ALIGN_CENTER_HORIZONTAL)
self.warning_label.Wrap(-1)
self.warning_label.SetForegroundColour(wx.Colour(255, 0, 0))
warning_sizer.Add(self.warning_label, proportion=0, flag=wx.LEFT|wx.RIGHT|wx.EXPAND, border=80)
top_sizer.Add(warning_sizer, proportion=0, flag=wx.EXPAND, border=5)
# advanced options
advanced_options_sizer = wx.BoxSizer(wx.HORIZONTAL)
self.advanced_options_checkbox = wx.CheckBox(parent=top_panel, id=wx.ID_ANY, label=u"Enable Advanced Options", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
self.advanced_options_checkbox.SetToolTip(u"Expert mode")
advanced_options_sizer.Add(self.advanced_options_checkbox, proportion=0, flag=wx.ALL, border=5)
top_sizer.Add(advanced_options_sizer, proportion=0, flag=wx.EXPAND, border=5)
# static line
staticline = wx.StaticLine(parent=top_panel, id=wx.ID_ANY, pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.LI_HORIZONTAL)
top_sizer.Add(staticline, proportion=0, flag=wx.EXPAND, border=5)
top_panel.SetSizer(top_sizer)
# Middle Part: Scrolled panel with widgets
scrolled_panel = wx.ScrolledWindow(self, style=wx.VSCROLL | wx.HSCROLL)
middle_sizer = wx.BoxSizer(wx.VERTICAL)
fgs1 = wx.FlexGridSizer(cols=2, vgap=10, hgap=10)
# this makes the second column expandable (index starts at 0)
fgs1.AddGrowableCol(1, 1)
# this makes the height expandable
fgs1.AddGrowableRow(0, 1)
# Magisk Package name
package_name_label = wx.StaticText(parent=scrolled_panel, label=u"Magisk Package Name")
self.package_name = wx.TextCtrl(parent=scrolled_panel, id=-1, size=(-1, -1))
self.package_name.SetToolTip(u"If you have hidden Magisk,\nset this to the hidden package name.")
self.reset_magisk_pkg = wx.BitmapButton(parent=scrolled_panel, id=wx.ID_ANY, bitmap=wx.NullBitmap, pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.BU_AUTODRAW)
self.reset_magisk_pkg.SetBitmap(images.scan_24.GetBitmap())
self.reset_magisk_pkg.SetToolTip(f"Resets package name to default: {MAGISK_PKG_NAME}")
package_name_sizer = wx.BoxSizer(orient=wx.HORIZONTAL)
package_name_sizer.Add(self.package_name, proportion=1, flag=wx.ALL, border=0)
package_name_sizer.Add(self.reset_magisk_pkg, proportion=0, flag=wx.LEFT|wx.ALIGN_CENTER_VERTICAL, border=5)
# only add if we're on linux
if sys.platform.startswith("linux"):
# Linux File Explorer
file_explorer_label = wx.StaticText(scrolled_panel, label=u"Linux File Explorer:")
file_explorer_label.SetSize(self.package_name.GetSize())
self.file_explorer = wx.TextCtrl(scrolled_panel, -1, size=(300, -1))
self.file_explorer.SetToolTip(u"Set full path to File Explorer.\nDefault: Nautilus")
file_explorer_sizer = wx.BoxSizer(orient=wx.HORIZONTAL)
file_explorer_sizer.Add((20, 0), proportion=0, flag=wx.ALL, border=5)
file_explorer_sizer.Add(self.file_explorer, proportion=0, flag=wx.LEFT, border=10)
# Linux Shell
shell_label = wx.StaticText(parent=scrolled_panel, label=u"Linux Shell:")
shell_label.SetSize(self.package_name.GetSize())
self.shell = wx.TextCtrl(parent=scrolled_panel, id=wx.ID_ANY, size=(300, -1))
self.shell.SetToolTip(u"Set full path to Linux Shell.\nDefault: gnome-terminal")
shell_sizer = wx.BoxSizer(orient=wx.HORIZONTAL)
shell_sizer.Add((20, 0), proportion=0, flag=wx.ALL, border=5)
shell_sizer.Add(self.shell, proportion=0, flag=wx.LEFT, border=10)
# Offer Patch methods
self.patch_methods_checkbox = wx.CheckBox(parent=scrolled_panel, id=wx.ID_ANY, label=u"Offer Patch Methods", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
self.patch_methods_checkbox.SetToolTip(u"When patching the choice of method is presented.")
self.recovery_patch_checkbox = wx.CheckBox(parent=scrolled_panel, id=wx.ID_ANY, label=u"Patching Recovery Partition", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
self.recovery_patch_checkbox.SetToolTip(u"Enabling this will show an option to patch a recovery partition.\nThis should be kept disabled unless you have an old device.\n(most A-only devices launched with Android 9, legacy SAR)")
# Use Busybox Shell
self.use_busybox_shell_checkbox = wx.CheckBox(parent=scrolled_panel, id=wx.ID_ANY, label=u"Use Busybox Shell", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
self.use_busybox_shell_checkbox.SetToolTip(u"When creating a patch, if this is checked, busybox ash will be used as shell.")
# Enable Low Memory
self.low_mem_checkbox = wx.CheckBox(parent=scrolled_panel, id=wx.ID_ANY, label=u"System has low memory", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
self.low_mem_checkbox.SetToolTip(u"Use this option to sacrifice speed in favor of memory.")
# Extra img extraction
self.extra_img_extracts_checkbox = wx.CheckBox(parent=scrolled_panel, id=wx.ID_ANY, label=u"Extra img extraction", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
self.extra_img_extracts_checkbox.SetToolTip(u"When checked and available in payload.bin\nAlso extract vendor_boot.img, vendor_kernel_boot.img, dtbo.img, super_empty.img")
# Show Notifications
self.show_notifications_checkbox = wx.CheckBox(parent=scrolled_panel, id=wx.ID_ANY, label=u"Show notifications", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
self.show_notifications_checkbox.SetToolTip(u"When checked PixelFlasher will display system toast notifications.")
# Always Create boot.tar
self.create_boot_tar_checkbox = wx.CheckBox(parent=scrolled_panel, id=wx.ID_ANY, label=u"Always create boot.tar", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
self.create_boot_tar_checkbox.SetToolTip(u"When checked, PixelFlasher always creates boot.tar of the patched boot file.\nIf unchecked, only for Samsung firmware boot.tar will be created.")
self.create_boot_tar_checkbox.Disable()
# Check for updates options
self.check_for_update_checkbox = wx.CheckBox(parent=scrolled_panel, id=wx.ID_ANY, label=u"Check for updates", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
self.check_for_update_checkbox.SetToolTip(u"Checks for available updates on startup")
# Check for Minimum Disk space option
self.check_for_disk_space_checkbox = wx.CheckBox(parent=scrolled_panel, id=wx.ID_ANY, label=u"Check for Minimum Disk (5Gb)", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
self.check_for_disk_space_checkbox.SetToolTip(u"Enforces minimum disk space of 5 Gb to allow flashing.\nThis avoids storage related issues.")
# Check for Bootloader unlocked option
self.check_for_bootloader_unlocked_checkbox = wx.CheckBox(parent=scrolled_panel, id=wx.ID_ANY, label=u"Check for bootloader unlocked", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
self.check_for_bootloader_unlocked_checkbox.SetToolTip(u"Checks to make sure bootloader is unlocked before flashing.")
# Check for Firmware hash validity option
self.check_for_firmware_hash_validity_checkbox = wx.CheckBox(parent=scrolled_panel, id=wx.ID_ANY, label=u"Check for firmware hash validity", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
self.check_for_firmware_hash_validity_checkbox.SetToolTip(u"Checks for sha256 portion to be in the image filename to detect Pixel compatible image.")
# Keep temporary support files option
self.keep_temporary_support_files_checkbox = wx.CheckBox(parent=scrolled_panel, id=wx.ID_ANY, label=u"Keep temporary support files", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
self.keep_temporary_support_files_checkbox.SetToolTip(u"It keeps the temporary support files.\nUseful for inspecting what data is included in support.zip.")
# Check if Magisk modules have updates
self.check_module_updates = wx.CheckBox(parent=scrolled_panel, id=wx.ID_ANY, label=u"Check Magisk modules for updates", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
self.check_module_updates.SetToolTip(u"It checks if the module has updates.\nDisable this if you don't want to check for updates or\n if some module update server has issues and delays the process.")
# Show custom ROM options
self.show_custom_rom_options = wx.CheckBox(parent=scrolled_panel, id=wx.ID_ANY, label=u"Show custom ROM options", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
self.show_custom_rom_options.SetToolTip(u"Make sure you check if your ROM is supported.")
# Sanitize support files
self.sanitize_support_files = wx.CheckBox(parent=scrolled_panel, id=wx.ID_ANY, label=u"Sanitize (Redact) support files", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
self.sanitize_support_files.SetToolTip(u"The support files are always encrypted.\nThis option redacts sensitive information from the support files.\nBut impedes support and is not recommended.")
# Force codepage
self.force_codepage_checkbox = wx.CheckBox(parent=scrolled_panel, id=wx.ID_ANY, label=u"Force codepage to", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
self.force_codepage_checkbox.SetToolTip(u"Uses specified code page instead of system code page")
self.code_page = wx.TextCtrl(parent=scrolled_panel, id=wx.ID_ANY, size=(-1, -1))
# Delete Bundle libs
self.delete_bundled_libs_label = wx.StaticText(parent=scrolled_panel, id=wx.ID_ANY, label=u"Delete bundled libs")
self.delete_bundled_libs_label.SetToolTip(u"The listed libraries would be deleted from the PF bundle to allow system defined ones to be used.")
self.delete_bundled_libs = wx.SearchCtrl(scrolled_panel, style=wx.TE_LEFT)
self.delete_bundled_libs.ShowCancelButton(True)
self.delete_bundled_libs.SetDescriptiveText("Example: libreadline.so.8, libgdk*")
self.delete_bundled_libs.ShowSearchButton(False)
# Override KMI
self.override_kmi_label = wx.StaticText(parent=scrolled_panel, id=wx.ID_ANY, label=u"Override KMI")
self.override_kmi_label.SetToolTip(u"This will override the Kernel Module Interface (KMI) to the specified value.\nThis is useful for devices with custom kernels.\nThe value will be passed to KernelSU as the KMI value.")
self.override_kmi = wx.SearchCtrl(scrolled_panel, style=wx.TE_LEFT)
self.override_kmi.ShowCancelButton(True)
self.override_kmi.SetDescriptiveText("Example: 5.15.131-android14")
self.override_kmi.ShowSearchButton(False)
self.override_kmi.Disable()
# Use Custom Font
self.use_custom_font_checkbox = wx.CheckBox(parent=scrolled_panel, id=wx.ID_ANY, label=u"Use Custom Fontface", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
self.use_custom_font_checkbox.SetToolTip(u"Use custom font for monospace fonts\nMight require PixelFlasher restart to properly apply to the Console window.")
# Font Selection
fonts = wx.FontEnumerator()
fonts.EnumerateFacenames(wx.FONTENCODING_SYSTEM, fixedWidthOnly=True)
font_list = fonts.GetFacenames(wx.FONTENCODING_SYSTEM, fixedWidthOnly=True)
self.font = wx.ListBox(parent=scrolled_panel, id=wx.ID_ANY, size=(300, 100), choices=font_list)
self.font_size = wx.SpinCtrl(parent=scrolled_panel, id=wx.ID_ANY, min=6, max=50, initial=self.Parent.config.pf_font_size)
self.sample = wx.StaticText(parent=scrolled_panel, id=wx.ID_ANY, label="Sample ")
fonts_sizer = wx.BoxSizer(wx.HORIZONTAL)
fonts_sizer.Add(self.font, proportion=0, flag=wx.ALL|wx.ALIGN_CENTER_VERTICAL, border=0)
fonts_sizer.Add(self.font_size, proportion=0, flag=wx.ALL|wx.ALIGN_CENTER_VERTICAL, border=5)
fonts_sizer.Add(self.sample, proportion=1, flag=wx.ALL|wx.ALIGN_CENTER_VERTICAL, border=5)
self.font.SetSelection(-1)
self.font_size.SetToolTip('Select font size')
self._onFontSelect(None)
# scrcpy 1st row widgets, select path
self.scrcpy_path_label = wx.StaticText(parent=scrolled_panel, id=wx.ID_ANY, label=u"scrcpy Path")
self.scrcpy_link = wx.BitmapButton(parent=scrolled_panel, id=wx.ID_ANY, bitmap=wx.NullBitmap, pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.BU_AUTODRAW)
self.scrcpy_link.SetBitmap(bitmap=images.open_link_24.GetBitmap())
self.scrcpy_link.SetToolTip("Download scrcpy")
self.scrcpy_path_picker = wx.FilePickerCtrl(parent=scrolled_panel, id=wx.ID_ANY, path=wx.EmptyString, message=u"Select scrcpy executable", wildcard=u"Scrcpy executable (*.exe;*)|*.exe;*", pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.FLP_USE_TEXTCTRL)
self.scrcpy_path_picker.SetToolTip("Select scrcpy executable")
self.scrcpy_h1sizer = wx.BoxSizer(orient=wx.HORIZONTAL)
self.scrcpy_h1sizer.Add(window=self.scrcpy_path_label, proportion=0, flag=wx.EXPAND)
self.scrcpy_h1sizer.AddSpacer(10)
self.scrcpy_h1sizer.Add(window=self.scrcpy_link, proportion=0, flag=wx.EXPAND)
self.scrcpy_h1sizer.AddSpacer(10)
self.scrcpy_h1sizer.Add(window=self.scrcpy_path_picker, proportion=1, flag=wx.EXPAND)
# scrcpy 2nd row flags
self.scrcpy_flags = wx.SearchCtrl(scrolled_panel, style=wx.TE_LEFT)
self.scrcpy_flags.ShowCancelButton(True)
self.scrcpy_flags.SetDescriptiveText("Flags / Arguments (Example: --video-bit-rate 2M --max-fps=30 --max-size 1024)")
self.scrcpy_flags.ShowSearchButton(False)
# build the sizers for scrcpy
scrcpy_sb = wx.StaticBox(scrolled_panel, -1, "Scrcpy settings")
scrcpy_vsizer = wx.StaticBoxSizer(scrcpy_sb, wx.VERTICAL)
scrcpy_vsizer.Add(self.scrcpy_h1sizer, proportion=1, flag=wx.ALL|wx.EXPAND, border=5)
scrcpy_vsizer.Add(self.scrcpy_flags, proportion=1, flag=wx.ALL|wx.EXPAND, border=5)
#
scrcpy_outer_sizer = wx.BoxSizer(wx.HORIZONTAL)
scrcpy_outer_sizer.AddSpacer(20)
scrcpy_outer_sizer.Add(scrcpy_vsizer, proportion=1, flag=wx.EXPAND, border=10)
scrcpy_outer_sizer.AddSpacer(20)
# Set Widget values from config
self.advanced_options_checkbox.SetValue(self.Parent.config.advanced_options)
self.package_name.SetValue(self.Parent.config.magisk)
self.patch_methods_checkbox.SetValue(self.Parent.config.offer_patch_methods)
self.recovery_patch_checkbox.SetValue(self.Parent.config.show_recovery_patching_option)
self.use_busybox_shell_checkbox.SetValue(self.Parent.config.use_busybox_shell)
self.low_mem_checkbox.SetValue(self.Parent.config.low_mem)
self.extra_img_extracts_checkbox.SetValue(self.Parent.config.extra_img_extracts)
self.show_notifications_checkbox.SetValue(self.Parent.config.show_notifications)
self.create_boot_tar_checkbox.SetValue(self.Parent.config.create_boot_tar)
self.check_for_update_checkbox.SetValue(self.Parent.config.update_check)
self.check_for_disk_space_checkbox.SetValue(self.Parent.config.check_for_disk_space)
self.check_for_bootloader_unlocked_checkbox.SetValue(self.Parent.config.check_for_bootloader_unlocked)
self.check_for_firmware_hash_validity_checkbox.SetValue(self.Parent.config.check_for_firmware_hash_validity)
self.keep_temporary_support_files_checkbox.SetValue(self.Parent.config.keep_temporary_support_files)
self.check_module_updates.SetValue(self.Parent.config.check_module_updates)
self.show_custom_rom_options.SetValue(self.Parent.config.show_custom_rom_options)
self.sanitize_support_files.SetValue(self.Parent.config.sanitize_support_files)
self.force_codepage_checkbox.SetValue(self.Parent.config.force_codepage)
self.delete_bundled_libs.SetValue(self.Parent.config.delete_bundled_libs)
self.override_kmi.SetValue(self.Parent.config.override_kmi)
self.code_page.SetValue(str(self.Parent.config.custom_codepage))
self.use_custom_font_checkbox.SetValue(self.Parent.config.customize_font)
self.font.SetStringSelection(self.Parent.config.pf_font_face)
if self.Parent.config.scrcpy and self.Parent.config.scrcpy['path'] != '' and os.path.exists(self.Parent.config.scrcpy['path']):
self.scrcpy_path_picker.SetPath(self.Parent.config.scrcpy['path'])
if self.Parent.config.scrcpy and self.Parent.config.scrcpy['flags'] != '':
self.scrcpy_flags.SetValue(self.Parent.config.scrcpy['flags'])
if sys.platform.startswith("linux"):
self.file_explorer.SetValue(self.Parent.config.linux_file_explorer)
self.shell.SetValue(self.Parent.config.linux_shell)
# add the widgets to the grid in two columns, first fix size, the second expandable.
fgs1.Add(package_name_label, 0, wx.EXPAND)
fgs1.Add(package_name_sizer, 0, wx.EXPAND)
fgs1.Add(self.patch_methods_checkbox, 0, wx.EXPAND)
fgs1.Add(self.recovery_patch_checkbox, 0, wx.EXPAND)
if sys.platform.startswith("linux"):
# only add if we're on linux
fgs1.Add(file_explorer_label, 0, wx.EXPAND)
fgs1.Add(file_explorer_sizer, 1, wx.EXPAND)
fgs1.Add(shell_label, 0, wx.EXPAND)
fgs1.Add(shell_sizer, 1, wx.EXPAND)
fgs1.Add(self.use_busybox_shell_checkbox, 0, wx.EXPAND)
fgs1.Add((0, 0))
fgs1.Add(self.low_mem_checkbox, 0, wx.EXPAND)
fgs1.Add((0, 0))
fgs1.Add(self.extra_img_extracts_checkbox, 0, wx.EXPAND)
fgs1.Add((0, 0))
fgs1.Add(self.show_notifications_checkbox, 0, wx.EXPAND)
fgs1.Add((0, 0))
fgs1.Add(self.create_boot_tar_checkbox, 0, wx.EXPAND)
fgs1.Add((0, 0))
fgs1.Add(self.check_for_update_checkbox, 0, wx.EXPAND)
fgs1.Add((0, 0))
fgs1.Add(self.check_for_disk_space_checkbox, 0, wx.EXPAND)
fgs1.Add((0, 0))
fgs1.Add(self.check_for_bootloader_unlocked_checkbox, 0, wx.EXPAND)
fgs1.Add((0, 0))
fgs1.Add(self.check_for_firmware_hash_validity_checkbox, 0, wx.EXPAND)
fgs1.Add((0, 0))
fgs1.Add(self.keep_temporary_support_files_checkbox, 0, wx.EXPAND)
fgs1.Add((0, 0))
fgs1.Add(self.check_module_updates, 0, wx.EXPAND)
fgs1.Add((0, 0))
fgs1.Add(self.show_custom_rom_options, 0, wx.EXPAND)
fgs1.Add((0, 0))
fgs1.Add(self.sanitize_support_files, 0, wx.EXPAND)
fgs1.Add((0, 0))
fgs1.Add(self.force_codepage_checkbox, 0, wx.EXPAND)
fgs1.Add(self.code_page, 1, wx.EXPAND)
fgs1.Add(self.delete_bundled_libs_label, 0, wx.EXPAND)
fgs1.Add(self.delete_bundled_libs, 1, wx.EXPAND)
fgs1.Add(self.override_kmi_label, 0, wx.EXPAND)
fgs1.Add(self.override_kmi, 1, wx.EXPAND)
fgs1.Add(self.use_custom_font_checkbox, 0, wx.EXPAND)
fgs1.Add(fonts_sizer, 1, wx.EXPAND)
middle_sizer.Add(fgs1, proportion=1, flag=wx.EXPAND)
middle_sizer.Add(scrcpy_outer_sizer, proportion=0, flag=wx.EXPAND, border=5)
scrolled_panel.SetSizer(middle_sizer)
scrolled_panel.SetScrollRate(10, 10)
# Bottom Part: OK and Cancel buttons
bottom_panel = wx.Panel(self)
bottom_sizer = wx.BoxSizer(wx.HORIZONTAL)
bottom_sizer.Add((0, 0), proportion=1, flag=wx.EXPAND, border=5)
self.ok_button = wx.Button(parent=bottom_panel, id=wx.ID_ANY, label=u"OK", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
bottom_sizer.Add(self.ok_button, proportion=0, flag=wx.ALL, border=20)
self.cancel_button = wx.Button(parent=bottom_panel, id=wx.ID_ANY, label=u"Cancel", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
bottom_sizer.Add(self.cancel_button, proportion=0, flag=wx.ALL, border=20)
bottom_sizer.Add((0, 0), proportion=1, flag=wx.EXPAND, border=5)
bottom_panel.SetSizer(bottom_sizer)
# Main Sizer
main_sizer = wx.BoxSizer(wx.VERTICAL)
main_sizer.Add(top_panel, 0, wx.EXPAND | wx.ALL, 5)
main_sizer.Add(scrolled_panel, proportion=1, flag=wx.ALL | wx.EXPAND, border=20)
main_sizer.Add(bottom_panel, proportion=0, flag=wx.EXPAND, border=5)
self.SetSizer(main_sizer)
self.Center()
# self.Layout()
# Disable horizontal resizing
self.SetMinSize(wx.Size(-1, self.GetSize().y))
self.SetMaxSize(wx.Size(-1, self.GetSize().y))
# Connect Events
self.ok_button.Bind(wx.EVT_BUTTON, self._onOk)
self.cancel_button.Bind(wx.EVT_BUTTON, self._onCancel)
self.font.Bind(wx.EVT_LISTBOX, self._onFontSelect)
self.font_size.Bind(wx.EVT_SPINCTRL, self._onFontSelect)
self.reset_magisk_pkg.Bind(wx.EVT_BUTTON, self._onResetMagiskPkg)
self.patch_methods_checkbox.Bind(wx.EVT_CHECKBOX, self._on_offer_patch_methods)
self.use_custom_font_checkbox.Bind(wx.EVT_CHECKBOX, self._on_use_custom_fontface)
self.Bind(wx.EVT_INIT_DIALOG, self.on_init_dialog)
self.scrcpy_link.Bind(wx.EVT_BUTTON, self._open_scrcpy_link)
# self.Bind(wx.EVT_SIZE, self.on_resize)
# Enable / Disable Widgets
self.enable_disable_widgets()
def on_init_dialog(self, event):
# Autosize the dialog without exceeding 90% of the screen
screen_width, screen_height = wx.GetDisplaySize()
debug(f"Screen Size: {screen_width} x {screen_height}")
screen_max_width = int(screen_width * 0.9)
screen_max_height = int(screen_height * 0.9)
self.max_width = min(screen_max_width, 914)
self.max_height = min(screen_max_height, 1172)
debug(f"Max Dialog Size: {self.max_width} x {self.max_height}")
self.SetMaxSize(wx.Size(self.max_width, self.max_height))
self.SetSizeHints(self.GetMinSize(), self.GetMaxSize())
self.SetSize((self.max_width, self.max_height))
self.CenterOnParent()
event.Skip()
def on_resize(self, event):
# Get the current size of the frame
frame_size = self.GetSize()
if frame_size.width > self.max_width or frame_size.height > self.max_height:
# Adjust the size to the maximum allowed size
new_width = min(frame_size.width, self.max_width)
new_height = min(frame_size.height, self.max_height)
self.SetSize((new_width, new_height))
event.Skip()
def enable_disable_widgets(self):
if self.patch_methods_checkbox.GetValue():
self.recovery_patch_checkbox.Enable()
else:
self.recovery_patch_checkbox.Disable()
if self.use_custom_font_checkbox.GetValue():
self.font.Enable()
self.font_size.Enable()
self.sample.Enable()
else:
self.font.Disable()
self.font_size.Disable()
self.sample.Disable()
def _on_offer_patch_methods(self, event):
self.enable_disable_widgets()
def _on_use_custom_fontface(self, event):
self.enable_disable_widgets()
def _onFontSelect(self, evt):
facename = self.font.GetStringSelection()
size = self.font_size.GetValue()
font = wx.Font(size, family=wx.DEFAULT, style=wx.NORMAL, weight=wx.NORMAL, underline=False, faceName=facename)
self.sample.SetLabel(facename)
self.sample.SetFont(font)
self.Refresh()
def _open_scrcpy_link(self, event):
try:
print(f"Launching browser for scrcpy download URL: {SCRCPYURL}")
webbrowser.open_new(SCRCPYURL)
puml(f":Open scrcpy Link;\nnote right\n=== scrcpy\n[[{SCRCPYURL}]]\nend note\n", True)
except Exception as e:
print(f"\n❌ {datetime.now():%Y-%m-%d %H:%M:%S} ERROR: Encountered an error while opening skd link")
traceback.print_exc()
def _onResetMagiskPkg(self, e):
self.package_name.Label = MAGISK_PKG_NAME
def _onCancel(self, e):
self.EndModal(wx.ID_CANCEL)
def _onOk(self, e):
if self.advanced_options_checkbox.GetValue() != self.Parent.config.advanced_options:
print(f"Setting Enable Advanced Options to: {self.advanced_options_checkbox.GetValue()}")
self.Parent.config.advanced_options = self.advanced_options_checkbox.GetValue()
if self.patch_methods_checkbox.GetValue() != self.Parent.config.offer_patch_methods:
print(f"Setting Offer Patch Methods to: {self.patch_methods_checkbox.GetValue()}")
self.Parent.config.offer_patch_methods = self.patch_methods_checkbox.GetValue()
if self.recovery_patch_checkbox.GetValue() != self.Parent.config.show_recovery_patching_option:
print(f"Setting Offer Patch Methods to: {self.recovery_patch_checkbox.GetValue()}")
self.Parent.config.show_recovery_patching_option = self.recovery_patch_checkbox.GetValue()
if self.use_busybox_shell_checkbox.GetValue() != self.Parent.config.use_busybox_shell:
print(f"Setting Use Busybox Shell to: {self.use_busybox_shell_checkbox.GetValue()}")
self.Parent.config.use_busybox_shell = self.use_busybox_shell_checkbox.GetValue()
if self.low_mem_checkbox.GetValue() != self.Parent.config.low_mem:
print(f"Setting Low Memory to: {self.low_mem_checkbox.GetValue()}")
self.Parent.config.low_mem = self.low_mem_checkbox.GetValue()
set_low_memory(self.low_mem_checkbox.GetValue())
if self.extra_img_extracts_checkbox.GetValue() != self.Parent.config.extra_img_extracts:
print(f"Setting Extra img extraction to: {self.extra_img_extracts_checkbox.GetValue()}")
self.Parent.config.extra_img_extracts = self.extra_img_extracts_checkbox.GetValue()
if self.show_notifications_checkbox.GetValue() != self.Parent.config.show_notifications:
print(f"Setting Show notifications to: {self.show_notifications_checkbox.GetValue()}")
self.Parent.config.show_notifications = self.show_notifications_checkbox.GetValue()
if self.create_boot_tar_checkbox.GetValue() != self.Parent.config.create_boot_tar:
print(f"Setting Always create boot.tar: {self.create_boot_tar_checkbox.GetValue()}")
self.Parent.config.create_boot_tar = self.create_boot_tar_checkbox.GetValue()
if self.check_for_update_checkbox.GetValue() != self.Parent.config.update_check:
print(f"Setting Check for updates to: {self.check_for_update_checkbox.GetValue()}")
self.Parent.config.update_check = self.check_for_update_checkbox.GetValue()
if self.check_for_disk_space_checkbox.GetValue() != self.Parent.config.check_for_disk_space:
print(f"Setting Check for Minimum Disk Space to: {self.check_for_disk_space_checkbox.GetValue()}")
self.Parent.config.check_for_disk_space = self.check_for_disk_space_checkbox.GetValue()
if self.check_for_bootloader_unlocked_checkbox.GetValue() != self.Parent.config.check_for_bootloader_unlocked:
print(f"Setting Check for Minimum Disk Space to: {self.check_for_bootloader_unlocked_checkbox.GetValue()}")
self.Parent.config.check_for_bootloader_unlocked = self.check_for_bootloader_unlocked_checkbox.GetValue()
if self.check_for_firmware_hash_validity_checkbox.GetValue() != self.Parent.config.check_for_firmware_hash_validity:
print(f"Setting Check for Firmware Hash Validity to: {self.check_for_firmware_hash_validity_checkbox.GetValue()}")
self.Parent.config.check_for_firmware_hash_validity = self.check_for_firmware_hash_validity_checkbox.GetValue()
if self.keep_temporary_support_files_checkbox.GetValue() != self.Parent.config.keep_temporary_support_files:
print(f"Setting Keep temporary support files to: {self.keep_temporary_support_files_checkbox.GetValue()}")
self.Parent.config.keep_temporary_support_files = self.keep_temporary_support_files_checkbox.GetValue()
if self.check_module_updates.GetValue() != self.Parent.config.check_module_updates:
print(f"Setting Check Magisk modules for updates to: {self.check_module_updates.GetValue()}")
self.Parent.config.check_module_updates = self.check_module_updates.GetValue()
if self.show_custom_rom_options.GetValue() != self.Parent.config.show_custom_rom_options:
print(f"Setting Show custom ROM options to: {self.show_custom_rom_options.GetValue()}")
self.Parent.config.show_custom_rom_options = self.show_custom_rom_options.GetValue()
if self.sanitize_support_files.GetValue() != self.Parent.config.sanitize_support_files:
print(f"Setting Sanitize Support Files options to: {self.sanitize_support_files.GetValue()}")
self.Parent.config.sanitize_support_files = self.sanitize_support_files.GetValue()
if self.package_name.GetValue():
with contextlib.suppress(Exception):
if self.package_name.GetValue() != self.Parent.config.magisk:
print(f"Setting Magisk Package Name to: {self.package_name.GetValue()}")
set_magisk_package(self.package_name.GetValue())
self.Parent.config.magisk = self.package_name.GetValue()
if sys.platform.startswith("linux"):
with contextlib.suppress(Exception):
if self.file_explorer.GetValue() != self.Parent.config.linux_file_explorer:
print(f"Setting Linux File Explorer to: {self.file_explorer.GetValue()}")
self.Parent.config.linux_file_explorer = self.file_explorer.GetValue()
with contextlib.suppress(Exception):
if self.shell.GetValue() != self.Parent.config.linux_shell:
print(f"Setting Linux Shell to: {self.shell.GetValue()}")
set_linux_shell(self.shell.GetValue())
self.Parent.config.linux_shell = self.shell.GetValue()
self.Parent.config.force_codepage = self.force_codepage_checkbox.GetValue()
if self.code_page.GetValue() and self.code_page.GetValue().isnumeric():
self.Parent.config.custom_codepage = int(self.code_page.GetValue())
value = self.delete_bundled_libs.GetValue()
if value is None:
value = ''
if value != self.Parent.config.delete_bundled_libs:
print(f"Setting Delete bundled libs to: {value}")
self.Parent.config.delete_bundled_libs = value
value = self.override_kmi.GetValue()
if value is None:
value = ''
if value != self.Parent.config.override_kmi:
print(f"Setting Kernel KMI to: {value}")
self.Parent.config.override_kmi = value
font_settings_changed = False
if self.use_custom_font_checkbox.GetValue() != self.Parent.config.customize_font:
print("Enabling Custom Font")
font_settings_changed = True
if self.font.GetStringSelection() != self.Parent.config.pf_font_face:
print(f"Setting Application Font to: {self.font.GetStringSelection()}")
if self.use_custom_font_checkbox.GetValue():
font_settings_changed = True
if self.font_size.GetValue() != self.Parent.config.pf_font_size:
print(f"Setting Application Font Size to: {self.font_size.GetValue()}")
if self.use_custom_font_checkbox.GetValue():
font_settings_changed = True
self.Parent.config.customize_font = self.use_custom_font_checkbox.GetValue()
self.Parent.config.pf_font_face = self.font.GetStringSelection()
self.Parent.config.pf_font_size = self.font_size.GetValue()
value = self.scrcpy_path_picker.GetPath()
if value is None:
value = ''
if value != self.Parent.config.scrcpy['path'] and os.path.exists(value):
print(f"Setting scrcpy path path to: {value}")
self.Parent.config.scrcpy['path'] = value
value = self.scrcpy_flags.GetValue()
if value is None:
value = ''
if value != self.Parent.config.scrcpy['flags']:
print(f"Setting scrcpy flags to: {value}")
self.Parent.config.scrcpy['flags'] = value
# update the runtime config
set_config(self.Parent.config)
if font_settings_changed:
self.Parent.set_ui_fonts()
self.EndModal(wx.ID_OK)