|
|
@ -39,6 +39,10 @@ class VanillaLayoutApplications(Adw.Bin):
|
|
|
|
# signals
|
|
|
|
# signals
|
|
|
|
self.btn_next.connect("clicked", self.__next_step)
|
|
|
|
self.btn_next.connect("clicked", self.__next_step)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
|
|
|
def step_id(self):
|
|
|
|
|
|
|
|
return self.__key
|
|
|
|
|
|
|
|
|
|
|
|
def __build_ui(self):
|
|
|
|
def __build_ui(self):
|
|
|
|
self.status_page.set_icon_name(self.__step["icon"])
|
|
|
|
self.status_page.set_icon_name(self.__step["icon"])
|
|
|
|
self.status_page.set_title(self.__step["title"])
|
|
|
|
self.status_page.set_title(self.__step["title"])
|
|
|
@ -47,12 +51,12 @@ class VanillaLayoutApplications(Adw.Bin):
|
|
|
|
|
|
|
|
|
|
|
|
def present_customize(widget, dialog):
|
|
|
|
def present_customize(widget, dialog):
|
|
|
|
dialog.show()
|
|
|
|
dialog.show()
|
|
|
|
|
|
|
|
print(self.__window.builder.get_temp_finals("packages"))
|
|
|
|
|
|
|
|
|
|
|
|
def close_customize(widget, dialog):
|
|
|
|
def close_customize(widget, dialog):
|
|
|
|
dialog.hide()
|
|
|
|
dialog.hide()
|
|
|
|
|
|
|
|
|
|
|
|
for item in self.__step["bundles"]:
|
|
|
|
for item in self.__step["bundles"]:
|
|
|
|
|
|
|
|
|
|
|
|
_selection_dialog = VanillaDialog(
|
|
|
|
_selection_dialog = VanillaDialog(
|
|
|
|
self.__window,
|
|
|
|
self.__window,
|
|
|
|
"Select Applications",
|
|
|
|
"Select Applications",
|
|
|
|