src/messaging/qmessageservice_stub.cpp
changeset 0 876b1a06bc25
equal deleted inserted replaced
-1:000000000000 0:876b1a06bc25
       
     1 /****************************************************************************
       
     2 **
       
     3 ** Copyright (C) 2010 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 #include "qmessageservice.h"
       
    42 
       
    43 
       
    44 QTM_BEGIN_NAMESPACE
       
    45 
       
    46 QMessageService::QMessageService(QObject *parent)
       
    47     : QObject(parent)
       
    48 {
       
    49 }
       
    50 
       
    51 QMessageService::~QMessageService()
       
    52 {
       
    53 }
       
    54 
       
    55 bool QMessageService::queryMessages(const QMessageFilter &filter, const QMessageSortOrder &sortOrder, uint limit, uint offset)
       
    56 {
       
    57     Q_UNUSED(filter);
       
    58     Q_UNUSED(sortOrder);
       
    59     Q_UNUSED(limit);
       
    60     Q_UNUSED(offset);
       
    61     return false; // stub
       
    62 }
       
    63 
       
    64 bool QMessageService::queryMessages(const QMessageFilter &filter, const QString &body, QMessageDataComparator::MatchFlags matchFlags, const QMessageSortOrder &sortOrder, uint limit, uint offset)
       
    65 {
       
    66     Q_UNUSED(filter);
       
    67     Q_UNUSED(body);
       
    68     Q_UNUSED(matchFlags);
       
    69     Q_UNUSED(sortOrder);
       
    70     Q_UNUSED(limit);
       
    71     Q_UNUSED(offset);
       
    72     return false; // stub
       
    73 }
       
    74 
       
    75 bool QMessageService::countMessages(const QMessageFilter &filter)
       
    76 {
       
    77     // TODO: Implement this
       
    78     Q_UNUSED(filter);
       
    79     return false;
       
    80 }
       
    81 
       
    82 bool QMessageService::send(QMessage &message)
       
    83 {
       
    84     Q_UNUSED(message)
       
    85     return false; // stub
       
    86 }
       
    87 
       
    88 bool QMessageService::compose(const QMessage &message)
       
    89 {
       
    90     Q_UNUSED(message)
       
    91     return false; // stub
       
    92 }
       
    93 
       
    94 bool QMessageService::retrieveHeader(const QMessageId& id)
       
    95 {
       
    96     Q_UNUSED(id)
       
    97     return false; // stub
       
    98 }
       
    99 
       
   100 bool QMessageService::retrieveBody(const QMessageId& id)
       
   101 {
       
   102     Q_UNUSED(id)
       
   103     return false; // stub
       
   104 }
       
   105 
       
   106 bool QMessageService::retrieve(const QMessageId &messageId, const QMessageContentContainerId& id)
       
   107 {
       
   108     Q_UNUSED(messageId)
       
   109     Q_UNUSED(id)
       
   110     return false; // stub
       
   111 }
       
   112 
       
   113 bool QMessageService::show(const QMessageId& id)
       
   114 {
       
   115     Q_UNUSED(id)
       
   116     return false; // stub
       
   117 }
       
   118 
       
   119 bool QMessageService::exportUpdates(const QMessageAccountId &id)
       
   120 {
       
   121     Q_UNUSED(id)
       
   122     return false; // stub
       
   123 }
       
   124 
       
   125 QMessageService::State QMessageService::state() const
       
   126 {
       
   127     return InactiveState; // stub
       
   128 }
       
   129 
       
   130 void QMessageService::cancel()
       
   131 {
       
   132 }
       
   133 
       
   134 QMessageManager::Error QMessageService::error() const
       
   135 {
       
   136     return QMessageManager::NoError;
       
   137 }
       
   138 
       
   139 QTM_END_NAMESPACE