本文整理汇总了C++中Font::FindGlyph方法的典型用法代码示例。如果您正苦于以下问题:C++ Font::FindGlyph方法的具体用法?C++ Font::FindGlyph怎么用?C++ Font::FindGlyph使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Font
的用法示例。
在下文中一共展示了Font::FindGlyph方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: MyBrowserWindow
MyBrowserWindow(LFL::Window *W) : GUI(W),
menu_atlas1(Fonts::Get("MenuAtlas1", "", 0, Color::black)),
menu_atlas2(Fonts::Get("MenuAtlas2", "", 0, Color::black)),
back (this, &menu_atlas1->FindGlyph(20)->tex, 0, "", MouseController::CB([&](){ browser->BackButton(); })),
forward(this, &menu_atlas1->FindGlyph(22)->tex, 0, "", MouseController::CB([&](){ browser->ForwardButton(); })),
refresh(this, &menu_atlas2->FindGlyph(50)->tex, 0, "", MouseController::CB([&](){ browser->RefreshButton(); })),
address_box(W, Fonts::Get(FLAGS_default_font, "", 12, Color::black)) {
address_box.SetToggleKey(0, Toggler::OneShot);
address_box.cmd_prefix.clear();
address_box.deactivate_on_enter = true;
address_box.runcb = [&](const string &t){ browser->Open(t); };
refresh.AddClickBox(addressbar, MouseController::CB([&](){ address_box.active = true; }));
}