Allow inline menus

Newer versions of GTK allow menus to be specified inline in properties.
This commit is contained in:
James Westman 2025-06-14 10:27:45 -05:00
parent 4d42bd68c1
commit 71dcc02198
No known key found for this signature in database
GPG key ID: CE2DBA0ADB654EA6
10 changed files with 34 additions and 9 deletions

View file

@ -21,12 +21,15 @@
from .binding import Binding
from .common import *
from .contexts import ValueTypeCtx
from .gtk_menu import menu
from .values import ArrayValue, ExprValue, ObjectValue, Value
class Property(AstNode):
grammar = Statement(
UseIdent("name"), ":", AnyOf(Binding, ExprValue, ObjectValue, Value, ArrayValue)
UseIdent("name"),
":",
AnyOf(Binding, ExprValue, menu, ObjectValue, Value, ArrayValue),
)
@property