mirror of https://github.com/bsnes-emu/bsnes.git
75 lines
1.4 KiB
C++
Executable File
75 lines
1.4 KiB
C++
Executable File
#if defined(Hiro_Font)
|
|
|
|
const string Font::Sans = "{sans}";
|
|
const string Font::Serif = "{serif}";
|
|
const string Font::Mono = "{mono}";
|
|
|
|
Font::Font(const string& family, float size) {
|
|
setFamily(family);
|
|
setSize(size);
|
|
state.bold = false;
|
|
state.italic = false;
|
|
}
|
|
|
|
Font::operator bool() const {
|
|
return state.family || state.size || state.bold || state.italic;
|
|
}
|
|
|
|
auto Font::operator==(const Font& source) const -> bool {
|
|
return family() == source.family() && size() == source.size() && bold() == source.bold() && italic() == source.italic();
|
|
}
|
|
|
|
auto Font::operator!=(const Font& source) const -> bool {
|
|
return !operator==(source);
|
|
}
|
|
|
|
auto Font::bold() const -> bool {
|
|
return state.bold;
|
|
}
|
|
|
|
auto Font::family() const -> string {
|
|
return state.family;
|
|
}
|
|
|
|
auto Font::italic() const -> bool {
|
|
return state.italic;
|
|
}
|
|
|
|
auto Font::reset() -> type& {
|
|
state.family = "";
|
|
state.size = 0;
|
|
state.bold = false;
|
|
state.italic = false;
|
|
return *this;
|
|
}
|
|
|
|
auto Font::setBold(bool bold) -> type& {
|
|
state.bold = bold;
|
|
return *this;
|
|
}
|
|
|
|
auto Font::setFamily(const string& family) -> type& {
|
|
state.family = family;
|
|
return *this;
|
|
}
|
|
|
|
auto Font::setItalic(bool italic) -> type& {
|
|
state.italic = italic;
|
|
return *this;
|
|
}
|
|
|
|
auto Font::setSize(float size) -> type& {
|
|
state.size = size;
|
|
return *this;
|
|
}
|
|
|
|
auto Font::size() const -> float {
|
|
return state.size;
|
|
}
|
|
|
|
auto Font::size(const string& text) const -> Size {
|
|
return pFont::size(*this, text);
|
|
}
|
|
|
|
#endif
|