bluetoothengine/btui/inc/btdelegateconsts.h
changeset 57 5ebadcda06cb
equal deleted inserted replaced
51:625f43ae9362 57:5ebadcda06cb
       
     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 *
       
    16 */
       
    17 
       
    18 #ifndef BTDELEGATECONSTS_H
       
    19 #define BTDELEGATECONSTS_H
       
    20 
       
    21 #include <QObject>
       
    22 
       
    23 namespace BtDelegate
       
    24     {
       
    25     enum EditorType
       
    26         {
       
    27         InvalidEditor =            0x000000, // invalid editor type
       
    28         ManagePower =              0x000001,
       
    29         ChangeLocalName =          0x000002,
       
    30         ChangeVisibility =         0x000004,
       
    31         Inquiry =                  0x000008,
       
    32         ConnectService =           0x000010,
       
    33         DisconnectService =        0x000020,
       
    34         DisconnectAllConnections = 0x000040,
       
    35         PairDevice =               0x000080,
       
    36         UnpairDevice =             0x000100,
       
    37         BlockDevice =              0x000200,
       
    38         UnblockDevice =            0x000400,
       
    39         TrustDevice =              0x000800,
       
    40         UntrustDevice =            0x001000,
       
    41         ChangeDeviceFriendlyName = 0x002000,
       
    42         RemoveAllRegistryDevices = 0x004000,
       
    43         RemovePairedDevices =      0x008000,
       
    44         RemoveBlockedDevices =     0x010000,
       
    45         };
       
    46     }
       
    47 
       
    48 #endif // BTDELEGATECONSTS_H