mirror of
https://github.com/Hopiu/bowser.git
synced 2026-03-17 03:20:24 +00:00
11 lines
217 B
Python
11 lines
217 B
Python
|
|
"""Browser chrome (GTK UI) stub."""
|
||
|
|
|
||
|
|
|
||
|
|
class Chrome:
|
||
|
|
def __init__(self, browser):
|
||
|
|
self.browser = browser
|
||
|
|
|
||
|
|
def paint(self):
|
||
|
|
# Placeholder: draw tabs/address bar via GTK + Skia/Cairo
|
||
|
|
pass
|