File: cdk_label.3

package info (click to toggle)
libcdk5 5.0.20161210-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,440 kB
  • ctags: 2,833
  • sloc: ansic: 32,375; sh: 4,732; makefile: 1,122; sed: 43; cpp: 41
file content (281 lines) | stat: -rw-r--r-- 7,635 bytes parent folder | download | duplicates (2)
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
.\" $Id: cdk_label.3,v 1.18 2016/12/10 17:08:28 tom Exp $
.de bP
.IP \(bu 4
..
.de XX
..
.TH cdk_label 3
.SH NAME
.XX activateCDKLabel
.XX destroyCDKLabel
.XX drawCDKLabel
.XX eraseCDKLabel
.XX getCDKLabelBox
.XX getCDKLabelMessage
.XX moveCDKLabel
.XX newCDKLabel
.XX positionCDKLabel
.XX setCDKLabel
.XX setCDKLabelBackgroundAttrib
.XX setCDKLabelBackgroundColor
.XX setCDKLabelBox
.XX setCDKLabelBoxAttribute
.XX setCDKLabelHorizontalChar
.XX setCDKLabelLLChar
.XX setCDKLabelLRChar
.XX setCDKLabelMessage
.XX setCDKLabelULChar
.XX setCDKLabelURChar
.XX setCDKLabelVerticalChar
.XX waitCDKLabel
cdk_label \- Creates a managed curses label widget.
.SH SYNOPSIS
.LP
.B cc
.RI "[ " "flag" " \|.\|.\|. ] " "file" " \|.\|.\|."
.B \-lcdk
.RI "[ " "library" " \|.\|.\|. ]"
.LP
#include <cdk.h>
.nf
.TP 15
.B "void activateCDKLabel ("
.BI "CDKLABEL *" "label",
.BI "chtype " "unused");
.TP 15
.B "void destroyCDKLabel ("
.BI "CDKLABEL *" "label");
.TP 15
.B "void drawCDKLabel ("
.BI "CDKLABEL *" "label",
.BI "boolean " "box");
.TP 15
.B "void eraseCDKLabel ("
.BI "CDKLABEL *" "label");
.TP 15
.B "boolean getCDKLabelBox ("
.BI "CDKLABEL *" "label");
.TP 15
.B "chtype **getCDKLabelMessage ("
.BI "CDKLABEL *" "label"
.BI "int *" "messageLines");
.TP 15
.B "void moveCDKLabel ("
.BI "CDKLABEL *" "label",
.BI "int " "xpos",
.BI "int " "ypos",
.BI "boolean " "relative",
.BI "boolean " "refresh");
.TP 15
.B "CDKLABEL *newCDKLabel ("
.BI "CDKSCREEN *" "cdkscreen",
.BI "int " "xpos",
.BI "int " "ypos",
.BI "CDK_CONST char **" "message",
.BI "int " "messageLines",
.BI "boolean " "box",
.BI "boolean " "shadow");
.TP 15
.B "void positionCDKLabel ("
.BI "CDKLABEL *" "label");
.TP 15
.B "void setCDKLabel ("
.BI "CDKLABEL *" "label",
.BI "CDK_CONST char **" "message",
.BI "int " "messageLines",
.BI "boolean " "box");
.TP 15
.B "void setCDKLabelBackgroundAttrib ("
.BI "CDKLABEL *" "label",
.BI "chtype " "attribute");
.TP 15
.B "void setCDKLabelBackgroundColor ("
.BI "CDKLABEL *" "label",
.BI "const char * " "color");
.TP 15
.B "void setCDKLabelBox ("
.BI "CDKLABEL *" "label",
.BI "boolean " "box");
.TP 15
.B "void setCDKLabelBoxAttribute ("
.BI "CDKLABEL *" "label",
.BI "chtype " "character");
.TP 15
.B "void setCDKLabelHorizontalChar ("
.BI "CDKLABEL *" "label",
.BI "chtype " "character");
.TP 15
.B "void setCDKLabelLLChar ("
.BI "CDKLABEL *" "label",
.BI "chtype " "character");
.TP 15
.B "void setCDKLabelLRChar ("
.BI "CDKLABEL *" "label",
.BI "chtype " "character");
.TP 15
.B "void setCDKLabelMessage ("
.BI "CDKLABEL *" "label",
.BI "CDK_CONST char **" "message",
.BI "int " "messageLines");
.TP 15
.B "void setCDKLabelULChar ("
.BI "CDKLABEL *" "label",
.BI "chtype " "character");
.TP 15
.B "void setCDKLabelURChar ("
.BI "CDKLABEL *" "label",
.BI "chtype " "character");
.TP 15
.B "void setCDKLabelVerticalChar ("
.BI "CDKLABEL *" "label",
.BI "chtype " "character");
.TP 15
.B "char waitCDKLabel ("
.BI "CDKLABEL *" "label",
.BI "char " "key");
.fi
.SH DESCRIPTION
The Cdk label widget creates a pop-up label window.
The following functions create or manipulate the Cdk label widget.
.SH AVAILABLE FUNCTIONS
.TP 5
.B activateCDKLabel
obsolete entrypoint which calls \fBdrawCDKLabel\fP.
.TP 5
.B destroyCDKLabel
removes the widget from the screen and frees memory the object used.
.TP 5
.B drawCDKLabel
draws the label widget on the screen.
If the \fBbox\fR parameter is true, the widget is drawn with a box.
.TP 5
.B eraseCDKLabel
removes the widget from the screen.
This does \fINOT\fR destroy the widget.
.TP 5
.B getCDKLabelBox
returns true if the widget will be drawn with a box around it.
.TP 5
.B getCDKLabelMessage
returns the contents of the label widget.
The parameter \fBmessageLines\fR points to the location
which will be given the number of message-lines.
.TP 5
.B moveCDKLabel
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.
.bP
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 newCDKLabel
creates a label widget and returns a pointer to it.
Parameters:
.RS
.TP 5
\fBscreen\fR
is the screen you wish this widget to be placed in.
.TP 5
\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.
.TP 5
\fBypos\fR
controls the placement of the object along the vertical axis.
It may be an integer or one of the pre-defined values
\fITOP\fR, \fIBOTTOM\fR, and \fICENTER\fR.
.TP 5
\fBmessage\fR
is the message to be displayed in the window.
It may contain any of the standard Cdk display format commands.
To learn more about this see \fIcdk_display (3)\fR.
.TP 5
\fBrows\fR
is the number of message rows that were passed in the \fBmessage\fR parameter.
.TP 5
\fBbox\fR
is true if widget should be drawn with a box around it.
.TP 5
\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 positionCDKLabel
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 setCDKLabel
allows the user to change the contents of the label widget.
The parameters are the same as the \fBnewCDKLabel\fR.
.TP 5
.B setCDKLabelBackgroundAttrib
sets the background attribute of the widget.
The parameter \fBattribute\fR is a curses attribute, e.g., A_BOLD.
.TP 5
.B setCDKLabelBackgroundColor
sets the background color of the widget.
The parameter \fBcolor\fR is in the format of the Cdk format strings.
For more information see \fIcdk_display (3)\fR.
.TP 5
.B setCDKLabelBox
sets whether the widget will be drawn with a box around it.
.TP 5
.B setCDKLabelBoxAttribute
sets the attribute of the box.
.TP 5
.B setCDKLabelHorizontalChar
sets the horizontal drawing character for the box to the given character.
.TP 5
.B setCDKLabelLLChar
sets the lower left hand corner of the widget's box to the given character.
.TP 5
.B setCDKLabelLRChar
sets the lower right hand corner of the widget's box to the given character.
.TP 5
.B setCDKLabelMessage
This sets the contents of the label widget.
.TP 5
.B setCDKLabelULChar
sets the upper left hand corner of the widget's box to the given character.
.TP 5
.B setCDKLabelURChar
sets the upper right hand corner of the widget's box to the given character.
.TP 5
.B setCDKLabelVerticalChar
sets the vertical drawing character for the box to the given character.
.TP 5
.B waitCDKLabel
waits for a user to press a key.
The \fBlabel\fR parameter is the pointer to a label widget,
and \fBkey\fR is the key to wait for.
If no specific key is desired, use \fI(char)0\fR.
.SH SEE ALSO
.BR cdk (3),
.BR cdk_binding (3),
.BR cdk_display (3),
.BR cdk_position (3),
.BR cdk_screen (3)