aboutsummaryrefslogtreecommitdiff
path: root/tests/ft_theme/testthemedaemon.cpp
blob: a790e87a443dbae4831e008cef91fe8397cfb93b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/***************************************************************************
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (directui@nokia.com)
**
** This file is part of libdui.
**
** If you have questions regarding the use of this file, please contact
** Nokia at directui@nokia.com.
**
** This library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation
** and appearing in the file LICENSE.LGPL included in the packaging
** of this file.
**
****************************************************************************/

#include <QStringList>
#include <QPixmap>
#include <QDir>
#include "testthemedaemon.h"
#include <QDebug>

TestThemeDaemon::TestThemeDaemon()
{
    current = "";
}

void TestThemeDaemon::addDirectoryToPixmapSearchList(const QString &directoryName, Dui::RecursionMode recursive)
{
    Q_UNUSED(directoryName);
    Q_UNUSED(recursive);
}

void TestThemeDaemon::clearPixmapSearchList()
{
}

void TestThemeDaemon::pixmapHandleSync(const QString &imageId, const QSize &size)
{
    QString identifier = imageId + ',' + QString::number(size.width()) + ',' + QString::number(size.height());
    // store
    int pixmapWidth = size.width() < 0 ? 128 : size.width();
    int pixmapHeight = size.height() < 0 ? 128 : size.height();

    QPixmap *pixmap = new QPixmap(pixmapWidth, pixmapHeight);
    pixmaps.insert(identifier, pixmap);

    // emit signal
    emit pixmapCreated(imageId, size, pixmap->handle());
}

void TestThemeDaemon::pixmapHandle(const QString &imageId, const QSize &size)
{
    // use sync loading always
    pixmapHandleSync(imageId, size);
}

void TestThemeDaemon::releasePixmap(const QString &imageId, const QSize &size)
{
    QString identifier = imageId + ',' + QString::number(size.width()) + ',' + QString::number(size.height());

    // find from list
    QPixmap *pixmap = pixmaps.value(identifier, NULL);
    if (pixmap) {
        // remove & delete
        pixmaps.remove(identifier);
        delete pixmap;
    }
}

QString TestThemeDaemon::currentTheme()
{
    return current;
}

QStringList TestThemeDaemon::findAvailableThemes()
{
    QStringList list;
    list << "theme 1";
    list << "theme 2";
    return list;
}

void TestThemeDaemon::changeTheme(const QString &theme_id)
{
    if (theme_id == "theme 1") {
        current = theme_id;
    } else if (theme_id == "theme 2") {
        current = theme_id;
    }
}

void TestThemeDaemon::emitThemeChange()
{
    emit themeChanged(themeInheritanceChain(), QStringList());
}

QStringList TestThemeDaemon::themeInheritanceChain()
{
    QString themeDirectory = QDir::tempPath() + QDir::separator() + QString("Ft_Theme") + QDir::separator();

    QStringList themeInheritance;
    if (current == "theme 2") {
        themeInheritance << themeDirectory + "theme2" + QDir::separator();
    }
    themeInheritance << themeDirectory + "theme1" + QDir::separator();
    return themeInheritance;
}

QStringList TestThemeDaemon::themeLibraryNames()
{
    return QStringList();
}

bool TestThemeDaemon::hasPendingRequests() const
{
    return false;
}

int TestThemeDaemon::pixmapCount() const
{
    return pixmaps.count();
}

void TestThemeDaemon::reset()
{
    pixmaps.clear();
}