logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

tickit_pen_get_bool_attr, tickit_pen_set_bool_attr - manipulate a boolean pen attribute

Description

tickit_pen_get_bool_attr()  returns the current value of the given boolean attribute on the pen, or false
       if that attribute is not defined.

       tickit_pen_set_bool_attr() provides a new value for the given boolean  attribute  on  the  pen.  It  will
       invoke the TICKIT_EV_CHANGE event on the pen instance.

Name

       tickit_pen_get_bool_attr, tickit_pen_set_bool_attr - manipulate a boolean pen attribute

Return Value

tickit_pen_get_bool_attr() returns a boolean. tickit_pen_set_bool_attr() returns no value.

See Also

tickit_pen_new(3),   tickit_pen_has_attr(3),  tickit_pen_set_int_attr(3),  tickit_pen_set_colour_attr(3),
       tickit_pen_clear_attr(3), tickit_pen(7), tickit(7)

                                                                                     TICKIT_PEN_GET_BOOL_ATTR(3)

Synopsis

#include<tickit.h>booltickit_pen_get_bool_attr(TickitPen*pen,TickitPenAttrattr);voidtickit_pen_set_bool_attr(TickitPen*pen,TickitPenAttrattr,boolval);

       Link with -ltickit.

See Also