phoneuis/bubblemanager2/bubblestyle/src/bubblestyleplugin.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 16 Apr 2010 14:58:25 +0300
changeset 22 6bb1b21d2484
parent 21 92ab7f8d0eab
permissions -rw-r--r--
Revision: 201011 Kit: 201015

/*!
* Copyright (c) 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:  Bubble style plugin.
*
*/

#ifndef BUBBLESTYLEPLUGIN_H
#define BUBBLESTYLEPLUGIN_H

#include <QtPlugin>

#include <hbstyleinterface.h>
#include <hbglobal.h>

class HbFontSpec;
class HbTextItem;
class HbIconItem;
class BubbleStyleOption;
class BubbleAnimIconItem;

class BubbleStylePlugin: public QObject, public HbStyleInterface
{
    Q_OBJECT
    Q_INTERFACES(HbStyleInterface)

public:
    BubbleStylePlugin();
    virtual ~BubbleStylePlugin();

protected:
    int primitiveCount() const;
    QGraphicsItem *createPrimitive( HbStyle::Primitive primitive, QGraphicsItem *parent = 0 ) const;
    void updatePrimitive( QGraphicsItem *item, HbStyle::Primitive primitive, const QStyleOption *option ) const;
    QString layoutPath() const;

private:
    void setCallStatusIcons(BubbleAnimIconItem* anim, const BubbleStyleOption *opt) const;
    void setText(HbTextItem* item, const QString& text, Qt::TextElideMode clip) const;
    void setFont(HbTextItem* item, int primitive, const BubbleStyleOption *option) const;
    void setIconColor(HbIconItem* icon) const;
    
private:
    HbFontSpec* mCliFont;
    HbFontSpec* mTextFont;
    HbFontSpec* mTimerFont;
};

#endif // BUBBLESTYLEPLUGIN_H