userguide/inc/HelpUtils.h
changeset 13 1eb8015a8491
child 15 c0dfc135a46c
equal deleted inserted replaced
12:2cd891dccbbe 13:1eb8015a8491
       
     1 /*
       
     2 * Copyright (c) 2009 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 HELPUTILS_H
       
    19 #define HELPUTILS_H
       
    20 
       
    21 #include <QString>
       
    22 
       
    23 class HelpUtils
       
    24 {
       
    25 public:
       
    26 	static void loadHtmlFromZipFile(const QString& path, const QString& htmlFile, QString& htmlContent);
       
    27 	static int launchApplication(const QString& appUid);
       
    28 	static QString rootPath();
       
    29 	static QString UILocaleFromQtToSymbian();
       
    30 	static Qt::Orientation defaultOrientation();
       
    31 	static Qt::SortOrder sortOrder();
       
    32 };
       
    33 
       
    34 #endif //HELPUTILS_H