// -*- C++ -*- /** * \file character.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Angus Leeming * * Full author contact details are available in file CREDITS. */ #ifndef CHARACTERHELPERS_H #define CHARACTERHELPERS_H #include "lyxfont.h" #include #include class LColor_color; /** Functions of use to the character GUI controller and view */ namespace lyx { namespace frontend { /// enum FONT_STATE { /// IGNORE, /// EMPH_TOGGLE, /// UNDERBAR_TOGGLE, /// NOUN_TOGGLE, /// INHERIT }; /// typedef std::pair FamilyPair; /// typedef std::pair SeriesPair; /// typedef std::pair ShapePair; /// typedef std::pair SizePair; /// typedef std::pair BarPair; /// typedef std::pair ColorPair; /// std::vector const getFamilyData(); /// std::vector const getSeriesData(); /// std::vector const getShapeData(); /// std::vector const getSizeData(); /// std::vector const getBarData(); /// std::vector const getColorData(); } // namespace frontend } // namespace lyx #endif // CHARACTERHELPERS