bowser/src/layout/document.py

13 lines
296 B
Python
Raw Normal View History

2026-01-09 11:20:46 +00:00
"""Document-level layout stub."""
class DocumentLayout:
def __init__(self, node, frame=None):
self.node = node
self.frame = frame
self.children = []
def layout(self, width: int, zoom: float = 1.0):
# Placeholder layout logic
return width * zoom