MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / getFont

Method getFont

examples/triage/byte.cpp:103–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

101
102
103QFont ByteView::getFont()
104{
105 QFont userFont = getMonospaceFont(this);
106#ifdef Q_OS_MACOS
107 // Some fonts aren't fixed width across all characters, use a known good one
108 QFont font("Menlo", userFont.pointSize());
109 font.setKerning(false);
110#else
111 QFont font = userFont;
112#endif
113 return font;
114}
115
116
117uint64_t ByteView::getStart()

Callers 6

flowgraphwidget.hFile · 0.45
getFontFunction · 0.45
getFontFunction · 0.45
getFontFunction · 0.45
getFontFunction · 0.45
getFontFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected