mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
45a03f4f67
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1019 a592a061-630c-0410-9148-cb99ea01b6c8
97 lines
2.0 KiB
C++
97 lines
2.0 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1997 Asger Alstrup
|
|
* and the LyX Team.
|
|
*
|
|
* ====================================================== */
|
|
|
|
#ifndef FONTINFO_H
|
|
#define FONTINFO_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "LString.h"
|
|
|
|
/** This class manages a font.
|
|
The idea is to create a FontInfo object with a font name pattern with a
|
|
wildcard at the size field. Then this object can host request for font-
|
|
instances of any given size. If no exact match is found, the closest size
|
|
is chosen instead. If the font is scalable, the flag
|
|
lyxrc.use_scalable_fonts determines whether to allow scalable fonts to
|
|
give an exact match.
|
|
*/
|
|
class FontInfo {
|
|
public:
|
|
///
|
|
FontInfo() { init(); }
|
|
|
|
///
|
|
explicit FontInfo(string const & pat)
|
|
: pattern(pat) { init(); }
|
|
|
|
/// Destructor
|
|
~FontInfo() { release(); }
|
|
|
|
/// Does any font match our pattern?
|
|
bool exist() {
|
|
query();
|
|
return matches != 0;
|
|
}
|
|
|
|
/// Is this font scalable?
|
|
bool isScalable() {
|
|
query();
|
|
return scalable;
|
|
}
|
|
|
|
/// Get existing pattern
|
|
string const getPattern() const { return pattern; }
|
|
|
|
/// Set new pattern
|
|
void setPattern(string const & pat);
|
|
|
|
/** Return full name of font close to this size.
|
|
If impossible, result is the empty string */
|
|
string const getFontname(int size);
|
|
private:
|
|
/// Font pattern (with wildcard for size)
|
|
string pattern;
|
|
|
|
/// Available size list
|
|
int * sizes;
|
|
|
|
/// Corresponding name list
|
|
string * strings;
|
|
|
|
/// Number of matches
|
|
int matches;
|
|
|
|
/// Did we query X about this font?
|
|
bool queried;
|
|
|
|
/// Is this font scalable?
|
|
bool scalable;
|
|
|
|
/// Which index points to scalable font entry?
|
|
int scaleindex;
|
|
|
|
/// Initialize empty record
|
|
void init();
|
|
|
|
/// Release allocated stuff
|
|
void release();
|
|
|
|
/// Ask X11 about this font pattern
|
|
void query();
|
|
|
|
/// Build newly sized font string
|
|
string const resize(string const &, int size) const;
|
|
};
|
|
#endif
|