1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
|
'\" t
.\" $Id: cdk_button.3,v 1.11 2016/12/11 01:52:43 tom Exp $
.de bP
.IP \(bu 4
..
.de XX
..
.TH cdk_button 3
.SH NAME
.XX activateCDKButton
.XX destroyCDKButton
.XX drawCDKButton
.XX eraseCDKButton
.XX getCDKButtonBox
.XX getCDKButtonMessage
.XX injectCDKButton
.XX moveCDKButton
.XX newCDKButton
.XX positionCDKButton
.XX setCDKButton
.XX setCDKButtonBackgroundAttrib
.XX setCDKButtonBackgroundColor
.XX setCDKButtonBox
.XX setCDKButtonBoxAttribute
.XX setCDKButtonHorizontalChar
.XX setCDKButtonLLChar
.XX setCDKButtonLRChar
.XX setCDKButtonMessage
.XX setCDKButtonULChar
.XX setCDKButtonURChar
.XX setCDKButtonVerticalChar
cdk_button \- create and manage a curses button widget.
.SH SYNOPSIS
.LP
.B cc
.RI "[ " "flag" " \|.\|.\|. ] " "file" " \|.\|.\|."
.B \-lcdk
.RI "[ " "library" " \|.\|.\|. ]"
.LP
#include <cdk.h>
typedef void (*tButtonCallback)(struct SButton *button);
.nf
.TP 15
.B "int activateCDKButton ("
.BI "CDKBUTTON *" "button",
.BI "chtype * " "actions");
.TP 15
.BI "void destroyCDKButton ("
.BI "CDKBUTTON *" "button");
.TP 15
.BI "void drawCDKButton ("
.BI "CDKBUTTON *" "b",
.BI "boolean " "box");
.TP 15
.BI "void eraseCDKButton ("
.BI "CDKBUTTON *" "button");
.TP 15
.BI "boolean getCDKButtonBox ("
.BI "CDKBUTTON *" "b");
.TP 15
.BI "chtype *getCDKButtonMessage ("
.BI "CDKBUTTON *" "b");
.TP 15
.B "int injectCDKButtonbox ("
.BI "CDKBUTTON *" "buttonbox",
.BI "chtype " "input");
.TP 15
.BI "CDKBUTTON *newCDKButton("
.BI "CDKSCREEN *" "cdkscreen",
.BI "int " "xpos",
.BI "int " "ypos",
.BI "const char *" "message",
.BI "tButtonCallback " "callback",
.BI "boolean " "box",
.BI "boolean " "shadow");
.TP 15
.BI "void setCDKButton("
.BI "CDKBUTTON *" "b",
.BI "const char *" "message",
.BI "boolean " "box");
.TP 15
.BI "void setCDKButtonBackgroundAttrib ("
.BI "CDKBUTTON *" "b",
.BI "chtype " "attribute");
.TP 15
.BI "void setCDKButtonBackgroundColor ("
.BI "CDKBUTTON *" "b",
.BI "const char * " "color");
.TP 15
.BI "void setCDKButtonBox ("
.BI "CDKBUTTON *" "button",
.BI "boolean " "box");
.TP 15
.BI "void setCDKButtonBoxAttribute ("
.BI "CDKBUTTON *" "b",
.BI "chtype " "c");
.TP 15
.BI "void setCDKButtonHorizontalChar ("
.BI "CDKBUTTON *" "b",
.BI "chtype " "c");
.TP 15
.BI "void setCDKButtonLLChar ("
.BI "CDKBUTTON *" "b",
.BI "chtype " "c");
.TP 15
.BI "void setCDKButtonLRChar ("
.BI "CDKBUTTON *" "b",
.BI "chtype " "c");
.TP 15
.BI "void setCDKButtonMessage ("
.BI "CDKBUTTON *" "b",
.BI "const char *" "message");
.TP 15
.BI "void setCDKButtonULChar ("
.BI "CDKBUTTON *" "b",
.BI "chtype " "c");
.TP 15
.BI "void setCDKButtonURChar ("
.BI "CDKBUTTON *" "b",
.BI "chtype " "c");
.TP 15
.BI "void setCDKButtonVerticalChar ("
.BI "CDKBUTTON *" "b",
.BI "chtype " "c");
.TP 15
.BI "void moveCDKButton("
.BI "CDKBUTTON *" "b",
.BI "int " "xpos",
.BI "int " "ypos",
.BI "boolean " "relative",
.BI "boolean " "refresh");
.TP 15
.BI "void positionCDKButton ("
.BI "CDKBUTTON *" "b");
.TP 15
.BI "void waitCDKButton ("
.BI "CDKBUTTON *" "button",
.BI "char " "key");
.fi
.SH DESCRIPTION
The Cdk button widget displays a message string and executes a callback when
the user presses enter or space.
As such, it is only useful on a screen
that is being managed by some external screen traversal engine such as
\fBtraverseCDKScreen()\fR.
The button will be highlighted when the widget has the focus.
The following functions create or manipulate the Cdk button widget.
.SH AVAILABLE FUNCTIONS
.TP 5
.B activateCDKButton
activates the button widget and lets the user interact with the widget.
.RS
.bP
The parameter \fBbutton\fR is a pointer to a non-NULL button widget.
.bP
If the \fBactions\fR parameter is passed with a non-NULL value, the characters
in the array will be injected into the widget.
.IP
To activate the widget
interactively pass in a \fINULL\fR pointer for \fBactions\fR.
.RE
.IP
If the character entered
into this widget is \fIRETURN\fR or \fITAB\fR then this function will return a
value from 0 to the number of buttons -1, representing the button selected.
It will also set the widget data \fIexitType\fR to \fIvNORMAL\fR.
.IP
If the
character entered into this widget was \fIESCAPE\fR then the widget will return
a value of -1 and the widget data \fIexitType\fR will be set to
\fIvESCAPE_HIT\fR.
.TP 5
.B destroyCDKButton
removes the widget from the screen and frees up any memory the
object used.
.TP 5
.B drawCDKButton
draws the button widget on the screen.
.IP
If the \fBbox\fR parameter is true, the widget is drawn with a box.
.TP 5
.B eraseCDKButton
removes the widget from the screen.
This does \fINOT\fR destroy the widget.
.TP 5
.B getCDKButtonBox
returns true if the widget will be drawn with a box around it.
.TP 5
.B getCDKButtonMessage
returns the contents of the button widget.
.TP 5
.B injectCDKButton
injects a single character into the widget.
.RS
.bP
The parameter \fBbutton\fR is a pointer to a non-NULL button widget.
.bP
The parameter \fBcharacter\fR is the character to inject into the widget.
.RE
.IP
The return value and side-effect (setting the widget data \fIexitType\fP)
depend upon the injected character:
.RS
.TP
\fIRETURN\fP or \fITAB\fR
this function returns 0, representing the button selected.
The widget data \fIexitType\fR is set to \fIvNORMAL\fR.
.TP
\fIESCAPE\fP
the function returns
-1.
The widget data \fIexitType\fR is set to \fIvESCAPE_HIT\fR.
.TP
Otherwise
unless modified by preprocessing, postprocessing or key bindings,
the function returns
-1.
The widget data \fIexitType\fR is set to \fIvEARLY_EXIT\fR.
.RE
.TP 5
.B moveCDKButton
moves the given widget to the given position.
.RS
.bP
The parameters \fBxpos\fR and \fBypos\fR are the new position of the widget.
.IP
The parameter \fBxpos\fR may be an integer or one of the pre-defined values
\fITOP\fR, \fIBOTTOM\fR, and \fICENTER\fR.
.IP
The parameter \fBypos\fR may be an integer or one of the pre-defined values
\fILEFT\fR, \fIRIGHT\fR, and \fICENTER\fR.
.IP
The parameter \fBrelative\fR states whether
the \fBxpos\fR/\fBypos\fR pair is a relative move or an absolute move.
.IP
For example, if \fBxpos\fR = 1 and \fBypos\fR = 2 and \fBrelative\fR = \fBTRUE\fR,
then the widget would move one row down and two columns right.
If the value of \fBrelative\fR was \fBFALSE\fR then the widget would move to the position (1,2).
.IP
Do not use the values \fITOP\fR, \fIBOTTOM\fR, \fILEFT\fR,
\fIRIGHT\fR, or \fICENTER\fR when \fBrelative\fR = \fITRUE\fR.
(weird things may happen).
.bP
The final parameter \fBrefresh\fR is a boolean value which states
whether the widget will get refreshed after the move.
.RE
.TP 5
.B newCDKButton
creates a pointer to a buttonbox widget.
Parameters:
.RS
.bP
The \fBscreen\fR parameter
is the screen you wish this widget to be placed in.
.bP
\fBxpos\fR
controls the placement of the object along the horizontal axis.
It may be an integer or one of the pre-defined values
\fILEFT\fR, \fIRIGHT\fR, and \fICENTER\fR.
.bP
\fBypos\fR
controls the placement of the object along the vertical axis.
It be an integer or one of the pre-defined values
\fITOP\fR, \fIBOTTOM\fR, and \fICENTER\fR.
.bP
\fBmessage\fR
is the message to display in the button window,
formatted as described in \fIcdk_display\fR.
.bP
\fBcallback\fR
is an optional pointer to a callback function
that will be executed when the user activates the button by pressing space
or enter.
.bP
\fBbox\fR
is true if the widget should be drawn with a box around it.
.bP
\fBshadow\fR
turns the shadow on or off around this widget.
.RE
.IP
If the widget could not be created then a \fINULL\fR
pointer is returned.
.TP 5
.B positionCDKButton
allows the user to move the widget around the screen via the cursor/keypad keys.
See \fBcdk_position (3)\fR for key bindings.
.TP 5
.B setCDKButton
lets the programmer modify certain elements of an existing
buttonbox widget.
.IP
The parameter names correspond to the same parameter names listed
in the \fBnewCDKButton\fR function.
.TP 5
.B setCDKButtonBackgroundAttrib
sets the background attribute of the widget.
.IP
The parameter \fBattribute\fR is a curses attribute, e.g., A_BOLD.
.TP 5
.B setCDKButtonBackgroundColor
sets the background color of the widget.
.IP
The parameter \fBcolor\fR
is in the format of the Cdk format strings.
(See \fIcdk_display\fR).
.TP 5
.B setCDKButtonBox
sets true if the widget will be drawn with a box around it.
.TP 5
.B setCDKButtonBoxAttribute
sets the attribute of the box.
.TP 5
.B setCDKButtonHorizontalChar
sets the horizontal drawing character for the box to the given character.
.TP 5
.B setCDKButtonLLChar
sets the lower left hand corner of the widget's box to the given character.
.TP 5
.B setCDKButtonLRChar
sets the lower right hand corner of the widget's box to the given character.
.TP 5
.B setCDKButtonMessage
This sets the contents of the label widget.
.TP 5
.B setCDKButtonULChar
sets the upper left hand corner of the widget's box to the given character.
.TP 5
.B setCDKButtonURChar
sets the upper right hand corner of the widget's box to the given character.
.TP 5
.B setCDKButtonVerticalChar
sets the vertical drawing character for the box to the given character.
.SH BUGS
Changing the Box attribute after the widget has been created probably
does not work right.
None of the positioning/movement code has been tested.
.SH AUTHOR
Grant Edwards, Aspen Research Corporation
.SH SEE ALSO
.BR cdk (3),
.BR cdk_binding (3),
.BR cdk_display (3),
.BR cdk_position (3),
.BR cdk_process (3),
.BR cdk_screen (3),
.BR cdk_traverse (3)
|