equal
deleted
inserted
replaced
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: Style option for analog clock widget. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef HSANALOGCLOCKSTYLEOPTION_H |
|
19 #define HSANALOGCLOCKSTYLEOPTION_H |
|
20 |
|
21 #include <hbstyleoption.h> |
|
22 |
|
23 const int backgroundItemIndex = 0; |
|
24 const int hourHandItemIndex = 1; |
|
25 const int minuteHandItemIndex = 2; |
|
26 |
|
27 class HsAnalogClockStyleOption : public HbStyleOption |
|
28 { |
|
29 public: |
|
30 HsAnalogClockStyleOption(); |
|
31 HsAnalogClockStyleOption(const HsAnalogClockStyleOption &other); |
|
32 ~HsAnalogClockStyleOption(); |
|
33 |
|
34 enum StyleOptionType { Type = HbSO_Widget+1000}; |
|
35 enum StyleOptionVersion { Version = 1 }; |
|
36 |
|
37 qreal mM; |
|
38 qreal mH; |
|
39 }; |
|
40 |
|
41 #endif // HSANALOGCLOCKSTYLEOPTION_H |
|