Flags¶
Details¶
- class Gsk.PathForeachFlags(value)¶
Bases:
GObject.GFlagsFlags that can be passed to
Gsk.Path.foreach() to influence what kinds of operations the path is decomposed into.By default, [method`Gsk`.Path.foreach] will only emit a path with all operations flattened to straight lines to allow for maximum compatibility. The only operations emitted will be
GSK_PATH_MOVE,GSK_PATH_LINEandGSK_PATH_CLOSE.New in version 4.14.
- ONLY_LINES = 0¶
The default behavior, only allow lines.
- QUAD = 1¶
Allow emission of
GSK_PATH_QUADoperations
- CUBIC = 2¶
Allow emission of
GSK_PATH_CUBICoperations.
- CONIC = 4¶
Allow emission of
GSK_PATH_CONICoperations.