-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathd_text.h
38 lines (36 loc) · 1.44 KB
/
d_text.h
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
/*
* FIG : Facility for Interactive Generation of figures
* Copyright (c) 1985-1988 by Supoj Sutanthavibul
* Parts Copyright (c) 1989-2007 by Brian V. Smith
* Parts Copyright (c) 1991 by Paul King
*
* Any party obtaining a copy of these files is granted, free of charge, a
* full and unrestricted irrevocable, world-wide, paid up, royalty-free,
* nonexclusive right and license to deal in this software and documentation
* files (the "Software"), including without limitation the rights to use,
* copy, modify, merge, publish distribute, sublicense and/or sell copies of
* the Software, and to permit persons who receive copies from any such
* party to do so, with the only requirement being that the above copyright
* and this permission notice remain intact.
*
*/
extern void char_handler(XKeyEvent *kpe, unsigned char c, KeySym keysym);
extern void draw_char_string(void);
extern void erase_char_string(void);
extern void finish_text_input(int x, int y, int shift);
extern void reload_text_fstruct(F_text *t);
extern void reload_text_fstructs(void);
extern Boolean text_selection_active;
extern Boolean ConvertSelection();
extern void LoseSelection(), TransferSelectionDone();
extern int work_font;
#ifdef I18N
extern XIC xim_ic;
extern Boolean xim_active;
extern i18n_char_handler();
extern prefix_append_char();
#ifdef I18N_USE_PREEDIT
extern kill_preedit();
#endif /* I18N_USE_PREEDIT */
#endif /* I18N */
extern void text_drawing_selected (void);