2006-10-15 21:47:29 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file NoGuiFontMetrics.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Abdelrazak Younes
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LYX_NO_GUI_FONT_METRICS_H
|
|
|
|
#define LYX_NO_GUI_FONT_METRICS_H
|
|
|
|
|
|
|
|
#include "frontends/FontMetrics.h"
|
|
|
|
|
|
|
|
#include "support/docstring.h"
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
class NoGuiFontMetrics : public FontMetrics
|
2006-10-15 21:47:29 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
NoGuiFontMetrics() {}
|
|
|
|
|
|
|
|
virtual ~NoGuiFontMetrics() {}
|
|
|
|
|
|
|
|
virtual int maxAscent() const { return 1; }
|
|
|
|
|
|
|
|
virtual int maxDescent() const { return 1; }
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
virtual int ascent(char_type) const { return 1; }
|
2006-10-15 21:47:29 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
int descent(char_type) const { return 1; }
|
2006-10-15 21:47:29 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
virtual int lbearing(char_type) const { return 1; }
|
2006-10-15 21:47:29 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
virtual int rbearing(char_type) const { return 1; }
|
2006-10-15 21:47:29 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
virtual int width(char_type const *, size_t n) const { return n; }
|
2006-10-15 21:47:29 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
virtual int signedWidth(docstring const & s) const
|
2006-10-15 21:47:29 +00:00
|
|
|
{
|
2006-10-21 00:16:43 +00:00
|
|
|
if (s.size() && s[0] == '-')
|
2006-10-15 21:47:29 +00:00
|
|
|
return -FontMetrics::width(s.substr(1, s.length() - 1));
|
2006-10-21 00:16:43 +00:00
|
|
|
return FontMetrics::width(s);
|
2006-10-15 21:47:29 +00:00
|
|
|
}
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
virtual void rectText(docstring const &,
|
|
|
|
int & /*width*/, int & /*ascent*/, int & /*descent*/) const {}
|
2006-10-15 21:47:29 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
virtual void buttonText(docstring const &,
|
|
|
|
int & /*width*/, int & /*ascent*/, int & /*descent*/) const {}
|
2006-10-15 21:47:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
#endif // LYX_NO_GUI_FONT_METRICS_H
|