mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
85 lines
2 KiB
Python
85 lines
2 KiB
Python
from .adw_breakpoint import (
|
|
AdwBreakpointCondition,
|
|
AdwBreakpointSetter,
|
|
AdwBreakpointSetters,
|
|
)
|
|
from .adw_response_dialog import ExtAdwResponseDialog
|
|
from .binding import Binding
|
|
from .common import *
|
|
from .contexts import ScopeCtx, ValueTypeCtx
|
|
from .expression import (
|
|
CastExpr,
|
|
ClosureArg,
|
|
ClosureExpr,
|
|
ExprBase,
|
|
Expression,
|
|
LiteralExpr,
|
|
LookupOp,
|
|
)
|
|
from .gobject_object import Object, ObjectContent
|
|
from .gobject_property import Property
|
|
from .gobject_signal import Signal
|
|
from .gtk_a11y import A11yProperty, ExtAccessibility
|
|
from .gtk_combo_box_text import ExtComboBoxItems
|
|
from .gtk_file_filter import (
|
|
Filters,
|
|
ext_file_filter_mime_types,
|
|
ext_file_filter_patterns,
|
|
ext_file_filter_suffixes,
|
|
)
|
|
from .gtk_layout import ExtLayout
|
|
from .gtk_list_item_factory import ExtListItemFactory
|
|
from .gtk_menu import Menu, MenuAttribute, menu
|
|
from .gtk_scale import ExtScaleMarks
|
|
from .gtk_size_group import ExtSizeGroupWidgets
|
|
from .gtk_string_list import ExtStringListStrings
|
|
from .gtk_styles import ExtStyles
|
|
from .gtkbuilder_child import (
|
|
Child,
|
|
ChildAnnotation,
|
|
ChildExtension,
|
|
ChildInternal,
|
|
ChildType,
|
|
)
|
|
from .gtkbuilder_template import Template
|
|
from .imports import GtkDirective, Import
|
|
from .response_id import ExtResponse
|
|
from .types import BracketedTypeName, ClassName, TypeName
|
|
from .ui import UI
|
|
from .values import (
|
|
ArrayValue,
|
|
ExprValue,
|
|
Flag,
|
|
Flags,
|
|
IdentLiteral,
|
|
Literal,
|
|
NumberLiteral,
|
|
ObjectValue,
|
|
QuotedLiteral,
|
|
StringValue,
|
|
Translated,
|
|
TypeLiteral,
|
|
Value,
|
|
)
|
|
|
|
OBJECT_CONTENT_HOOKS.children = [
|
|
Signal,
|
|
Property,
|
|
AdwBreakpointCondition,
|
|
AdwBreakpointSetters,
|
|
ExtAccessibility,
|
|
ExtAdwResponseDialog,
|
|
ExtComboBoxItems,
|
|
ext_file_filter_mime_types,
|
|
ext_file_filter_patterns,
|
|
ext_file_filter_suffixes,
|
|
ExtLayout,
|
|
ExtListItemFactory,
|
|
ExtScaleMarks,
|
|
ExtSizeGroupWidgets,
|
|
ExtStringListStrings,
|
|
ExtStyles,
|
|
Child,
|
|
]
|
|
|
|
LITERAL.children = [Literal]
|