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 date query definition for the application. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include <startup.loc> |
|
20 |
|
21 RESOURCE DIALOG r_startup_date_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 = EDateLayout; |
|
34 label = qtn_su_enter_date; |
|
35 control = DATE_EDITOR |
|
36 { |
|
37 minDate = DATE {day=0; month=0; year=1980;}; |
|
38 maxDate = DATE {day=30; month=11; year=2060;}; |
|
39 }; |
|
40 }; |
|
41 } |
|
42 }; |
|
43 } |
|
44 |
|
45 RESOURCE DIALOG r_startup_date_setting_query_noback |
|
46 { |
|
47 flags = EGeneralQueryFlags | EEikDialogFlagVirtualInput; |
|
48 buttons = R_AVKON_SOFTKEYS_OK_EMPTY__OK; |
|
49 items = |
|
50 { |
|
51 DLG_LINE |
|
52 { |
|
53 type = EAknCtQuery; |
|
54 id = EGeneralQuery; |
|
55 control = AVKON_DATA_QUERY |
|
56 { |
|
57 layout = EDateLayout; |
|
58 label = qtn_su_enter_date; |
|
59 control = DATE_EDITOR |
|
60 { |
|
61 minDate = DATE {day=0; month=0; year=1980;}; |
|
62 maxDate = DATE {day=30; month=11; year=2060;}; |
|
63 }; |
|
64 }; |
|
65 } |
|
66 }; |
|
67 } |