mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-05 16:09:07 -04:00
11 lines
276 B
Python
11 lines
276 B
Python
""" Contains all the syntax beyond basic objects, properties, signal, and
|
|
templates. """
|
|
|
|
from .gtk_a11y import a11y
|
|
from .gtk_menu import menu
|
|
from .gtk_styles import styles
|
|
from .gtk_layout import layout
|
|
|
|
OBJECT_HOOKS = [menu]
|
|
|
|
OBJECT_CONTENT_HOOKS = [a11y, styles, layout]
|