|
45
|
1 |
/*
|
|
|
2 |
* Copyright (c) 2008 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: Resource definitions for project testsdkslider
|
|
|
15 |
*
|
|
|
16 |
*/
|
|
|
17 |
|
|
|
18 |
|
|
|
19 |
NAME TEST
|
|
|
20 |
|
|
|
21 |
#include <avkon.rsg>
|
|
|
22 |
#include <avkon.rh>
|
|
|
23 |
#include <eikon.rh>
|
|
|
24 |
|
|
|
25 |
#include <eikon.rsg>
|
|
|
26 |
#include <avkon.hrh>
|
|
|
27 |
#include <avkon.mbg>
|
|
|
28 |
|
|
|
29 |
#define AKNATSLIDER_MINIMUM_VALUE 0
|
|
|
30 |
#define AKNATSLIDER_MAXIMUM_VALUE 100
|
|
|
31 |
#define AKNATSLIDER_STEP_SIZE 2
|
|
|
32 |
|
|
|
33 |
|
|
|
34 |
|
|
|
35 |
RESOURCE RSS_SIGNATURE
|
|
|
36 |
{
|
|
|
37 |
}
|
|
|
38 |
RESOURCE TBUF
|
|
|
39 |
{
|
|
|
40 |
buf = "";
|
|
|
41 |
}
|
|
|
42 |
|
|
|
43 |
// ---------------------------------------------------------------------------
|
|
|
44 |
// r_testslider_slider
|
|
|
45 |
// ---------------------------------------------------------------------------
|
|
|
46 |
//
|
|
|
47 |
RESOURCE SLIDER r_testslider_slider
|
|
|
48 |
{
|
|
|
49 |
layout = EAknFormSliderLayout1;
|
|
|
50 |
minvalue = AKNATSLIDER_MINIMUM_VALUE;
|
|
|
51 |
maxvalue = AKNATSLIDER_MAXIMUM_VALUE;
|
|
|
52 |
step = AKNATSLIDER_STEP_SIZE;
|
|
|
53 |
valuetype=EAknSliderValueBareFigure;
|
|
|
54 |
decimalplaces=0;
|
|
|
55 |
singular_valuelabel = "";
|
|
|
56 |
minlabel="";
|
|
|
57 |
maxlabel="";
|
|
|
58 |
valuelabel="";
|
|
|
59 |
graphical_image=0;
|
|
|
60 |
}
|
|
|
61 |
|