#include "ROOT/RText.hxx"
void rtext_font()
{
auto canvas = RCanvas::Create("RText fonts example");
double posy = 0.93;
auto drawText = [&canvas, &posy](
RAttrFont::EFont font,
bool is_comic =
false) {
auto text = canvas->Add<RText>(
RPadPos(0.35, posy),
"ABCDEFGH abcdefgh 0123456789 @#$");
text->text.align = RAttrText::kLeftCenter;
if (is_comic)
text->text.font.family =
"Comic";
else
auto name = canvas->Add<RText>(
RPadPos(0.33, posy),
text->text.font.GetFullName());
name->text.align = RAttrText::kRightCenter;
posy -= 0.05;
};
drawText(RAttrFont::kTimes);
drawText(RAttrFont::kTimesItalic);
drawText(RAttrFont::kTimesBold);
drawText(RAttrFont::kTimesBoldItalic);
drawText(RAttrFont::kArial);
drawText(RAttrFont::kArialOblique);
drawText(RAttrFont::kArialBold);
drawText(RAttrFont::kArialBoldOblique);
drawText(RAttrFont::kCourier);
drawText(RAttrFont::kCourierOblique);
drawText(RAttrFont::kCourierBold);
drawText(RAttrFont::kCourierBoldOblique);
drawText(RAttrFont::kVerdana);
drawText(RAttrFont::kVerdanaItalic);
drawText(RAttrFont::kVerdanaBold);
drawText(RAttrFont::kVerdanaBoldItalic);
posy -= 0.03;
std::string fname = __FILE__;
auto pos = fname.find("rtext_font.cxx");
if (pos > 0) { fname.resize(pos); fname.append("comic.woff2"); }
else fname = "comic.woff2";
canvas->Draw<RFont>("Comic", fname);
drawText(RAttrFont::kTimes, true);
canvas->Show();
}
Option_t Option_t TPoint TPoint const char text
A position (horizontal and vertical) in a RPad.