XCreateIC(3X11)XCreateIC(3X11)NAME
XCreateIC, XDestroyIC, XIMOfIC - create, destroy, and obtain the input method of an input context
SYNOPSIS
XIC XCreateIC(im, ...)
XIM im;
void XDestroyIC(ic)
XIC ic;
XIM XIMOfIC(ic)
XIC ic;
ARGUMENTS
Specifies the input context. Specifies the input method. Specifies the variable length argument list to set XIC values.
DESCRIPTION
The XCreateIC function creates a context within the specified input method.
Some of the arguments are mandatory at creation time, and the input context will not be created if those arguments are not provided. The
mandatory arguments are the input style and the set of text callbacks (if the input style selected requires callbacks). All other input
context values can be set later.
XCreateIC returns a NULL value if no input context could be created. A NULL value could be returned for any of the following reasons: A
required argument was not set. A read-only argument was set (for example, XNFilterEvents). The argument name is not recognized. The
input method encountered an input method implementation-dependent error.
The XCreateIC can generate BadAtom, BadColor, BadPixmap, and BadWindow errors.
XDestroyIC destroys the specified input context.
The XIMOfIC function returns the input method associated with the specified input context.
DIAGNOSTICS
A value for an Atom argument does not name a defined Atom. A value for a Colormap argument does not name a defined Colormap. A value for
a Pixmap argument does not name a defined Pixmap. A value for a Window argument does not name a defined Window.
SEE ALSO XOpenIM(3X11), XSetICFocus(3X11), XSetICValues(3X11), XmbResetIC(3X11)
Xlib -- C Language X Interface
XCreateIC(3X11)
Check Out this Related Man Page
XCreateIC(3X11) XLIB FUNCTIONS XCreateIC(3X11)NAME
XCreateIC, XDestroyIC, XIMOfIC - create, destroy, and obtain the input method of an input context
SYNTAX
XIC XCreateIC(im, ...)
XIM im;
void XDestroyIC(ic)
XIC ic;
XIM XIMOfIC(ic)
XIC ic;
ARGUMENTS
ic Specifies the input context.
im Specifies the input method.
... Specifies the variable length argument list to set XIC values.
DESCRIPTION
The XCreateIC function creates a context within the specified input method.
Some of the arguments are mandatory at creation time, and the input context will not be created if those arguments are not provided. The
mandatory arguments are the input style and the set of text callbacks (if the input style selected requires callbacks). All other input
context values can be set later.
XCreateIC returns a NULL value if no input context could be created. A NULL value could be returned for any of the following reasons:
o A required argument was not set.
o A read-only argument was set (for example, XNFilterEvents).
o The argument name is not recognized.
o The input method encountered an input method implementation-dependent error.
The XCreateIC can generate BadAtom, BadColor, BadPixmap, and BadWindow errors.
XDestroyIC destroys the specified input context.
The XIMOfIC function returns the input method associated with the specified input context.
DIAGNOSTICS
BadAtom A value for an Atom argument does not name a defined Atom.
BadColor A value for a Colormap argument does not name a defined Colormap.
BadPixmap A value for a Pixmap argument does not name a defined Pixmap.
BadWindow A value for a Window argument does not name a defined Window.
SEE ALSO XOpenIM(3X11), XSetICFocus(3X11), XSetICValues(3X11), XmbResetIC(3X11)
Xlib - C Language X Interface
X Version 11 Release 6.6 XCreateIC(3X11)
Hi all,
Here is the statement
====
If InCallFlag = ‘Y'
if (input:LanId != ‘') TempLanId = input:LanId
if (input:Location != ‘') TempLocation = input:Location
if (input:ANI != ‘') TempANI = input:ANI
if (input:Extension != ‘') TempExtension = input:Extension
if (input:CallLength != ‘')... (5 Replies)
Playing with an until loop as follows:
my $input;
until ($input eq "quit") {
print "Please enter something:";
$input = <STDIN>;
chomp $input;
if ($input eq "dog") {
print "cat" ;
}
else {
print "Please re-enter";
}
}
Something simple like this...
I want to prompt the user to... (3 Replies)
i open the google search and want to search something, now , i want to change the input method ,but i don't know how to change the default input.
the default is english, how to exchange with others. thanks in advance (0 Replies)
Hi Guys
Please can you help me to create a file using the following inputs
2351 first input
2339 second input
all this rows need to have the value 0 in front
2338 third input
2333 fourth input
all this rows need to have the value 1 in front
count all the rows in the file and insert the... (10 Replies)