]> git.lyx.org Git - lyx.git/blob - src/tabular_funcs.h
bug 183
[lyx.git] / src / tabular_funcs.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ====================================================== 
4  * 
5  *           LyX, The Document Processor
6  *       
7  *           Copyright 2000-2001 The LyX Team.
8  *
9  *           @author: Jürgen Vigna
10  *
11  * ====================================================== 
12  */
13
14 #ifndef TABULAR_FUNCS_H
15 #define TABULAR_FUNCS_H
16
17 #ifdef __GNUG__
18 #pragma interface
19 #endif
20
21 #include "LString.h"
22 #include "tabular.h"
23
24 #include <iosfwd>
25
26 // Perfect case for a template... (Lgb)
27 // or perhaps not...
28 template<class T>
29 string const write_attribute(string const & name, T const & t)
30 {
31         string str = " " + name + "=\"" + tostr(t) + "\"";
32         return str;
33 }
34 template<>
35 string const write_attribute(string const & name, bool const & b);
36 template<>
37 string const write_attribute(string const & name, LyXLength const & value);
38 string const tostr(LyXAlignment const & num);
39 string const tostr(LyXTabular::VAlignment const & num);
40 string const tostr(LyXTabular::BoxType const & num);
41
42 // I would have liked a fromstr template a lot better. (Lgb)
43 extern bool string2type(string const str, LyXAlignment & num);
44 extern bool string2type(string const str, LyXTabular::VAlignment & num);
45 extern bool string2type(string const str, LyXTabular::BoxType & num);
46 extern bool string2type(string const str, bool & num);
47 extern bool getTokenValue(string const & str, char const * token, string &ret);
48 extern bool getTokenValue(string const & str, char const * token, int & num);
49 extern bool getTokenValue(string const & str, char const * token,
50                           LyXAlignment & num);
51 extern bool getTokenValue(string const & str, char const * token,
52                           LyXTabular::VAlignment & num);
53 extern bool getTokenValue(string const & str, char const * token,
54                           LyXTabular::BoxType & num);
55 extern bool getTokenValue(string const & str, char const * token, bool & flag);
56 extern bool getTokenValue(string const & str, char const * token,
57                           LyXLength & len);
58 extern void l_getline(std::istream & is, string & str);
59
60 #endif