qtmobility/src/publishsubscribe/xqsettingsmanager_symbian/xqcentralrepositorysearchcriteria.cpp
changeset 1 2b40d63a9c3d
child 11 06b8e2af4411
equal deleted inserted replaced
0:cfcbf08528c4 1:2b40d63a9c3d
       
     1 /****************************************************************************
       
     2 **
       
     3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     4 ** All rights reserved.
       
     5 ** Contact: Nokia Corporation (qt-info@nokia.com)
       
     6 **
       
     7 ** This file is part of the Qt Mobility Components.
       
     8 **
       
     9 ** $QT_BEGIN_LICENSE:LGPL$
       
    10 ** No Commercial Usage
       
    11 ** This file contains pre-release code and may not be distributed.
       
    12 ** You may use this file in accordance with the terms and conditions
       
    13 ** contained in the Technology Preview License Agreement accompanying
       
    14 ** this package.
       
    15 **
       
    16 ** GNU Lesser General Public License Usage
       
    17 ** Alternatively, this file may be used under the terms of the GNU Lesser
       
    18 ** General Public License version 2.1 as published by the Free Software
       
    19 ** Foundation and appearing in the file LICENSE.LGPL included in the
       
    20 ** packaging of this file.  Please review the following information to
       
    21 ** ensure the GNU Lesser General Public License version 2.1 requirements
       
    22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
       
    23 **
       
    24 ** In addition, as a special exception, Nokia gives you certain additional
       
    25 ** rights.  These rights are described in the Nokia Qt LGPL Exception
       
    26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
       
    27 **
       
    28 ** If you have questions regarding the use of this file, please contact
       
    29 ** Nokia at qt-info@nokia.com.
       
    30 **
       
    31 **
       
    32 **
       
    33 **
       
    34 **
       
    35 **
       
    36 **
       
    37 **
       
    38 ** $QT_END_LICENSE$
       
    39 **
       
    40 ****************************************************************************/
       
    41 
       
    42 #include "xqcentralrepositorysearchcriteria.h"
       
    43 
       
    44 /*!
       
    45     \class XQCentralRepositorySearchCriteria
       
    46     \internal
       
    47 
       
    48     \brief The XQCentralRepositorySearchCriteria defines search criteria
       
    49     used in XQCentralRepositoryUtils::findKeys().
       
    50 */
       
    51 
       
    52 
       
    53 /* 
       
    54     Constructs an XQCentralRepositorySearchCriteria object.
       
    55     \param repositoryUid Central repository where the key is searched
       
    56     \param partialKey Partial Central repository key
       
    57     \param bitMask Bit mask for partialKey
       
    58 */
       
    59 XQCentralRepositorySearchCriteria::XQCentralRepositorySearchCriteria(long int repositoryUid,
       
    60     unsigned long int partialKey, unsigned long int bitMask)
       
    61     : m_repositoryUid(repositoryUid), m_partialKey(partialKey), m_bitMask(bitMask),
       
    62     m_negativeCriteria(false)
       
    63 {
       
    64 }
       
    65 
       
    66 /* 
       
    67     Destructs an XQCentralRepositorySearchCriteria object.
       
    68 */
       
    69 XQCentralRepositorySearchCriteria::~XQCentralRepositorySearchCriteria()
       
    70 {
       
    71 }
       
    72 
       
    73 /* 
       
    74     Sets the value criteria. If this function is not called or value is NULL object
       
    75     every key in the repository is returned in XQCentralRepositoryUtils::findKeys().
       
    76     \param value Value to be searched. The type is determined with
       
    77     QVariant.type() and it must be either QVariant::Int, QVariant::Double,
       
    78     QVariant::String or QVariant::ByteArray.
       
    79     \param negativeCriteria If true the keys of which values don't match will be returned in
       
    80     XQCentralRepositoryUtils::findKeys()
       
    81 */
       
    82 void XQCentralRepositorySearchCriteria::setValueCriteria(const QVariant& value, bool negativeCriteria)
       
    83 {
       
    84     m_value = value;
       
    85     m_negativeCriteria = negativeCriteria;
       
    86 }
       
    87 
       
    88 /* 
       
    89     \return Repository UID
       
    90 */
       
    91 long int XQCentralRepositorySearchCriteria::repositoryUid() const
       
    92 {
       
    93     return m_repositoryUid;
       
    94 }
       
    95 
       
    96 /* 
       
    97     \return Partial key
       
    98 */
       
    99 unsigned long int XQCentralRepositorySearchCriteria::partialKey() const
       
   100 {
       
   101     return m_partialKey;
       
   102 }
       
   103 
       
   104 /* 
       
   105     \return Bit mask for the partial key
       
   106 */
       
   107 unsigned long int XQCentralRepositorySearchCriteria::bitMask() const
       
   108 {
       
   109     return m_bitMask;
       
   110 }
       
   111 
       
   112 /* 
       
   113     \return Value criteria
       
   114 */
       
   115 const QVariant& XQCentralRepositorySearchCriteria::value() const
       
   116 {
       
   117     return m_value;
       
   118 }
       
   119 
       
   120 /* 
       
   121     \return True if value criteria is negative
       
   122 */
       
   123 bool XQCentralRepositorySearchCriteria::negativeCriteria() const
       
   124 {
       
   125     return m_negativeCriteria;
       
   126 }