lyx_mirror/src/frontends/controllers/character.h
Angus Leeming 2a31934f38 Wrap most of the frontend code up inside namespace lyx::frontend.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8766 a592a061-630c-0410-9148-cb99ea01b6c8
2004-05-19 15:11:37 +00:00

73 lines
1.3 KiB
C++

// -*- 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 <utility>
#include <vector>
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<std::string, LyXFont::FONT_FAMILY> FamilyPair;
///
typedef std::pair<std::string, LyXFont::FONT_SERIES> SeriesPair;
///
typedef std::pair<std::string, LyXFont::FONT_SHAPE> ShapePair;
///
typedef std::pair<std::string, LyXFont::FONT_SIZE> SizePair;
///
typedef std::pair<std::string, FONT_STATE> BarPair;
///
typedef std::pair<std::string, LColor_color> ColorPair;
///
std::vector<FamilyPair> const getFamilyData();
///
std::vector<SeriesPair> const getSeriesData();
///
std::vector<ShapePair> const getShapeData();
///
std::vector<SizePair> const getSizeData();
///
std::vector<BarPair> const getBarData();
///
std::vector<ColorPair> const getColorData();
} // namespace frontend
} // namespace lyx
#endif // CHARACTERHELPERS