mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-08-22 08:43:54 +08:00
refactor(raylib): Move widgets to the widgets folder (#35680)
* refactor: move button to widgets folder * refactor: move inputbox to widgets folder * refactor: move label to widgets folder * refactor: move list_view to widgets * refactor: move scroll_panel to widgets * refactor: move scroller to widgets * refactor: move toggle to widgets * refactor: Move widget.py to widgets/__init__.py * fix: remove extra list_view * refactor: rearrange some of the imports * fix: remove extra scroller.py * fix: Add scroller back * fix: delete right scroller.py this time * move scroll_panel back to system/ui/lib * add todos for label and button
This commit is contained in:
@@ -4,10 +4,10 @@ from dataclasses import dataclass
|
||||
from enum import Enum
|
||||
from typing import Any
|
||||
from openpilot.system.ui.lib.application import gui_app, FontWeight
|
||||
from openpilot.system.ui.lib.wrap_text import wrap_text
|
||||
from openpilot.system.ui.lib.scroll_panel import GuiScrollPanel
|
||||
from openpilot.system.ui.lib.widget import Widget, DialogResult
|
||||
from openpilot.system.ui.lib.button import gui_button, ButtonStyle
|
||||
from openpilot.system.ui.lib.wrap_text import wrap_text
|
||||
from openpilot.system.ui.widgets import Widget, DialogResult
|
||||
from openpilot.system.ui.widgets.button import gui_button, ButtonStyle
|
||||
|
||||
|
||||
class ElementType(Enum):
|
||||
|
||||
Reference in New Issue
Block a user