33
|
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:
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
#include <hbaction.h>
|
|
19 |
#include <hbdialog.h>
|
|
20 |
|
|
21 |
#include "devicemanagementnotifierwidget_p.h"
|
|
22 |
|
|
23 |
|
|
24 |
// Constructor
|
|
25 |
devicemanagementnotifierwidget::devicemanagementnotifierwidget(const QVariantMap ¶meters):devicemanagementnotifierutils(parameters)
|
|
26 |
{
|
|
27 |
|
|
28 |
}
|
|
29 |
|
|
30 |
// Set parameters
|
|
31 |
bool devicemanagementnotifierwidget::setDeviceDialogParameters(
|
|
32 |
const QVariantMap ¶meters)
|
|
33 |
{
|
|
34 |
|
|
35 |
return true;
|
|
36 |
}
|
|
37 |
|
|
38 |
// Get error
|
|
39 |
int devicemanagementnotifierwidget::deviceDialogError() const
|
|
40 |
{
|
|
41 |
|
|
42 |
return 0;
|
|
43 |
}
|
|
44 |
|
|
45 |
// Close device dialog
|
|
46 |
void devicemanagementnotifierwidget::closeDeviceDialog(bool byClient)
|
|
47 |
{
|
|
48 |
close();
|
|
49 |
emit deviceDialogClosed();
|
|
50 |
}
|
|
51 |
|
|
52 |
// Return display widget
|
|
53 |
HbDialog *devicemanagementnotifierwidget::deviceDialogWidget() const
|
|
54 |
{
|
|
55 |
|
|
56 |
return const_cast<devicemanagementnotifierwidget*>(this);
|
|
57 |
}
|