mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
da44328c30
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2517 a592a061-630c-0410-9148-cb99ea01b6c8
72 lines
1.4 KiB
C++
72 lines
1.4 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 2001 The LyX Team.
|
|
*
|
|
* ======================================================
|
|
*
|
|
* \file character.h
|
|
* \author Angus Leeming <a.leeming@ic.ac.uk>
|
|
*/
|
|
|
|
#ifndef CHARACTERHELPERS_H
|
|
#define CHARACTERHELPERS_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "lyxfont.h"
|
|
#include "LColor.h"
|
|
|
|
/** Functions of use to the character GUI controller and view */
|
|
namespace character {
|
|
///
|
|
enum FONT_STATE {
|
|
///
|
|
IGNORE,
|
|
///
|
|
EMPH_TOGGLE,
|
|
///
|
|
UNDERBAR_TOGGLE,
|
|
///
|
|
NOUN_TOGGLE,
|
|
///
|
|
INHERIT
|
|
};
|
|
|
|
///
|
|
typedef std::pair<string, LyXFont::FONT_FAMILY> FamilyPair;
|
|
///
|
|
typedef std::pair<string, LyXFont::FONT_SERIES> SeriesPair;
|
|
///
|
|
typedef std::pair<string, LyXFont::FONT_SHAPE> ShapePair;
|
|
///
|
|
typedef std::pair<string, LyXFont::FONT_SIZE> SizePair;
|
|
///
|
|
typedef std::pair<string, FONT_STATE> BarPair;
|
|
///
|
|
typedef std::pair<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();
|
|
///
|
|
std::vector<string> const getLanguageData();
|
|
|
|
} // namespace character
|
|
|
|
#endif // CHARACTERHELPERS
|