Example #1
0
Color RenderTheme::platformActiveListBoxSelectionBackgroundColor() const
{
    return platformActiveSelectionBackgroundColor();
}
Example #2
0
Color RenderTheme::activeSelectionBackgroundColor() const
{
    if (!m_activeSelectionBackgroundColor.isValid())
        m_activeSelectionBackgroundColor = platformActiveSelectionBackgroundColor().blendWithWhite();
    return m_activeSelectionBackgroundColor;
}
Example #3
0
//SAMSUNG ADVANCED TEXT SELECTION - BEGIN
Color RenderTheme::platformActiveSelectionBackgroundColor(Settings* o) const
{
    return platformActiveSelectionBackgroundColor();
}
Color RenderThemeSymbian::platformInactiveSelectionBackgroundColor() const
{
    return platformActiveSelectionBackgroundColor();
}
//SAMSUNG - Text Selection >>
Color RenderTheme::activeSelectionBackgroundColor(Settings* s) const
{
    if (!m_activeSelectionBackgroundColor.isValid())
        m_activeSelectionBackgroundColor = platformActiveSelectionBackgroundColor(s);
    return m_activeSelectionBackgroundColor;
}
Example #6
0
Color LayoutTheme::activeSelectionBackgroundColor() const
{
    return platformActiveSelectionBackgroundColor().blendWithWhite();
}