pkiutilities/securitydialognotifier/tsrc/srvauthfaildlglauncher/srvauthfaildlglauncher.h
equal
deleted
inserted
replaced
|
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: Test application for untrusted certificate dialog. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef SRVAUTHFAILDLGLAUNCHER_H |
|
19 #define SRVAUTHFAILDLGLAUNCHER_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 SrvAuthFailDlgLauncher : public HbApplication |
|
31 { |
|
32 Q_OBJECT |
|
33 |
|
34 public: // constructor and destructor |
|
35 SrvAuthFailDlgLauncher(int& argc, char* argv[]); |
|
36 ~SrvAuthFailDlgLauncher(); |
|
37 |
|
38 private slots: // new functions |
|
39 void activateDialog(); |
|
40 |
|
41 private: // data |
|
42 HbMainWindow *mMainWindow; |
|
43 HbView *mMainView; |
|
44 HbComboBox *mFilesList; |
|
45 HbTextEdit *mHostName; |
|
46 HbComboBox *mValidationResult; |
|
47 HbCheckBox *mCancelShortly; |
|
48 }; |
|
49 |
|
50 #endif // SRVAUTHFAILDLGLAUNCHER_H |
|
51 |