File: kstrings.h

package info (click to toggle)
libkate 0.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,680 kB
  • sloc: ansic: 11,059; sh: 4,930; yacc: 2,358; python: 767; javascript: 407; lex: 363; makefile: 263
file content (27 lines) | stat: -rw-r--r-- 970 bytes parent folder | download | duplicates (7)
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
/* Copyright (C) 2008 Vincent Penquerc'h.
   This file is part of the Kate codec library.
   Written by Vincent Penquerc'h.

   Use, distribution and reproduction of this library is governed
   by a BSD style source license included with this source in the
   file 'COPYING'. Please read these terms before distributing. */


#ifndef KATE_kstrings_h_GUARD
#define KATE_kstrings_h_GUARD

#include "kate/kate.h"

extern const char *halign2text(kate_float d);
extern const char *valign2text(kate_float d);
extern const char *metric2text(kate_space_metric d);
extern const char *metric2suffix(kate_space_metric d);
extern const char *curve2text(kate_curve_type d);
extern const char *semantics2text(kate_motion_semantics d);
extern const char *mapping2text(kate_motion_mapping d);
extern const char *directionality2text(kate_text_directionality d);
extern const char *wrap2text(kate_wrap_mode w);
extern const char *encoding2text(kate_text_encoding text_encoding);

#endif