示例#1
0
Color RenderTheme::platformInactiveListBoxSelectionBackgroundColor() const
{
    return platformInactiveSelectionBackgroundColor();
}
示例#2
0
Color RenderTheme::inactiveSelectionBackgroundColor() const
{
    if (!m_inactiveSelectionBackgroundColor.isValid())
        m_inactiveSelectionBackgroundColor = platformInactiveSelectionBackgroundColor().blendWithWhite();
    return m_inactiveSelectionBackgroundColor;
}
//SAMSUNG - Text Selection >>
Color RenderTheme::inactiveSelectionBackgroundColor(Settings* s) const
{
    if (!m_inactiveSelectionBackgroundColor.isValid())
        m_inactiveSelectionBackgroundColor = platformInactiveSelectionBackgroundColor(s);
    return m_inactiveSelectionBackgroundColor;
}
//SAMSUNG - Text Selection >>
Color RenderTheme::platformInactiveSelectionBackgroundColor(Settings* o) const
{
    return platformInactiveSelectionBackgroundColor();
}
示例#5
0
Color LayoutTheme::inactiveSelectionBackgroundColor() const
{
    return platformInactiveSelectionBackgroundColor().blendWithWhite();
}