Plasma API adjustements:
Theme::colors() => Theme::colorScheme() Theme::image() => Theme::imagePath() svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=797634
This commit is contained in:
parent
4a5df9c733
commit
b237019d4f
@ -59,8 +59,8 @@ AppletHandle::AppletHandle(Containment *parent, Applet *applet)
|
||||
m_buttonsOnRight(false),
|
||||
m_pendingFade(false)
|
||||
{
|
||||
KColorScheme colors(QPalette::Active, KColorScheme::View, Theme::self()->colors());
|
||||
m_gradientColor = colors.background(KColorScheme::NormalBackground).color();
|
||||
KColorScheme colorScheme(QPalette::Active, KColorScheme::View, Theme::self()->colorScheme());
|
||||
m_gradientColor = colorScheme.background(KColorScheme::NormalBackground).color();
|
||||
|
||||
QTransform originalMatrix = m_applet->transform();
|
||||
QRectF rect(m_applet->contentsRect());
|
||||
|
@ -109,11 +109,11 @@ void DesktopToolbox::paint(QPainter *painter, const QStyleOptionGraphicsItem *op
|
||||
painter->translate(boundingRect().topLeft());
|
||||
|
||||
QColor color1 = KColorScheme(QPalette::Active, KColorScheme::Window,
|
||||
Plasma::Theme::self()->colors()).background().color();
|
||||
Plasma::Theme::self()->colorScheme()).background().color();
|
||||
color1.setAlpha(64);
|
||||
|
||||
QColor color2 = KColorScheme(QPalette::Active, KColorScheme::Window,
|
||||
Plasma::Theme::self()->colors()).foreground().color();
|
||||
Plasma::Theme::self()->colorScheme()).foreground().color();
|
||||
color2.setAlpha(64);
|
||||
|
||||
QPainterPath p = shape();
|
||||
|
@ -119,11 +119,11 @@ void PanelToolbox::paint(QPainter *painter, const QStyleOptionGraphicsItem *opti
|
||||
painter->translate(boundingRect().topLeft());
|
||||
|
||||
QColor color1 = KColorScheme(QPalette::Active, KColorScheme::Window,
|
||||
Plasma::Theme::self()->colors()).background().color();
|
||||
Plasma::Theme::self()->colorScheme()).background().color();
|
||||
color1.setAlpha(64);
|
||||
|
||||
QColor color2 = KColorScheme(QPalette::Active, KColorScheme::Window,
|
||||
Plasma::Theme::self()->colors()).foreground().color();
|
||||
Plasma::Theme::self()->colorScheme()).foreground().color();
|
||||
color2.setAlpha(64);
|
||||
|
||||
QPainterPath p = shape();
|
||||
|
8
svg.cpp
8
svg.cpp
@ -98,7 +98,7 @@ class Svg::Private
|
||||
// check if svg wants colorscheme applied
|
||||
createRenderer();
|
||||
applyColors = renderer->elementExists("hint-apply-color-scheme");
|
||||
if (applyColors && !Theme::self()->colors()) {
|
||||
if (applyColors && !Theme::self()->colorScheme()) {
|
||||
connect(KGlobalSettings::self(), SIGNAL(kdisplayPaletteChanged()), q, SLOT(colorsChanged()));
|
||||
}
|
||||
|
||||
@ -234,7 +234,7 @@ class Svg::Private
|
||||
}
|
||||
|
||||
if (themed && path.isEmpty()) {
|
||||
path = Plasma::Theme::self()->image(themePath);
|
||||
path = Plasma::Theme::self()->imagePath(themePath);
|
||||
}
|
||||
|
||||
QHash<QString, SharedSvgRenderer::Ptr>::const_iterator it = renderers.find(path);
|
||||
@ -296,9 +296,9 @@ class Svg::Private
|
||||
QString path;
|
||||
QList<QString> ids;
|
||||
QSizeF size;
|
||||
Svg::ContentType contentType;
|
||||
bool themed;
|
||||
bool applyColors;
|
||||
Svg::ContentType contentType;
|
||||
};
|
||||
|
||||
QHash<QString, SharedSvgRenderer::Ptr> Svg::Private::renderers;
|
||||
@ -438,7 +438,7 @@ void Svg::themeChanged()
|
||||
return;
|
||||
}
|
||||
|
||||
QString newPath = Theme::self()->image(d->themePath);
|
||||
QString newPath = Theme::self()->imagePath(d->themePath);
|
||||
|
||||
if (d->path == newPath) {
|
||||
return;
|
||||
|
12
theme.cpp
12
theme.cpp
@ -231,7 +231,7 @@ QString Theme::Private::findInTheme(const QString &image, const QString &theme)
|
||||
return search;
|
||||
}
|
||||
|
||||
QString Theme::image(const QString& name) const
|
||||
QString Theme::imagePath(const QString& name) const
|
||||
{
|
||||
QString path = d->findInTheme(name, d->themeName);
|
||||
|
||||
@ -246,21 +246,21 @@ QString Theme::image(const QString& name) const
|
||||
return path;
|
||||
}
|
||||
|
||||
KSharedConfigPtr Theme::colors() const
|
||||
KSharedConfigPtr Theme::colorScheme() const
|
||||
{
|
||||
return d->colors;
|
||||
}
|
||||
|
||||
QColor Theme::textColor() const
|
||||
{
|
||||
KColorScheme colors(QPalette::Active, KColorScheme::Window, Theme::self()->colors());
|
||||
return colors.foreground(KColorScheme::NormalText).color();
|
||||
KColorScheme colorScheme(QPalette::Active, KColorScheme::Window, Theme::self()->colorScheme());
|
||||
return colorScheme.foreground(KColorScheme::NormalText).color();
|
||||
}
|
||||
|
||||
QColor Theme::backgroundColor() const
|
||||
{
|
||||
KColorScheme colors(QPalette::Active, KColorScheme::Window, Theme::self()->colors());
|
||||
return colors.background().color();
|
||||
KColorScheme colorScheme(QPalette::Active, KColorScheme::Window, Theme::self()->colorScheme());
|
||||
return colorScheme.background().color();
|
||||
}
|
||||
|
||||
void Theme::setFont(const QFont &font)
|
||||
|
6
theme.h
6
theme.h
@ -36,7 +36,7 @@ namespace Plasma
|
||||
*
|
||||
* Accessed via Plasma::Theme::self() e.g:
|
||||
* \code
|
||||
* QString image = Plasma::Theme::self()->image("widgets/clock")
|
||||
* QString imagePath = Plasma::Theme::self()->imagePath("widgets/clock")
|
||||
* \endcode
|
||||
*
|
||||
* Plasma::Theme provides access to a common and standardized set of graphic
|
||||
@ -95,14 +95,14 @@ class PLASMA_EXPORT Theme : public QObject
|
||||
* ".svg" part or a leading slash)
|
||||
* @return the full path to the requested file for the current theme
|
||||
*/
|
||||
Q_INVOKABLE QString image( const QString& name ) const;
|
||||
Q_INVOKABLE QString imagePath( const QString& name ) const;
|
||||
|
||||
/**
|
||||
* Returns the color scheme configurationthat goes along this theme.
|
||||
* This can be used with KStatefulBrush and KColorScheme to determine
|
||||
* the proper colours to use along with the visual elements in this theme.
|
||||
*/
|
||||
Q_INVOKABLE KSharedConfigPtr colors() const;
|
||||
Q_INVOKABLE KSharedConfigPtr colorScheme() const;
|
||||
|
||||
/**
|
||||
* Returns the text color to be used by items resting on the background
|
||||
|
Loading…
Reference in New Issue
Block a user