File: cbedic.h

package info (click to toggle)
cbedic 4.0-4
  • links: PTS
  • area: contrib
  • in suites: bookworm, bullseye, buster, stretch
  • size: 604 kB
  • ctags: 277
  • sloc: cpp: 1,658; sh: 817; ansic: 798; makefile: 61
file content (60 lines) | stat: -rw-r--r-- 1,610 bytes parent folder | download | duplicates (3)
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
/***************************************************************************

  cbedic.h

  This file is part of the CBE Dictionary package

  Copyright (c) 2003 Antoby - antoby@users.sourceforge.net

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

****************************************************************************/

#ifndef _CBEDIC_H_
#define _CBEDIC_H_


struct DICT_OPTIONS
{
    bool separate_meanings;
    bool latin_input;
    bool latin_output;
    bool html_output;
    bool exact_match;
};

enum INTERACTIVE_CMD
{
    NORMAL_WORD         = 0,
    CMD_HELP            = 100,
    CMD_STATUS,
    CMD_QUIT,
    CMD_TOG_SEPARATE    = 200,
    CMD_TOG_LATININ,
    CMD_TOG_LATINOUT,
    CMD_TOG_HTML,
    CMD_TOG_EXACT,
    CMD_UNKNOWN         = 300
};


int interactive_loop(Translator *dict, int exact_match);
INTERACTIVE_CMD check_word(const char *word);
void cbeconfig();
const char *get_home();
void init_globals();


#endif // _CBEDIC_H_