~ubuntu-branches/ubuntu/trusty/libcdk5/trusty

« back to all changes in this revision

Viewing changes to man/cdk_entry.3

  • Committer: Bazaar Package Importer
  • Author(s): John Goerzen
  • Date: 2007-06-06 03:54:31 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070606035431-ba4gdvw0h6ybffsu
Tags: 5.0.20060507-1
* New upstream release.
* Fixed header patching.  Patch from Robert Schiele.
  Closes: #402978, #416336.
* Update widget count in description.  Closes: #294709.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
'\" t
2
 
.\" $Id: cdk_entry.3,v 1.18 2005/04/15 23:37:56 tom Exp $
 
2
.\" $Id: cdk_entry.3,v 1.23 2006/04/15 14:07:13 tom Exp $
 
3
.de XX
 
4
..
3
5
.TH cdk_entry 3
4
6
.SH NAME
5
 
activateCDKEntry,
6
 
cleanCDKEntry,
7
 
destroyCDKEntry,
8
 
drawCDKEntry,
9
 
eraseCDKEntry,
10
 
getCDKEntryBox,
11
 
getCDKEntryFillerChar,
12
 
getCDKEntryHiddenChar,
13
 
getCDKEntryMax,
14
 
getCDKEntryMin,
15
 
getCDKEntryValue,
16
 
injectCDKEntry,
17
 
moveCDKEntry,
18
 
newCDKEntry,
19
 
positionCDKEntry,
20
 
setCDKEntry,
21
 
setCDKEntryBackgroundAttrib,
22
 
setCDKEntryBackgroundColor,
23
 
setCDKEntryBox,
24
 
setCDKEntryBoxAttribute,
25
 
setCDKEntryCB,
26
 
setCDKEntryFillerChar,
27
 
setCDKEntryHiddenChar,
28
 
setCDKEntryHorizontalChar,
29
 
setCDKEntryLLChar,
30
 
setCDKEntryLRChar,
31
 
setCDKEntryMax,
32
 
setCDKEntryMin,
33
 
setCDKEntryPostProcess,
34
 
setCDKEntryPreProcess,
35
 
setCDKEntryULChar,
36
 
setCDKEntryURChar,
37
 
setCDKEntryValue,
38
 
setCDKEntryVerticalChar \- curses text-entry widget.
 
7
.XX activateCDKEntry
 
8
.XX cleanCDKEntry
 
9
.XX destroyCDKEntry
 
10
.XX drawCDKEntry
 
11
.XX eraseCDKEntry
 
12
.XX getCDKEntryBox
 
13
.XX getCDKEntryFillerChar
 
14
.XX getCDKEntryHiddenChar
 
15
.XX getCDKEntryMax
 
16
.XX getCDKEntryMin
 
17
.XX getCDKEntryValue
 
18
.XX injectCDKEntry
 
19
.XX moveCDKEntry
 
20
.XX newCDKEntry
 
21
.XX positionCDKEntry
 
22
.XX setCDKEntry
 
23
.XX setCDKEntryBackgroundAttrib
 
24
.XX setCDKEntryBackgroundColor
 
25
.XX setCDKEntryBox
 
26
.XX setCDKEntryBoxAttribute
 
27
.XX setCDKEntryCB
 
28
.XX setCDKEntryFillerChar
 
29
.XX setCDKEntryHiddenChar
 
30
.XX setCDKEntryHighlight
 
31
.XX setCDKEntryHorizontalChar
 
32
.XX setCDKEntryLLChar
 
33
.XX setCDKEntryLRChar
 
34
.XX setCDKEntryMax
 
35
.XX setCDKEntryMin
 
36
.XX setCDKEntryPostProcess
 
37
.XX setCDKEntryPreProcess
 
38
.XX setCDKEntryULChar
 
39
.XX setCDKEntryURChar
 
40
.XX setCDKEntryValue
 
41
.XX setCDKEntryVerticalChar
 
42
cdk_entry \- curses text-entry widget.
39
43
.SH SYNOPSIS
40
44
.LP
41
45
.B cc
145
149
.BI "CDKENTRY *" "entry",
146
150
.BI "chtype " "character");
147
151
.TP 15
 
152
.B "void setCDKEntryHighlight ("
 
153
.BI "CDKENTRY *" "entry",
 
154
.BI "chtype " "highlight",
 
155
.BI "boolean " "cursor");
 
156
.TP 15
148
157
.B "void setCDKEntryHorizontalChar ("
149
158
.BI "CDKENTRY *" "entry",
150
159
.BI "chtype " "character");
301
310
.TP 5
302
311
\fBypos\fR
303
312
controls the placement of the object along the vertical axis.
304
 
It may be an integer or one of the pre-defined values 
 
313
It may be an integer or one of the pre-defined values
305
314
\fITOP\fR, \fIBOTTOM\fR, and \fICENTER\fR.
306
315
.TP 5
307
316
\fBtitle\fR
358
367
The \fBvalue\fR parameter sets the value of the contents of the
359
368
entry field.
360
369
The other parameter names correspond to the same parameter names
361
 
listed in the \fInewCDKEntry\fR function.
 
370
listed in the \fBnewCDKEntry\fR function.
362
371
.TP 5
363
372
.B setCDKEntryBackgroundAttrib
364
373
sets the background attribute of the widget.
387
396
.B setCDKEntryHiddenChar
388
397
sets the character to use when using a hidden character type.
389
398
.TP 5
 
399
.B setCDKEntryHighlight
 
400
sets the attribute of the entry field.
 
401
.TP 5
390
402
.B setCDKEntryHorizontalChar
391
403
sets the horizontal drawing character for the box to
392
404
the given character.
446
458
CTRL-B/Moves the cursor to the left.
447
459
Right Arrow/Moves the cursor to the right.
448
460
CTRL-F/Moves the cursor to the right.
449
 
Delete/Deletes the character before cursor.
450
 
Backspace/Deletes the character before cursor.
 
461
Delete/Deletes the character at the cursor.
 
462
Backspace/Deletes the character before cursor, moves cursor left.
451
463
CTRL-V/T{
452
464
Pastes whatever is in the paste buffer, into the widget.
453
465
T}
483
495
=
484
496
.TE
485
497
.SH SEE ALSO
486
 
.BR cdk (3X),
487
 
.BR cdk_binding (3X),
488
 
.BR cdk_display (3X),
 
498
.BR cdk (3),
 
499
.BR cdk_binding (3),
 
500
.BR cdk_display (3),
489
501
.BR cdk_position (3),
490
 
.BR cdk_process (3X),
491
 
.BR cdk_screen (3X)
 
502
.BR cdk_process (3),
 
503
.BR cdk_screen (3)