// -*- C++ -*- /* This file is part of * ====================================================== * * LyX, The Document Processor * * Copyright 2001 The LyX Team. * * ====================================================== * * \file character.h * \author Angus Leeming */ #ifndef CHARACTERHELPERS_H #define CHARACTERHELPERS_H #ifdef __GNUG__ #pragma interface #endif #include "lyxfont.h" #include "LColor.h" #include #include /** Functions of use to the character GUI controller and view */ namespace frnt { /// 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 frnt #endif // CHARACTERHELPERS