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 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
|
/* $Xorg: Xlcint.h,v 1.4 2001/02/09 02:03:38 xorgcvs Exp $ */
/*
Copyright 1991, 1998 The Open Group
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of The Open Group shall
not be used in advertising or otherwise to promote the sale, use or
other dealings in this Software without prior written authorization
from The Open Group.
*/
/* $XFree86: xc/lib/X11/Xlcint.h,v 3.14 2002/11/01 13:43:31 alanh Exp $ */
/*
* Copyright 1990, 1991 by OMRON Corporation, NTT Software Corporation,
* and Nippon Telegraph and Telephone Corporation
* Copyright 1991 by the Open Software Foundation
* Copyright 1993 by the TOSHIBA Corp.
* Copyright 1993, 1994 by Sony Corporation
* Copyright 1993, 1994 by the FUJITSU LIMITED
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation, and that the names of OMRON, NTT Software, NTT, Open
* Software Foundation, and Sony Corporation not be used in advertising
* or publicity pertaining to distribution of the software without specific,
* written prior permission. OMRON, NTT Software, NTT, Open Software
* Foundation, and Sony Corporation make no representations about the
* suitability of this software for any purpose. It is provided "as is"
* without express or implied warranty.
*
* OMRON, NTT SOFTWARE, NTT, OPEN SOFTWARE FOUNDATION, AND SONY
* CORPORATION DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
* ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT
* SHALL OMRON, NTT SOFTWARE, NTT, OPEN SOFTWARE FOUNDATION, OR SONY
* CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
* ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Authors: Li Yuhong OMRON Corporation
* Tatsuya Kato NTT Software Corporation
* Hiroshi Kuribayashi OMRON Coproration
* Muneiyoshi Suzuki Nippon Telegraph and Telephone Co.
*
* M. Collins OSF
* Katsuhisa Yano TOSHIBA Corp.
* Makoto Wakamatsu Sony Corporation
* Takashi Fujiwara FUJITSU LIMITED
*/
#ifndef _XLCINT_H_
#define _XLCINT_H_
#ifndef _XP_PRINT_SERVER_
#include <X11/Xresource.h>
#include <X11/Xutil.h>
#include <stdarg.h>
typedef Bool (*XFilterEventProc)(
#if NeedFunctionPrototypes
Display* /* display */,
Window /* window */,
XEvent* /* event */,
XPointer /* client_data */
#endif
);
typedef struct _XIMFilter {
struct _XIMFilter *next;
Window window;
unsigned long event_mask;
int start_type, end_type;
XFilterEventProc filter;
XPointer client_data;
} XFilterEventRec, *XFilterEventList;
typedef struct {
char *name;
XPointer value;
} XIMArg;
#ifdef offsetof
#define XOffsetOf(s_type,field) offsetof(s_type,field)
#else
#define XOffsetOf(s_type,field) ((unsigned int)&(((s_type*)NULL)->field))
#endif
#define XIMNumber(arr) ((unsigned int) (sizeof(arr) / sizeof(arr[0])))
/*
* define secondary data structs which are part of Input Methods
* and Input Context
*/
typedef struct {
char *resource_name; /* Resource string */
XrmQuark xrm_name; /* Resource name quark */
int resource_size; /* Size in bytes of data */
long resource_offset; /* Offset from base */
unsigned short mode; /* Read Write Permission */
unsigned short id; /* Input Method Protocol */
} XIMResource, *XIMResourceList;
/*
* data block describing the visual attributes associated with
* an input context
*/
typedef struct {
XRectangle area;
XRectangle area_needed;
XPoint spot_location;
Colormap colormap;
Atom std_colormap;
unsigned long foreground;
unsigned long background;
Pixmap background_pixmap;
XFontSet fontset;
int line_spacing;
Cursor cursor;
XICCallback start_callback;
XICCallback done_callback;
XICCallback draw_callback;
XICCallback caret_callback;
XIMPreeditState preedit_state;
XICCallback state_notify_callback;
} ICPreeditAttributes, *ICPreeditAttributesPtr;
typedef struct {
XRectangle area;
XRectangle area_needed;
Colormap colormap;
Atom std_colormap;
unsigned long foreground;
unsigned long background;
Pixmap background_pixmap;
XFontSet fontset;
int line_spacing;
Cursor cursor;
XICCallback start_callback;
XICCallback done_callback;
XICCallback draw_callback;
} ICStatusAttributes, *ICStatusAttributesPtr;
#endif /* !_XP_PRINT_SERVER_ */
/*
* Methods for Xrm parsing
*/
/* The state is a pointer to an object created by the locale's
init_parse_info function (default: _XrmDefaultInitParseInfo). */
/* Sets the state to the initial state.
Initiates a sequence of calls to the XmbCharProc. */
typedef void (*XmbInitProc)(
XPointer state
);
/* Transforms one multibyte character, starting at str, and return a 'char'
in the same parsing class (not a wide character!). Returns the number of
consumed bytes in *lenp. */
typedef char (*XmbCharProc)(
XPointer state,
const char * str,
int* lenp
);
/* Terminates a sequence of calls to the XmbCharProc. */
typedef void (*XmbFinishProc)(
XPointer state
);
/* Returns the name of the state's locale, as a static string. */
typedef const char* (*XlcNameProc)(
XPointer state
);
/* Frees the state, which was allocated by the locale's init_parse_info
function. */
typedef void (*XrmDestroyProc)(
XPointer state
);
/* Set of methods for Xrm parsing. */
typedef struct {
XmbInitProc mbinit;
XmbCharProc mbchar;
XmbFinishProc mbfinish;
XlcNameProc lcname;
XrmDestroyProc destroy;
} XrmMethodsRec;
typedef const XrmMethodsRec *XrmMethods;
#ifndef _XP_PRINT_SERVER_
typedef struct _XLCd *XLCd; /* need forward reference */
/*
* define an LC, it's methods, and data.
*/
typedef void (*XCloseLCProc)(
#if NeedFunctionPrototypes
XLCd /* lcd */
#endif
);
typedef char* (*XlcMapModifiersProc)(
#if NeedFunctionPrototypes
XLCd /* lcd */,
_Xconst char* /* user_mods */,
_Xconst char* /* prog_mods */
#endif
);
typedef XOM (*XOpenOMProc)(
#if NeedFunctionPrototypes
XLCd /* lcd */,
Display* /* display */,
XrmDatabase /* rdb */,
_Xconst char* /* res_name */,
_Xconst char* /* res_class */
#endif
);
typedef XIM (*XOpenIMProc)(
#if NeedFunctionPrototypes
XLCd /* lcd */,
Display* /* display */,
XrmDatabase /* rdb */,
char* /* res_name */,
char* /* res_class */
#endif
);
typedef Bool (*XRegisterIMInstantiateCBProc)(
#if NeedFunctionPrototypes
XLCd /* lcd */,
Display* /* display */,
XrmDatabase /* rdb */,
char* /* res_name */,
char* /* res_class */,
XIDProc /* callback */,
XPointer /* client_data */
#endif
);
typedef Bool (*XUnregisterIMInstantiateCBProc)(
#if NeedFunctionPrototypes
XLCd /* lcd */,
Display* /* display */,
XrmDatabase /* rdb */,
char* /* res_name */,
char* /* res_class */,
XIDProc /* callback */,
XPointer /* client_data */
#endif
);
typedef XrmMethods (*XrmInitParseInfoProc)(
#if NeedFunctionPrototypes
XLCd /* lcd */,
XPointer* /* state */
#endif
);
typedef int (*XmbTextPropertyToTextListProc)(
XLCd lcd,
Display* display,
const XTextProperty* text_prop,
char*** list_return,
int* count_return
);
typedef int (*XwcTextPropertyToTextListProc)(
XLCd lcd,
Display* display,
const XTextProperty* text_prop,
wchar_t*** list_return,
int* count_return
);
typedef int (*XmbTextListToTextPropertyProc)(
XLCd lcd,
Display* display,
char** list,
int count,
XICCEncodingStyle style,
XTextProperty* text_prop_return
);
typedef int (*XwcTextListToTextPropertyProc)(
XLCd lcd,
Display* display,
wchar_t** list,
int count,
XICCEncodingStyle style,
XTextProperty* text_prop_return
);
typedef void (*XwcFreeStringListProc)(
XLCd lcd,
wchar_t** list
);
typedef const char* (*XDefaultStringProc)(
XLCd lcd
);
typedef struct {
XCloseLCProc close;
XlcMapModifiersProc map_modifiers;
XOpenOMProc open_om;
XOpenIMProc open_im;
XrmInitParseInfoProc init_parse_info;
XmbTextPropertyToTextListProc mb_text_prop_to_list;
XwcTextPropertyToTextListProc wc_text_prop_to_list;
XmbTextPropertyToTextListProc utf8_text_prop_to_list;
XmbTextListToTextPropertyProc mb_text_list_to_prop;
XwcTextListToTextPropertyProc wc_text_list_to_prop;
XmbTextListToTextPropertyProc utf8_text_list_to_prop;
XwcFreeStringListProc wc_free_string_list;
XDefaultStringProc default_string;
XRegisterIMInstantiateCBProc register_callback;
XUnregisterIMInstantiateCBProc unregister_callback;
} XLCdMethodsRec, *XLCdMethods;
typedef struct {
char* name; /* name of this LC */
char* modifiers; /* modifiers of locale */
} XLCdCoreRec, *XLCdCore;
typedef struct _XLCd {
XLCdMethods methods; /* methods of this LC */
XLCdCore core; /* data of this LC */
XPointer opaque; /* LDX specific data */
} XLCdRec;
typedef int XlcPosition;
#define XlcHead 0
#define XlcTail -1
typedef struct {
char *name;
XPointer value;
} XlcArg, *XlcArgList;
typedef struct _XlcResource {
char *name;
XrmQuark xrm_name;
int size;
int offset;
unsigned long mask;
} XlcResource, *XlcResourceList;
#define XlcCreateMask (1L<<0)
#define XlcDefaultMask (1L<<1)
#define XlcGetMask (1L<<2)
#define XlcSetMask (1L<<3)
#define XlcIgnoreMask (1L<<4)
#define XlcNumber(arr) (sizeof(arr) / sizeof(arr[0]))
typedef Status (*XCloseOMProc)(
#if NeedFunctionPrototypes
XOM /* om */
#endif
);
typedef char* (*XSetOMValuesProc)(
#if NeedFunctionPrototypes
XOM /* om */,
XlcArgList /* args */,
int /* num_args */
#endif
);
typedef char* (*XGetOMValuesProc)(
#if NeedFunctionPrototypes
XOM /* om */,
XlcArgList /* args */,
int /* num_args */
#endif
);
typedef XOC (*XCreateOCProc)(
#if NeedFunctionPrototypes
XOM /* om */,
XlcArgList /* args */,
int /* num_args */
#endif
);
typedef struct _XOMMethodsRec {
XCloseOMProc close;
XSetOMValuesProc set_values;
XGetOMValuesProc get_values;
XCreateOCProc create_oc;
} XOMMethodsRec, *XOMMethods;
typedef struct _XOMCoreRec {
XLCd lcd; /* lcd */
Display *display; /* display */
XrmDatabase rdb; /* database */
char *res_name; /* resource name */
char *res_class; /* resource class */
XOC oc_list; /* xoc list */
XlcResourceList resources; /* xom resources */
int num_resources; /* number of xom resources */
XOMCharSetList required_charset; /* required charset list */
XOMOrientation orientation_list; /* orientation list */
Bool directional_dependent; /* directional-dependent */
Bool contextual_drawing; /* contextual drawing */
Bool context_dependent; /* context-dependent drawing */
} XOMCoreRec, *XOMCore;
typedef struct _XOM {
XOMMethods methods;
XOMCoreRec core;
} XOMRec;
typedef void (*XDestroyOCProc)(
#if NeedFunctionPrototypes
XOC /* oc */
#endif
);
typedef char* (*XSetOCValuesProc)(
#if NeedFunctionPrototypes
XOC /* oc */,
XlcArgList /* args */,
int /* num_args */
#endif
);
typedef char* (*XGetOCValuesProc)(
#if NeedFunctionPrototypes
XOC /* oc */,
XlcArgList /* args */,
int /* num_args */
#endif
);
/*
* X Font Sets are an instantiable object, so we define it, the
* object itself, a method list and data
*/
/*
* XFontSet object method list
*/
typedef int (*XmbTextEscapementProc)(
#if NeedFunctionPrototypes
XFontSet /* font_set */,
_Xconst char* /* text */,
int /* text_len */
#endif
);
typedef int (*XmbTextExtentsProc)(
#if NeedFunctionPrototypes
XFontSet /* font_set */,
_Xconst char* /* text */,
int /* text_len */,
XRectangle* /* overall_ink_extents */,
XRectangle* /* overall_logical_extents */
#endif
);
typedef Status (*XmbTextPerCharExtentsProc)(
#if NeedFunctionPrototypes
XFontSet /* font_set */,
_Xconst char* /* text */,
int /* text_len */,
XRectangle* /* ink_extents_buffer */,
XRectangle* /* logical_extents_buffer */,
int /* buffer_size */,
int* /* num_chars */,
XRectangle* /* max_ink_extents */,
XRectangle* /* max_logical_extents */
#endif
);
typedef int (*XmbDrawStringProc)(
#if NeedFunctionPrototypes
Display* /* display */,
Drawable /* drawable */,
XFontSet /* font_set */,
GC /* gc */,
int /* x */,
int /* y */,
_Xconst char* /* text */,
int /* text_len */
#endif
);
typedef void (*XmbDrawImageStringProc)(
#if NeedFunctionPrototypes
Display* /* display */,
Drawable /* drawable */,
XFontSet /* font_set */,
GC /* gc */,
int /* x */,
int /* y */,
_Xconst char* /* text */,
int /* text_len */
#endif
);
typedef int (*XwcTextEscapementProc)(
#if NeedFunctionPrototypes
XFontSet /* font_set */,
_Xconst wchar_t* /* text */,
int /* text_len */
#endif
);
typedef int (*XwcTextExtentsProc)(
#if NeedFunctionPrototypes
XFontSet /* font_set */,
_Xconst wchar_t* /* text */,
int /* text_len */,
XRectangle* /* overall_ink_extents */,
XRectangle* /* overall_logical_extents */
#endif
);
typedef Status (*XwcTextPerCharExtentsProc)(
#if NeedFunctionPrototypes
XFontSet /* font_set */,
_Xconst wchar_t* /* text */,
int /* text_len */,
XRectangle* /* ink_extents_buffer */,
XRectangle* /* logical_extents_buffer */,
int /* buffer_size */,
int* /* num_chars */,
XRectangle* /* max_ink_extents */,
XRectangle* /* max_logical_extents */
#endif
);
typedef int (*XwcDrawStringProc)(
#if NeedFunctionPrototypes
Display* /* display */,
Drawable /* drawable */,
XFontSet /* font_set */,
GC /* gc */,
int /* x */,
int /* y */,
_Xconst wchar_t* /* text */,
int /* text_len */
#endif
);
typedef void (*XwcDrawImageStringProc)(
#if NeedFunctionPrototypes
Display* /* display */,
Drawable /* drawable */,
XFontSet /* font_set */,
GC /* gc */,
int /* x */,
int /* y */,
_Xconst wchar_t* /* text */,
int /* text_len */
#endif
);
typedef struct {
XDestroyOCProc destroy;
XSetOCValuesProc set_values;
XGetOCValuesProc get_values;
/* multi-byte text drawing methods */
XmbTextEscapementProc mb_escapement;
XmbTextExtentsProc mb_extents;
XmbTextPerCharExtentsProc mb_extents_per_char;
XmbDrawStringProc mb_draw_string;
XmbDrawImageStringProc mb_draw_image_string;
/* wide character text drawing methods */
XwcTextEscapementProc wc_escapement;
XwcTextExtentsProc wc_extents;
XwcTextPerCharExtentsProc wc_extents_per_char;
XwcDrawStringProc wc_draw_string;
XwcDrawImageStringProc wc_draw_image_string;
/* UTF-8 text drawing methods */
XmbTextEscapementProc utf8_escapement;
XmbTextExtentsProc utf8_extents;
XmbTextPerCharExtentsProc utf8_extents_per_char;
XmbDrawStringProc utf8_draw_string;
XmbDrawImageStringProc utf8_draw_image_string;
} XOCMethodsRec, *XOCMethods;
/*
* XOC independent data
*/
typedef struct {
XOM om; /* XOM */
XOC next; /* next XOC */
XlcResourceList resources; /* xoc resources */
int num_resources; /* number of xoc resources */
char *base_name_list; /* base font name list */
Bool om_automatic; /* OM Automatic */
XOMFontInfo font_info; /* font info */
XFontSetExtents font_set_extents; /* font set extents */
char *default_string; /* default string */
XOMCharSetList missing_list; /* missing charset list */
XOrientation orientation; /* orientation */
char *res_name; /* resource name */
char *res_class; /* resource class */
} XOCCoreRec, *XOCCore;
typedef struct _XOC {
XOCMethods methods;
XOCCoreRec core;
} XOCRec;
/* current Ultrix compiler gets horribly confused */
#if defined(FUNCPROTO) && defined(ultrix)
#undef NeedFunctionPrototypes
#endif
/*
* X Input Managers are an instantiable object, so we define it, the
* object itself, a method list and data.
*/
/*
* an Input Manager object method list
*/
typedef struct {
Status (*close)(
#if NeedFunctionPrototypes
XIM
#endif
);
char* (*set_values)(
#if NeedFunctionPrototypes
XIM, XIMArg*
#endif
);
char* (*get_values)(
#if NeedFunctionPrototypes
XIM, XIMArg*
#endif
);
XIC (*create_ic)(
#if NeedFunctionPrototypes
XIM, XIMArg*
#endif
);
int (*ctstombs)(
#if NeedFunctionPrototypes
XIM, char*, int, char*, int, Status *
#endif
);
int (*ctstowcs)(
#if NeedFunctionPrototypes
XIM, char*, int, wchar_t*, int, Status *
#endif
);
int (*ctstoutf8)(
#if NeedFunctionPrototypes
XIM, char*, int, char*, int, Status *
#endif
);
} XIMMethodsRec, *XIMMethods;
/*
* Input Manager LC independent data
*/
typedef struct {
XLCd lcd; /* LC of this input method */
XIC ic_chain; /* list of ICs for this IM */
Display * display; /* display */
XrmDatabase rdb;
char * res_name;
char * res_class;
XIMValuesList *im_values_list;
XIMValuesList *ic_values_list;
XIMStyles *styles;
XIMCallback destroy_callback;
char * im_name; /* XIMMODIFIER name */
XIMResourceList im_resources; /* compiled IM resource list */
unsigned int im_num_resources;
XIMResourceList ic_resources; /* compiled IC resource list */
unsigned int ic_num_resources;
Bool visible_position;
} XIMCoreRec, *XIMCore;
/*
* An X Input Manager (IM). Implementations may need to extend this data
* structure to accomodate additional data, state information etc.
*/
typedef struct _XIM {
XIMMethods methods; /* method list of this IM */
XIMCoreRec core; /* data of this IM */
} XIMRec;
/*
* X Input Contexts (IC) are an instantiable object, so we define it, the
* object itself, a method list and data for this object
*/
/*
* Input Context method list
*/
typedef struct {
void (*destroy)(
#if NeedFunctionPrototypes
XIC
#endif
);
void (*set_focus)(
#if NeedFunctionPrototypes
XIC
#endif
);
void (*unset_focus)(
#if NeedFunctionPrototypes
XIC
#endif
);
char* (*set_values)(
#if NeedFunctionPrototypes
XIC, XIMArg*
#endif
);
char* (*get_values)(
#if NeedFunctionPrototypes
XIC, XIMArg*
#endif
);
char* (*mb_reset)(
#if NeedFunctionPrototypes
XIC
#endif
);
wchar_t* (*wc_reset)(
#if NeedFunctionPrototypes
XIC
#endif
);
char* (*utf8_reset)(
#if NeedFunctionPrototypes
XIC
#endif
);
int (*mb_lookup_string)(
#if NeedFunctionPrototypes
XIC, XKeyEvent*, char*, int, KeySym*, Status*
#endif
);
int (*wc_lookup_string)(
#if NeedFunctionPrototypes
XIC, XKeyEvent*, wchar_t*, int, KeySym*, Status*
#endif
);
int (*utf8_lookup_string)(
#if NeedFunctionPrototypes
XIC, XKeyEvent*, char*, int, KeySym*, Status*
#endif
);
} XICMethodsRec, *XICMethods;
/*
* Input Context LC independent data
*/
typedef struct {
XIM im; /* XIM this IC belongs too */
XIC next; /* linked list of ICs for IM */
Window client_window; /* window IM can use for */
/* display or subwindows */
XIMStyle input_style; /* IM's input style */
Window focus_window; /* where key events go */
unsigned long filter_events; /* event mask from IM */
XICCallback geometry_callback; /* client callback */
char * res_name;
char * res_class;
XICCallback destroy_callback;
XICCallback string_conversion_callback;
XIMStringConversionText string_conversion;
XIMResetState reset_state;
XIMHotKeyTriggers *hotkey;
XIMHotKeyState hotkey_state;
ICPreeditAttributes preedit_attr; /* visuals of preedit area */
ICStatusAttributes status_attr; /* visuals of status area */
} XICCoreRec, *XICCore;
/*
* an Input Context. Implementations may need to extend this data
* structure to accomodate additional data, state information etc.
*/
typedef struct _XIC {
XICMethods methods; /* method list of this IC */
XICCoreRec core; /* data of this IC */
} XICRec;
/* current Ultrix compiler gets horribly confused */
#if !defined(NeedFunctionPrototypes) && defined(FUNCPROTO)
#define NeedFunctionPrototypes 1
#endif
/* If the argument 'name' is appropriate for this loader, it instantiates an
XLCd object with appropriate locale methods and returns it. May return
NULL; in this case, the remaining loaders are tried. */
typedef XLCd (*XLCdLoadProc)(
const char* name
);
_XFUNCPROTOBEGIN
extern XLCd _XOpenLC(
const char* name
);
extern void _XCloseLC(
XLCd lcd
);
extern XLCd _XlcCurrentLC (void);
extern Bool _XlcValidModSyntax(
const char* mods,
const char* const * valid
);
extern char *_XlcDefaultMapModifiers(
XLCd lcd,
_Xconst char* user_mods,
_Xconst char* prog_mods
);
extern void _XIMCompileResourceList(
#if NeedFunctionPrototypes
XIMResourceList /* res */,
unsigned int /* num_res */
#endif
);
extern void _XCopyToArg(
#if NeedFunctionPrototypes
XPointer /* src */,
XPointer* /* dst */,
unsigned int /* size */
#endif
);
extern char ** _XParseBaseFontNameList(
#if NeedFunctionPrototypes
char* /* str */,
int* /* num */
#endif
);
extern XrmMethods _XrmInitParseInfo(
XPointer* statep
);
extern void _XRegisterFilterByMask(
#if NeedFunctionPrototypes
Display* /* dpy */,
Window /* window */,
unsigned long /* event_mask */,
Bool (*)(
#if NeedNestedPrototypes
Display* /* display */,
Window /* window */,
XEvent* /* event */,
XPointer /* client_data */
#endif
) /* filter */,
XPointer /* client_data */
#endif
);
extern void _XRegisterFilterByType(
#if NeedFunctionPrototypes
Display* /* dpy */,
Window /* window */,
int /* start_type */,
int /* end_type */,
Bool (*)(
#if NeedNestedPrototypes
Display* /* display */,
Window /* window */,
XEvent* /* event */,
XPointer /* client_data */
#endif
) /* filter */,
XPointer /* client_data */
#endif
);
extern void _XUnregisterFilter(
#if NeedFunctionPrototypes
Display* /* dpy */,
Window /* window */,
Bool (*)(
#if NeedNestedPrototypes
Display* /* display */,
Window /* window */,
XEvent* /* event */,
XPointer /* client_data */
#endif
) /* filter */,
XPointer /* client_data */
#endif
);
extern void _XlcCountVaList(
va_list var,
int* count_return
);
extern void _XlcVaToArgList(
va_list var,
int count,
XlcArgList* args_return
);
extern void _XlcCompileResourceList(
XlcResourceList resources,
int num_resources
);
extern char *_XlcGetValues(
XPointer base,
XlcResourceList resources,
int num_resources,
XlcArgList args,
int num_args,
unsigned long mask
);
extern char *_XlcSetValues(
XPointer base,
XlcResourceList resources,
int num_resources,
XlcArgList args,
int num_args,
unsigned long mask
);
/* documented in i18n/Framework.PS */
extern void _XlcInitLoader (void);
extern void _XlcDeInitLoader (void);
/* documented in i18n/Framework.PS */
/* Returns True on success, False on failure. */
extern Bool _XlcAddLoader(
XLCdLoadProc proc,
XlcPosition position
);
/* documented in i18n/Framework.PS */
extern void _XlcRemoveLoader(
XLCdLoadProc proc
);
/* Registers UTF-8 converters for a non-UTF-8 locale. */
extern void _XlcAddUtf8Converters(
XLCd lcd
);
/* Registers UTF-8 converters for a UTF-8 locale. */
extern void _XlcAddUtf8LocaleConverters(
XLCd lcd
);
/* The default locale loader. Assumes an ASCII encoding. */
extern XLCd _XlcDefaultLoader(
const char* name
);
/* The generic locale loader. Suitable for all encodings except UTF-8.
Uses an XLC_LOCALE configuration file. */
extern XLCd _XlcGenericLoader(
const char* name
);
/* The UTF-8 locale loader. Suitable for UTF-8 encoding.
Uses an XLC_LOCALE configuration file. */
extern XLCd _XlcUtf8Loader(
const char* name
);
/* The old EUC locale loader. */
extern XLCd _XlcEucLoader(
const char* name
);
/* The old SJIS locale loader. */
extern XLCd _XlcSjisLoader(
const char* name
);
/* The old ISO-2022-JP locale loader. */
extern XLCd _XlcJisLoader(
const char* name
);
extern XLCd _XlcDynamicLoad(
const char* name
);
/* The old dynamic loader. */
extern XLCd _XlcDynamicLoader(
const char* name
);
extern Bool _XInitDefaultIM(
XLCd lcd
);
extern Bool _XInitDefaultOM(
XLCd lcd
);
extern Bool _XInitDynamicIM(
XLCd lcd
);
extern Bool _XInitDynamicOM(
XLCd lcd
);
_XFUNCPROTOEND
#endif /* !_XP_PRINT_SERVER_ */
#endif /* _XLCINT_H_ */
|