lyx_mirror/src/lengthcommon.h
John Levon 2e385ab589 graphics fixes from herbert and me
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5660 a592a061-630c-0410-9148-cb99ea01b6c8
2002-11-17 11:24:08 +00:00

26 lines
525 B
C++

// -*- C++ -*-
#ifndef LENGTH_COMMON_H
#define LENGTH_COMMON_H
#include "LString.h"
#include "lyxlength.h"
/// the number of units possible
extern int const num_units;
/**
* array of unit names
*
* FIXME: I am not sure if "mu" should be possible to select (Lgb)
*/
extern char const * unit_name[];
extern char const * unit_name_gui[];
extern char const * unit_name_ltx[];
/// return the unit given a string representation such as "cm"
LyXLength::UNIT unitFromString(string const & data);
#endif // LENGTH_COMMON_H