]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/staging/speakup/speakup.h
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec
[karo-tx-linux.git] / drivers / staging / speakup / speakup.h
1 #ifndef _SPEAKUP_H
2 #define _SPEAKUP_H
3
4 #include "spk_types.h"
5 #include "i18n.h"
6
7 #define SPEAKUP_VERSION "3.1.6"
8 #define KEY_MAP_VER 119
9 #define SHIFT_TBL_SIZE 64
10 #define MAX_DESC_LEN 72
11
12 #define TOGGLE_0 .u.n = {NULL, 0, 0, 1, 0, 0, NULL }
13 #define TOGGLE_1 .u.n = {NULL, 1, 0, 1, 0, 0, NULL }
14 #define MAXVARLEN 15
15
16 #define SYNTH_OK 0x0001
17 #define B_ALPHA 0x0002
18 #define ALPHA 0x0003
19 #define B_CAP 0x0004
20 #define A_CAP 0x0007
21 #define B_NUM 0x0008
22 #define NUM 0x0009
23 #define ALPHANUM (B_ALPHA|B_NUM)
24 #define SOME 0x0010
25 #define MOST 0x0020
26 #define PUNC 0x0040
27 #define A_PUNC 0x0041
28 #define B_WDLM 0x0080
29 #define WDLM 0x0081
30 #define B_EXNUM 0x0100
31 #define CH_RPT 0x0200
32 #define B_CTL 0x0400
33 #define A_CTL (B_CTL+SYNTH_OK)
34 #define B_SYM 0x0800
35 #define B_CAPSYM (B_CAP|B_SYM)
36
37 #define IS_WDLM(x) (spk_chartab[((u_char)x)]&B_WDLM)
38 #define IS_CHAR(x, type) (spk_chartab[((u_char)x)]&type)
39 #define IS_TYPE(x, type) ((spk_chartab[((u_char)x)]&type) == type)
40
41 int speakup_thread(void *data);
42 void spk_reset_default_chars(void);
43 void spk_reset_default_chartab(void);
44 void synth_start(void);
45 void synth_insert_next_index(int sent_num);
46 void spk_reset_index_count(int sc);
47 void spk_get_index_count(int *linecount, int *sentcount);
48 int spk_set_key_info(const u_char *key_info, u_char *k_buffer);
49 char *spk_strlwr(char *s);
50 char *spk_s2uchar(char *start, char *dest);
51 int speakup_kobj_init(void);
52 void speakup_kobj_exit(void);
53 int spk_chartab_get_value(char *keyword);
54 void speakup_register_var(struct var_t *var);
55 void speakup_unregister_var(enum var_id_t var_id);
56 struct st_var_header *spk_get_var_header(enum var_id_t var_id);
57 struct st_var_header *spk_var_header_by_name(const char *name);
58 struct punc_var_t *spk_get_punc_var(enum var_id_t var_id);
59 int spk_set_num_var(int val, struct st_var_header *var, int how);
60 int spk_set_string_var(const char *page, struct st_var_header *var, int len);
61 int spk_set_mask_bits(const char *input, const int which, const int how);
62 extern special_func spk_special_handler;
63 int spk_handle_help(struct vc_data *vc, u_char type, u_char ch, u_short key);
64 int synth_init(char *name);
65 void synth_release(void);
66
67 void spk_do_flush(void);
68 void speakup_start_ttys(void);
69 void synth_buffer_add(char ch);
70 void synth_buffer_clear(void);
71 void speakup_clear_selection(void);
72 int speakup_set_selection(struct tty_struct *tty);
73 int speakup_paste_selection(struct tty_struct *tty);
74 void speakup_cancel_paste(void);
75 void speakup_register_devsynth(void);
76 void speakup_unregister_devsynth(void);
77 void synth_write(const char *buf, size_t count);
78 int synth_supports_indexing(void);
79
80 extern struct vc_data *spk_sel_cons;
81 extern unsigned short spk_xs, spk_ys, spk_xe, spk_ye; /* our region points */
82
83 extern wait_queue_head_t speakup_event;
84 extern struct kobject *speakup_kobj;
85 extern struct task_struct *speakup_task;
86 extern const u_char spk_key_defaults[];
87
88 /* Protect speakup synthesizer list */
89 extern struct mutex spk_mutex;
90 extern struct st_spk_t *speakup_console[];
91 extern struct spk_synth *synth;
92 extern char spk_pitch_buff[];
93 extern u_char *spk_our_keys[];
94 extern short spk_punc_masks[];
95 extern char spk_str_caps_start[], spk_str_caps_stop[];
96 extern const struct st_bits_data spk_punc_info[];
97 extern u_char spk_key_buf[600];
98 extern char *spk_characters[];
99 extern char *spk_default_chars[];
100 extern u_short spk_chartab[];
101 extern int spk_no_intr, spk_say_ctrl, spk_say_word_ctl, spk_punc_level;
102 extern int spk_reading_punc, spk_attrib_bleep, spk_bleeps;
103 extern int spk_bleep_time, spk_bell_pos;
104 extern int spk_spell_delay, spk_key_echo;
105 extern short spk_punc_mask;
106 extern short spk_pitch_shift, synth_flags;
107 extern bool spk_quiet_boot;
108 extern char *synth_name;
109 extern struct bleep spk_unprocessed_sound;
110
111 /* Prototypes from fakekey.c. */
112 int speakup_add_virtual_keyboard(void);
113 void speakup_remove_virtual_keyboard(void);
114 void speakup_fake_down_arrow(void);
115 bool speakup_fake_key_pressed(void);
116
117 #endif