mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
8283e978f8
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3803 a592a061-630c-0410-9148-cb99ea01b6c8
109 lines
2.1 KiB
C++
109 lines
2.1 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2001 The LyX Team.
|
|
*
|
|
* ====================================================== */
|
|
|
|
#ifndef FONT_H
|
|
#define FONT_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include "LString.h"
|
|
|
|
class LyXFont;
|
|
|
|
//namespace lyx {
|
|
//namespace font {
|
|
///
|
|
struct lyxfont {
|
|
///
|
|
static
|
|
int maxAscent(LyXFont const & f);
|
|
///
|
|
static
|
|
int maxDescent(LyXFont const & f);
|
|
///
|
|
static
|
|
int ascent(char c, LyXFont const & f);
|
|
///
|
|
static
|
|
int descent(char c, LyXFont const & f);
|
|
///
|
|
static
|
|
int lbearing(char c, LyXFont const & f);
|
|
///
|
|
static
|
|
int rbearing(char c, LyXFont const & f);
|
|
///
|
|
static
|
|
int width(char c, LyXFont const & f) {
|
|
return width(&c, 1, f);
|
|
}
|
|
///
|
|
static
|
|
int width(char const * s, size_t n, LyXFont const & f);
|
|
///
|
|
static
|
|
int width(string const & s, LyXFont const & f) {
|
|
if (s.empty()) return 0;
|
|
return width(s.data(), s.length(), f);
|
|
}
|
|
///
|
|
//static
|
|
//int width(char const * s, LyXFont const & f) {
|
|
// return width(s, strlen(s), f);
|
|
//}
|
|
///
|
|
static
|
|
int signedWidth(string const & s, LyXFont const & f);
|
|
///
|
|
static
|
|
int XTextWidth(LyXFont const & f, char const * str, int count);
|
|
///
|
|
static
|
|
int width(XChar2b const * s, int n, LyXFont const & f);
|
|
///
|
|
static
|
|
int XTextWidth16(LyXFont const & f, XChar2b const * str, int count);
|
|
///
|
|
static
|
|
void XSetFont(Display * display, GC gc, LyXFont const & f);
|
|
// A couple of more high-level metrics
|
|
///
|
|
static
|
|
void rectText(string const & str, LyXFont const & font,
|
|
int & width, int & ascent, int & descent);
|
|
///
|
|
static
|
|
void buttonText(string const & str, LyXFont const & font,
|
|
int & width, int & ascent, int & descent);
|
|
};
|
|
|
|
//} // end of namespace font
|
|
|
|
// import into namespace lyx
|
|
//using font::maxAscent;
|
|
//using font::maxDescent;
|
|
//using font::ascent;
|
|
//using font::descent;
|
|
//using font::lbearing;
|
|
//using font::rbearing;
|
|
//using font::width;
|
|
//using font::signedWidth;
|
|
//using font::XTextWidth;
|
|
//using font::XSetFont;
|
|
|
|
//} // end of namespace lyx
|
|
|
|
#endif
|