equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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: This file contains time query definition for the application. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include <startup.loc> |
|
20 |
|
21 RESOURCE DIALOG r_startup_time_setting_query |
|
22 { |
|
23 flags = EGeneralQueryFlags | EEikDialogFlagVirtualInput; |
|
24 buttons = R_AVKON_SOFTKEYS_OK_BACK__OK; |
|
25 items = |
|
26 { |
|
27 DLG_LINE |
|
28 { |
|
29 type = EAknCtQuery; |
|
30 id = EGeneralQuery; |
|
31 control = AVKON_DATA_QUERY |
|
32 { |
|
33 layout = ETimeLayout; |
|
34 label = qtn_su_enter_time; |
|
35 control = TIME_EDITOR |
|
36 { |
|
37 minTime = TIME {second=0;minute=0;hour=0;}; |
|
38 maxTime = TIME {second=59;minute=59;hour=23;}; |
|
39 flags = EEikTimeWithoutSecondsField; |
|
40 }; |
|
41 }; |
|
42 } |
|
43 }; |
|
44 |
|
45 } |