Files
MementoMori/kivy/core/text/text_layout.pxd
thatscringebro abd15f28b6 Ajout du GUI
2022-08-08 16:31:52 -04:00

14 lines
315 B
Cython

cdef class LayoutWord:
cdef public object text
cdef public int lw, lh
cdef public dict options
cdef class LayoutLine:
cdef public int x, y, w, h
cdef public int line_wrap # whether this line wraps from last line
cdef public int is_last_line # in a paragraph
cdef public list words