browsercore/core/network/SchemeHandlerBrDefault_p.h
changeset 12 afcd8e6d025b
child 16 3c88a81ff781
equal deleted inserted replaced
11:786160610b4d 12:afcd8e6d025b
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 *
       
     5 * This program is free software: you can redistribute it and/or modify
       
     6 * it under the terms of the GNU Lesser General Public License as published by
       
     7 * the Free Software Foundation, version 2.1 of the License.
       
     8 * 
       
     9 * This program is distributed in the hope that it will be useful,
       
    10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
       
    12 * GNU Lesser General Public License for more details.
       
    13 *
       
    14 * You should have received a copy of the GNU Lesser General Public License
       
    15 * along with this program.  If not, 
       
    16 * see "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html/".
       
    17 *
       
    18 * Description:
       
    19 *
       
    20 */
       
    21 
       
    22 #ifndef SCHEME_HANDLER_DEFAULT_P_H
       
    23 #define SCHEME_HANDLER_DEFAULT_P_H
       
    24 
       
    25 // INCLUDES
       
    26 
       
    27 #include <QtCore/QObject>
       
    28 #if defined(Q_OS_SYMBIAN)
       
    29 #include <txtrich.h>                // CRichText
       
    30 #endif
       
    31 
       
    32 #include "SchemeHandlerBr_p.h"
       
    33 
       
    34 
       
    35 // CLASS DECLARATION
       
    36 
       
    37 class QUrl;
       
    38 
       
    39 #if defined(Q_OS_SYMBIAN)
       
    40 class WrtTelService;
       
    41 #endif
       
    42 
       
    43 namespace WRT {
       
    44 
       
    45 /**
       
    46 * Scheme Handler default implementation used if platform isn't using QtHighway.
       
    47 */
       
    48 class DefSchemeHandlerPrivate : public SchemeHandlerPrivate {
       
    49 
       
    50 Q_OBJECT
       
    51 
       
    52 public:
       
    53     DefSchemeHandlerPrivate();
       
    54     ~DefSchemeHandlerPrivate();
       
    55     
       
    56     virtual SchemeHandler::SchemeHandlerError HandleUrl(const QUrl &url, bool confirmDTMF);
       
    57     virtual SchemeHandler::SchemeHandlerError HandleScheme(const QUrl &url);
       
    58 
       
    59 private:
       
    60     SchemeHandler::SchemeHandlerError HandleMailtoScheme(const QUrl &url);
       
    61     SchemeHandler::SchemeHandlerError HandleRtspScheme(const QUrl &url);
       
    62 #if defined(Q_OS_SYMBIAN)
       
    63     SchemeHandler::SchemeHandlerError HandleTelScheme(const QUrl &url);
       
    64     SchemeHandler::SchemeHandlerError HandleSipScheme(const QUrl &url);
       
    65     SchemeHandler::SchemeHandlerError HandleWtaiMcScheme(const QUrl &url);
       
    66 
       
    67     void HandleRtspSchemeL(const QUrl &url);
       
    68     void HandleMailtoSchemeL(const QUrl &url);
       
    69     TPtrC qt_QString2TPtrC( const QString& string );
       
    70     HBufC* qt_QString2HBufC(const QString& string);
       
    71 #endif
       
    72     
       
    73 private:
       
    74 #if defined(Q_OS_SYMBIAN)
       
    75     WrtTelService* m_telService; ///< Owned.
       
    76 #endif
       
    77 };
       
    78 
       
    79 }
       
    80 #endif /* def SCHEME_HANDLER_DEFAULT_P_H */