mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Add Adw.Breakpoint custom syntax
This commit is contained in:
parent
aafebf0dfb
commit
8fcd08c835
12 changed files with 264 additions and 11 deletions
|
@ -1,8 +1,13 @@
|
|||
from .gtk_list_item_factory import ExtListItemFactory
|
||||
from .adw_message_dialog import ExtAdwMessageDialog
|
||||
from .attributes import BaseAttribute
|
||||
from .adw_breakpoint import (
|
||||
AdwBreakpointSetters,
|
||||
AdwBreakpointSetter,
|
||||
AdwBreakpointCondition,
|
||||
)
|
||||
from .binding import Binding
|
||||
from .contexts import ValueTypeCtx
|
||||
from .contexts import ScopeCtx, ValueTypeCtx
|
||||
from .expression import (
|
||||
CastExpr,
|
||||
ClosureArg,
|
||||
|
@ -53,6 +58,8 @@ from .common import *
|
|||
OBJECT_CONTENT_HOOKS.children = [
|
||||
Signal,
|
||||
Property,
|
||||
AdwBreakpointCondition,
|
||||
AdwBreakpointSetters,
|
||||
ExtAccessibility,
|
||||
ExtAdwMessageDialog,
|
||||
ExtComboBoxItems,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue