blueprint-compiler/gtkblueprinttool/extensions/__init__.py
James Westman bfd9daf6a9
Reorganize the parser/AST code
The code is now organized by syntax: `menu {}` in one file, `style` in
another, etc. This should make it easier to add syntax in the future.
2021-10-31 21:42:41 -05:00

10 lines
243 B
Python

""" Contains all the syntax beyond basic objects, properties, signal, and
templates. """
from .gtk_menu import menu
from .gtk_styles import styles
from .gtk_layout import layout
OBJECT_HOOKS = [menu]
OBJECT_CONTENT_HOOKS = [styles, layout]