controlpanelplugins/themeplugin/src/cpthemechanger.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 16 Apr 2010 14:59:22 +0300
changeset 11 10d0dd0e43f1
child 12 624337f114fe
permissions -rw-r--r--
Revision: 201011 Kit: 201015

/*
* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  HbThemeChanger class definition
*
*/


#ifndef CPTHEMECHANGER_H
#define CPTHEMECHANGER_H

#include <QStringList>
#include <hbicon.h>
#include <hbglobal.h>

class CpThemeChangerPrivate;

QT_BEGIN_NAMESPACE
class QAbstractItemModel;
QT_END_NAMESPACE

class CpThemeChanger : public QObject
{
    Q_OBJECT

public:
     explicit CpThemeChanger(QObject* parent=0);
    ~CpThemeChanger();

    struct ThemeInfo 
    {
        QString name;
        HbIcon  icon;
        bool operator < (const struct ThemeInfo &other) const   {			
            return name.localeAwareCompare(other.name) < 0;
        }		
    };

    const QList<ThemeInfo> themes() const;
    QAbstractItemModel& model();

    const ThemeInfo& currentTheme() const;

    bool changeTheme(const QString& newtheme);
	
	bool connectToServer();
	bool isConnected() const;

private:
    CpThemeChangerPrivate* d_ptr;
    Q_DECLARE_PRIVATE(CpThemeChanger)
    Q_PRIVATE_SLOT(d_func(), void _q_themeDirectoryChanged(const QString&))
};

#endif /* CPTHEMECHANGER_H */