cmmanager/cmapplsettingsui/src/cmapplsettingsui.cpp
branchRCL_3
changeset 58 83ca720e2b9a
parent 57 05bc53fe583b
child 62 bb1f80fb7db2
equal deleted inserted replaced
57:05bc53fe583b 58:83ca720e2b9a
     1 /*
       
     2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0""
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 * CM Manager Application Settings UI implementation.  
       
    16 *
       
    17 */
       
    18 
       
    19 // System includes
       
    20 
       
    21 // User includes
       
    22 
       
    23 #include "cmapplsettingsui_p.h"
       
    24 
       
    25 // External function prototypes
       
    26 
       
    27 // Local constants
       
    28 
       
    29 // ======== LOCAL FUNCTIONS ========
       
    30 
       
    31 // ======== MEMBER FUNCTIONS ========
       
    32 
       
    33 CmApplSettingsUi::CmApplSettingsUi(QObject *parent) :
       
    34     QObject(parent),
       
    35     d_ptr(new CmApplSettingsUiPrivate(this))
       
    36 {
       
    37 }
       
    38 
       
    39 CmApplSettingsUi::~CmApplSettingsUi()
       
    40 {
       
    41 }
       
    42 
       
    43 void CmApplSettingsUi::setOptions(
       
    44     const QFlags<SelectionDialogItems> &listItems,
       
    45     const QSet<BearerTypeFilter> &bearerFilter)
       
    46 {
       
    47     d_ptr->setOptions(listItems, bearerFilter);
       
    48 }
       
    49 
       
    50 void CmApplSettingsUi::setSelection(const SettingSelection &selection)
       
    51 {
       
    52     d_ptr->setSelection(selection);
       
    53 }
       
    54 
       
    55 CmApplSettingsUi::SettingSelection CmApplSettingsUi::selection() const
       
    56 {
       
    57     return d_ptr->selection();
       
    58 }
       
    59 
       
    60 void CmApplSettingsUi::open()
       
    61 {
       
    62     d_ptr->open();
       
    63 }