mirror of
https://github.com/Hopiu/bowser.git
synced 2026-03-17 03:20:24 +00:00
13 lines
296 B
Python
13 lines
296 B
Python
|
|
"""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
|