bluetoothengine/btui/btcpplugin/btcpuisearchlistviewitem.cpp
branchRCL_3
changeset 56 9386f31cc85b
parent 55 613943a21004
child 61 269724087bed
--- a/bluetoothengine/btui/btcpplugin/btcpuisearchlistviewitem.cpp	Tue Aug 31 15:25:10 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,115 +0,0 @@
-/*
-* Copyright (c) 2010 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:  BTUISearchListViewItem implementation
-*
-*/
-
-
-#include "btcpuisearchlistviewitem.h"
-#include "btdevicemodel.h"
-#include "btuiiconutil.h"
-#include <QGraphicsGridLayout>
-
-BtCpUiSearchListViewItem::BtCpUiSearchListViewItem(QGraphicsItem * parent) :
-    HbListViewItem(parent), mParent(parent)
-{
-    mDeviceNameLabel = 0;
-    mDevTypeIconLabel = 0;
-    mDevTypeTextLabel = 0;
-    mBtuiModelSortFilter = ((BtCpUiSearchListViewItem *)parent)->mBtuiModelSortFilter;
-    
-    mRow = 0;   
-}
-
-BtCpUiSearchListViewItem::~BtCpUiSearchListViewItem()
-{
-//    delete mDeviceNameLabel;
-//    delete mDevTypeIconLabel;
-//    delete mDevTypeTextLabel;
-}
-
-/*
- * This method is called by the HbListView when it needs a new
- * view item element.
- *
- */
-HbAbstractViewItem * BtCpUiSearchListViewItem::createItem()
-{
-    return new BtCpUiSearchListViewItem(*this); 
-}
-
-/*!
-   UpdateChildItem updates the item graphics.
-   Screen elements are created once if not already done.  This may increase the overall memory 
-   consumption of the application, however, this is deemed inconsequential.  There might be a small 
-   performance improvement with current style.
- */
-void BtCpUiSearchListViewItem::updateChildItems()
-{
-    QModelIndex index;
-    
-    // Get device name from model
-    if (mBtuiModelSortFilter)
-        index = mBtuiModelSortFilter->mapToSource(modelIndex());
-    else
-        index = modelIndex();
-
-
-    // create new icon label if needed
-    if (!mDevTypeIconLabel) {
-        mDevTypeIconLabel = new HbLabel();
-        mDevTypeIconLabel->setPreferredSize(53.5260, 53.5260); //8un x 8un
-        mDevTypeIconLabel->setMinimumWidth(53.5260);
-    }
-    // create new label if needed
-    if (!mDeviceNameLabel) {
-        mDeviceNameLabel = new HbLabel();
-        mDeviceNameLabel->setPreferredSize(250, 26.763);
-    }
-    // create new label if needed
-    if (!mDevTypeTextLabel) {
-        mDevTypeTextLabel = new HbLabel();
-        mDevTypeTextLabel->setPreferredSize(250, 26.763);
-    }
-    // create layout if needed
-    if ( !mRow ) {
-        // Still need to create the actual layout
-        mRow = new QGraphicsGridLayout();
-        mRow->addItem(mDevTypeIconLabel,0,0,2,1);
-        mRow->addItem(mDeviceNameLabel,0,1,1,1);
-        mRow->addItem(mDevTypeTextLabel,1,1,1,1);
-        setLayout(mRow);
-    }
-        
-    QString data = index.data(Qt::DisplayRole).toString();
-    int cod = (index.data(BtDeviceModel::CoDRole)).toInt();
-    int majorProperty = (index.data(BtDeviceModel::MajorPropertyRole)).toInt();
-    
-    // ToDo:  remove clear() once Orbit bug is fixed
-    mDeviceNameLabel->clear();
-    mDeviceNameLabel->setPlainText(data);
-    mDevTypeIconLabel->clear();
-    mDevTypeTextLabel->clear();
-    mDevTypeTextLabel->setPlainText( getDeviceTypeString( cod ));
-    HbIcon icon = 
-    getBadgedDeviceTypeIcon(cod, majorProperty,
-            BtuiBottomLeft | BtuiBottomRight | BtuiTopLeft | BtuiTopRight );
-    mDevTypeIconLabel->setIcon(icon);
-}
-
-
-void BtCpUiSearchListViewItem::setModelSortFilter(BtuiModelSortFilter *filter)
-{
-    mBtuiModelSortFilter = filter;
-}