Files
2026-06-06 13:28:56 -05:00

26 lines
823 B
Python

"""
Copyright © IQ.Lvbs, apart of Project Teal Lvbs, All Rights Reserved, licensed under https://konn3kt.com/tos
"""
from openpilot.system.ui.lib.application import gui_app
from openpilot.system.ui.widgets import DialogResult
from openpilot.system.ui.widgets.html_render import HtmlModal
class IQHtmlModal(HtmlModal):
def __init__(self, file_path=None, text=None, callback=None):
super().__init__(file_path=file_path, text=text)
self._callback = callback
self._dialog_result = DialogResult.NO_ACTION
self._ok_button._click_callback = self._on_ok_clicked
def _on_ok_clicked(self):
self._dialog_result = DialogResult.CONFIRM
gui_app.set_modal_overlay(None)
if self._callback:
self._callback(self._dialog_result)
def reset(self):
self._dialog_result = DialogResult.NO_ACTION