.TH TICKIT_WINDOW_CTLNAME 3 .SH NAME tickit_window_ctlname \- return the name of a window control .SH SYNOPSIS .EX .B #include .sp .BI "const char * tickit_window_ctlname(TickitWindowCtl " ctl ); .BI "TickitWindowCtl tickit_window_lookup_ctl(const char * " name ); .sp .BI "TickitType tickit_window_ctltype(TickitWindowCtl " ctl ); .EE .sp Link with \fI\-ltickit\fP. .SH DESCRIPTION \fBtickit_window_ctlname\fP() returns the name of the given window control. These names are the lowercase strings given in \fBtickit_window\fP(7). .PP \fBtickit_window_lookup_ctl\fP() returns the control constant for a given name. If the name is not recognised then -1 is returned. .PP \fBtickit_window_ctltype\fP() returns the type of the given window control, as one of the following constants: .in .TP .B TICKIT_TYPE_BOOL The value is an integer representing a simple boolean choice, where any nonzero value is true. Use \fBtickit_window_setctl_int\fP(3) and \fBtickit_window_getctl_int\fP(3). .TP .B TICKIT_TYPE_INT The value is an integer representing a quantity, or a value in some particular enumeration. Use \fBtickit_window_setctl_int\fP(3) and \fBtickit_window_getctl_int\fP(3). .PP For unrecognised control types, the function returns 0. .SH "RETURN VALUE" \fBtickit_window_ctlname\fP() returns a constant string pointer. \fBtickit_window_lookup_ctl\fP() returns an control constant or -1. \fBtickit_window_ctltype\fP() returns a control type constant or 0. .SH "SEE ALSO" .BR tickit_window (7), .BR tickit (7)