phoneuis/bubblemanager2/bubblecore/src/bubblebutton.cpp
author Pat Downey <patd@symbian.org>
Fri, 04 Jun 2010 10:19:18 +0100
changeset 37 ba76fc04e6c2
parent 30 ebdbd102c78a
child 45 6b911d05207e
permissions -rw-r--r--
Revert last code drop.

/*!
* 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: Custom button
*
*/

#include <hbevent.h>
#include <hbframeitem.h>

#include "bubblebutton.h"

BubbleButton::BubbleButton(QGraphicsItem *parent)
    : HbPushButton(parent), mButtonType(DefaultButton)
{
}

BubbleButton::~BubbleButton()
{
}

BubbleButton::BubbleButtonType BubbleButton::buttonType() const
{
    return mButtonType;
}

void BubbleButton::setButtonType(BubbleButtonType type)
{
    mButtonType = type;
}

bool BubbleButton::sceneEvent(QEvent *event)
{
    bool result = HbPushButton::sceneEvent(event);

    if (event->type() == QEvent::UngrabMouse) {
        if (isDown()) {
            // this is needed in situation, where
            // longpress launches a dialog (vmbx)
            // and button release event goes to
            // dialog (HbPopup grabs mouse).
            setDown(false);
            emit clicked();
            emit released();
        }
    }

    return result;
}

void BubbleButton::updatePrimitives()
{
    HbPushButton::updatePrimitives();

    HbFrameItem* frame =
        qgraphicsitem_cast<HbFrameItem*>(HbWidget::primitive("background"));

    if (!frame) {
        return;
    }

    QString graphicsName;

    if (isDown()) {
        if (buttonType()==GreenButton) {
            graphicsName = "qtg_fr_btn_green_pressed";
        } else if (buttonType()==RedButton) {
            graphicsName = "qtg_fr_btn_red_pressed";
        }
    } else {
        if (buttonType()==GreenButton) {
            graphicsName = "qtg_fr_btn_green_normal";
        } else if (buttonType()==RedButton) {
            graphicsName = "qtg_fr_btn_red_normal";
        }
    }

    if (graphicsName.length()) {
        frame->frameDrawer().setFrameGraphicsName(graphicsName);
    }
}