1 /* Copyright (C) 2008 Vincent Penquerc'h.
2    This file is part of the Kate codec library.
3    Written by Vincent Penquerc'h.
4 
5    Use, distribution and reproduction of this library is governed
6    by a BSD style source license included with this source in the
7    file 'COPYING'. Please read these terms before distributing. */
8 
9 
10 #ifndef KATE_kstrings_h_GUARD
11 #define KATE_kstrings_h_GUARD
12 
13 #include "kate/kate.h"
14 
15 extern const char *halign2text(kate_float d);
16 extern const char *valign2text(kate_float d);
17 extern const char *metric2text(kate_space_metric d);
18 extern const char *metric2suffix(kate_space_metric d);
19 extern const char *curve2text(kate_curve_type d);
20 extern const char *semantics2text(kate_motion_semantics d);
21 extern const char *mapping2text(kate_motion_mapping d);
22 extern const char *directionality2text(kate_text_directionality d);
23 extern const char *wrap2text(kate_wrap_mode w);
24 extern const char *encoding2text(kate_text_encoding text_encoding);
25 
26 #endif
27 
28