appinstall_plat/sw_installer_cr_keys/tsrc/swinstsettingschanger/swinstsettingschanger.h
branchRCL_3
changeset 25 7333d7932ef7
equal deleted inserted replaced
24:5cc91383ab1e 25:7333d7932ef7
       
     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:  SW installation settings changer application.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef SWINSTSETTINGSCHANGER_H
       
    19 #define SWINSTSETTINGSCHANGER_H
       
    20 
       
    21 #include <hbapplication.h>
       
    22 
       
    23 class HbMainWindow;
       
    24 class HbView;
       
    25 class HbComboBox;
       
    26 class HbTextEdit;
       
    27 class HbCheckBox;
       
    28 
       
    29 
       
    30 class SwInstSettingsChanger : public HbApplication
       
    31 {
       
    32     Q_OBJECT
       
    33 
       
    34 public:     // constructor and destructor
       
    35     SwInstSettingsChanger(int& argc, char* argv[]);
       
    36     ~SwInstSettingsChanger();
       
    37 
       
    38 private slots:  // new functions
       
    39     void handleRead();
       
    40     void handleSave();
       
    41 
       
    42 private:    // new functions
       
    43     void DoHandleReadL();
       
    44     void DoHandleSaveL();
       
    45 
       
    46 private:    // data
       
    47     HbMainWindow *mMainWindow;
       
    48     HbView       *mMainView;
       
    49     HbComboBox   *mOcspProcedure;
       
    50     HbTextEdit   *mDefaultUrl;
       
    51     HbCheckBox   *mAllowUntrusted;
       
    52 };
       
    53 
       
    54 #endif  // SWINSTSETTINGSCHANGER_H
       
    55