ScrLockerSetting.c 20.9 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
/*****************************************************************************
*  Copyright Statement:
*  --------------------
*  This software is protected by Copyright and the information contained
*  herein is confidential. The software may not be copied and the information
*  contained herein may not be used or disclosed except with the written
*  permission of MediaTek Inc. (C) 2010
*
*  BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
*  THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
*  RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
*  AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
*  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
*  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
*  NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
*  SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
*  SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
*  THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
*  NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
*  SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
*
*  BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
*  LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
*  AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
*  OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
*  MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
*
*  THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
*  WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
*  LAWS PRINCIPLES.  ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
*  RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
*  THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
*
*****************************************************************************/
/*****************************************************************************
 *
 * Filename:
 * ---------
 *  ScrLockerSetting.c
 *
 * Project:
 * --------
 *  MAUI
 *
 * Description:
 * ------------
 *  This file implements the screen locker setting menu.
 *
 * Author:
 * -------
 * -------
 *
 *============================================================================
 *             HISTORY
 * Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
 *------------------------------------------------------------------------------
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 *------------------------------------------------------------------------------
 * Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
 *============================================================================
 ****************************************************************************/

/****************************************************************************
 * include
 ****************************************************************************/

#include "MMI_features.h"

#if defined(__MMI_AUTO_KEYPAD_LOCK__)

#include "MenuCuiGprot.h"
#include "mmi_rp_app_mainmenu_def.h" /* MAIN_MENU_TITLE_SETTINGS_ICON */

#ifdef __MMI_TELEPHONY_SUPPORT__
#include "mmi_rp_app_security_setting_def.h" /* MENU_ID_SECSET_MAIN_MENU */
#endif

// auto add by kw_check begin
#include "MMIDataType.h"
#include "mmi_rp_app_scr_locker_def.h"
#include "mmi_frm_nvram_gprot.h"
#include "custom_mmi_default_value.h"
#include "kal_general_types.h"
#include "AlertScreen.h"
#include "GlobalResDef.h"
#include "wgui_categories_util.h"
#include "mmi_frm_events_gprot.h"
#include "mmi_frm_scenario_gprot.h"
#include "gpiosrvgprot.h"
#include "ScrLockerGprot.h"
#include "CommonScreensResDef.h"

#include "BootupSrvGprot.h"
// auto add by kw_check end 

/****************************************************************************
 * Setting enum
 ****************************************************************************/

typedef enum
{
    MMI_SLK_SET_SELECTION_OFF = 0,
#if defined(__TOPWELL_MMI_AKL_MODE_2__)
    MMI_SLK_SET_SELECTION_5_SEC,
    MMI_SLK_SET_SELECTION_15_SEC,
    MMI_SLK_SET_SELECTION_30_SEC,
    MMI_SLK_SET_SELECTION_1_MIN,
    MMI_SLK_SET_SELECTION_3_MIN,
    MMI_SLK_SET_SELECTION_5_MIN,
#elif defined(__TOPWELL_MMI_AKL_MODE_3__)
	MMI_SLK_SET_SELECTION_5_SEC,
	MMI_SLK_SET_SELECTION_10_SEC,
    MMI_SLK_SET_SELECTION_15_SEC,
    MMI_SLK_SET_SELECTION_30_SEC,
    MMI_SLK_SET_SELECTION_1_MIN,
    MMI_SLK_SET_SELECTION_3_MIN,
    MMI_SLK_SET_SELECTION_5_MIN,
    
#else
    
    MMI_SLK_SET_SELECTION_15_SEC,
    MMI_SLK_SET_SELECTION_30_SEC,
    MMI_SLK_SET_SELECTION_1_MIN,
    MMI_SLK_SET_SELECTION_5_MIN,
#endif    

    MMI_SLK_SET_SELECTION_END_OF_ENUM
} mmi_slk_set_selection_enum;

#define MMI_SLK_SET_SELECTION_DEFAULT MMI_SLK_SET_SELECTION_OFF


typedef struct
{
    mmi_menu_id menu_id;
    mmi_slk_set_selection_enum stored_value;
    S32 timeout_value;
} mmi_slk_set_mapping_entry_struct;

static const S32 mmi_slk_set_str[] = 
{
    STR_GLOBAL_OFF,
#if defined(__TOPWELL_MMI_AKL_MODE_2__)
    STR_ID_SLK_5_SEC,
    STR_ID_SLK_15_SEC,
    STR_ID_SLK_30_SEC,
    STR_ID_SLK_1_MIN,
    STR_ID_SLK_3_MIN,
    STR_ID_SLK_5_MIN,
#elif defined(__TOPWELL_MMI_AKL_MODE_3__)
	STR_ID_SLK_5_SEC,
	STR_ID_SLK_10_SEC,
    STR_ID_SLK_15_SEC,
    STR_ID_SLK_30_SEC,
    STR_ID_SLK_1_MIN,
    STR_ID_SLK_3_MIN,
    STR_ID_SLK_5_MIN,
    
#else
    STR_ID_SLK_15_SEC,
    STR_ID_SLK_30_SEC,
    STR_ID_SLK_1_MIN,
    STR_ID_SLK_5_MIN,
#endif    
};

static const mmi_slk_set_mapping_entry_struct mmi_slk_set_mapping[] =
{
#if defined(__TOPWELL_MMI_AKL_MODE_2__)
    { MENU_ID_SLK_SETTING_OFF,      MMI_SLK_SET_SELECTION_OFF,      0 },
    { MENU_ID_SLK_SETTING_5_SEC,   MMI_SLK_SET_SELECTION_5_SEC,   5 * 1000 },
    { MENU_ID_SLK_SETTING_15_SEC,   MMI_SLK_SET_SELECTION_15_SEC,   15 * 1000 },
    { MENU_ID_SLK_SETTING_30_SEC,   MMI_SLK_SET_SELECTION_30_SEC,   30 * 1000 },
    { MENU_ID_SLK_SETTING_1_MIN,    MMI_SLK_SET_SELECTION_1_MIN,    60 * 1000 },
    { MENU_ID_SLK_SETTING_3_MIN,    MMI_SLK_SET_SELECTION_3_MIN,    3 * 60 * 1000 },
    { MENU_ID_SLK_SETTING_5_MIN,    MMI_SLK_SET_SELECTION_5_MIN,    5 * 60 * 1000 }
#elif defined(__TOPWELL_MMI_AKL_MODE_3__)
	{ MENU_ID_SLK_SETTING_OFF,      MMI_SLK_SET_SELECTION_OFF,      0 },
    { MENU_ID_SLK_SETTING_5_SEC,   MMI_SLK_SET_SELECTION_5_SEC,   5 * 1000 },
    { MENU_ID_SLK_SETTING_10_SEC,   MMI_SLK_SET_SELECTION_10_SEC,   10 * 1000 },
    { MENU_ID_SLK_SETTING_15_SEC,   MMI_SLK_SET_SELECTION_15_SEC,   15 * 1000 },
    { MENU_ID_SLK_SETTING_30_SEC,   MMI_SLK_SET_SELECTION_30_SEC,   30 * 1000 },
    { MENU_ID_SLK_SETTING_1_MIN,    MMI_SLK_SET_SELECTION_1_MIN,    60 * 1000 },
    { MENU_ID_SLK_SETTING_3_MIN,    MMI_SLK_SET_SELECTION_3_MIN,    3 * 60 * 1000 },
    { MENU_ID_SLK_SETTING_5_MIN,    MMI_SLK_SET_SELECTION_5_MIN,    5 * 60 * 1000 }

#else
    { MENU_ID_SLK_SETTING_OFF,      MMI_SLK_SET_SELECTION_OFF,      0 },
    { MENU_ID_SLK_SETTING_15_SEC,   MMI_SLK_SET_SELECTION_15_SEC,   15 * 1000 },
    { MENU_ID_SLK_SETTING_30_SEC,   MMI_SLK_SET_SELECTION_30_SEC,   30 * 1000 },
    { MENU_ID_SLK_SETTING_1_MIN,    MMI_SLK_SET_SELECTION_1_MIN,    60 * 1000 },
    { MENU_ID_SLK_SETTING_5_MIN,    MMI_SLK_SET_SELECTION_5_MIN,    5 * 60 * 1000 }
#endif
};

static const S32 mmi_slk_set_max_mapping_num =
    sizeof(mmi_slk_set_mapping) / sizeof(mmi_slk_set_mapping[0]);


/****************************************************************************
 * Context
 ****************************************************************************/

typedef struct
{
    mmi_id menu_cui;
} mmi_slk_set_cntx_struct;


static mmi_slk_set_cntx_struct g_mmi_slk_set_cntx =
{
    0
};


/****************************************************************************
 * Functions
 ****************************************************************************/

static mmi_slk_set_selection_enum mmi_slk_set_get_selection(void)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    U8 nvram_data;
    //S16 error;

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    ReadValueSlim(NVRAM_SETTING_AUTOKEYPADLOCK_TIME, &nvram_data, DS_BYTE);
    if (nvram_data >= MMI_SLK_SET_SELECTION_END_OF_ENUM)
    {
        nvram_data = (U8)MMI_SLK_SET_SELECTION_DEFAULT;
        WriteValueSlim(NVRAM_SETTING_AUTOKEYPADLOCK_TIME, &nvram_data, DS_BYTE);
    }

    return (mmi_slk_set_selection_enum)(nvram_data);
}


/* Old adaptor, to be removed */
U8 GetAutoKeypadLockTime(void)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    return (U8)mmi_slk_set_get_selection();
}


static MMI_BOOL mmi_slk_set_store_selection_by_menu_id(mmi_menu_id menu_id)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    S32 i;
    U8 nvram_data;
    //S16 error;

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/

    for (i = 0; i < mmi_slk_set_max_mapping_num; i++)
    {
        if (mmi_slk_set_mapping[i].menu_id == menu_id)
        {
            if (mmi_slk_set_get_selection() != mmi_slk_set_mapping[i].stored_value)
            {
                nvram_data = (U8)mmi_slk_set_mapping[i].stored_value;
                WriteValueSlim(NVRAM_SETTING_AUTOKEYPADLOCK_TIME, &nvram_data, DS_BYTE);
                  
                    if (mmi_slk_set_mapping[i].stored_value == MMI_SLK_SET_SELECTION_OFF)
                    {
                        return srv_gpio_setting_set_bl_time(60);
                    }
                    else
                    {
                    	return srv_gpio_setting_set_bl_time(mmi_slk_set_mapping[i].timeout_value/1000);
                    }
                }
                else
                {
                    return MMI_FALSE;
                }
        }
    }
    
    return MMI_FALSE;
}


S32 mmi_slk_set_get_timeout_value_in_msec(void)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    S32 i;
    mmi_slk_set_selection_enum stored_value;

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    stored_value = mmi_slk_set_get_selection();
    for (i = 0; i < mmi_slk_set_max_mapping_num; i++)
    {
        if (mmi_slk_set_mapping[i].stored_value == stored_value)
        {
            return mmi_slk_set_mapping[i].timeout_value;
        }
    }

    return 0;
}

S32 mmi_slk_set_get_timeout_value_str(void)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    S32 i;
    mmi_slk_set_selection_enum stored_value;

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    stored_value = mmi_slk_set_get_selection();
    for (i = 0; i < mmi_slk_set_max_mapping_num; i++)
    {
        if (mmi_slk_set_mapping[i].stored_value == stored_value)
        {
            return mmi_slk_set_str[i];
        }
    }

    return STR_GLOBAL_OFF;
}

static mmi_menu_id mmi_slk_set_get_menu_item_selected(void)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    S32 i;
    mmi_slk_set_selection_enum stored_value;

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    stored_value = mmi_slk_set_get_selection();
    for (i = 0; i < mmi_slk_set_max_mapping_num; i++)
    {
        if (mmi_slk_set_mapping[i].stored_value == stored_value)
        {
            return mmi_slk_set_mapping[i].menu_id;
        }
    }

    return MENU_ID_SLK_SETTING_OFF;
}


static mmi_ret mmi_slk_set_menu_grp_proc(mmi_event_struct *evt)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    mmi_slk_set_cntx_struct *cntx;
    cui_menu_event_struct *menu_evt;

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    cntx = (mmi_slk_set_cntx_struct*)evt->user_data;
    menu_evt = (cui_menu_event_struct*)evt;

    switch (evt->evt_id)
    {
        case EVT_ID_CUI_MENU_LIST_ENTRY:
            menu_evt = (cui_menu_event_struct*)evt;
            cui_menu_set_currlist_flags(menu_evt->sender_id, CUI_MENU_NORMAL_RADIO_BUTTON_LIST);
            /* [MAUI_02442161] We don't reset radio item if go back history */
            if (!(menu_evt->cui_menu_event_flags & CUI_MENU_LIST_FROM_HISTORY))
            {
                cui_menu_set_radio_list_item(menu_evt->sender_id, mmi_slk_set_get_menu_item_selected());
            }
            break;

        case EVT_ID_CUI_MENU_ITEM_SELECT:
            // [MAUI_MAUI_02445036] always show the done popup even select the same item
            mmi_slk_set_store_selection_by_menu_id(menu_evt->highlighted_menu_id);
            mmi_popup_display_simple(
                get_string(STR_GLOBAL_DONE),
                MMI_EVENT_SUCCESS,
                GRP_ID_SLK_SETTING,
                cntx);
            cntx->menu_cui = 0;
            cui_menu_close(menu_evt->sender_id);
            break;

        case EVT_ID_CUI_MENU_CLOSE_REQUEST:
            cntx->menu_cui = 0;
            cui_menu_close(menu_evt->sender_id);
            break;

        case EVT_ID_POPUP_QUIT:
            mmi_scr_locker_restart_timer();
            srv_backlight_turn_on(SRV_BACKLIGHT_SHORT_TIME);
            break;
        
    }

    return MMI_RET_OK;
}

void mmi_scr_locker_screen_auto_lock_entry(MMI_ID parent_gid)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    mmi_slk_set_cntx_struct *cntx;
    
    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/

    cntx = &g_mmi_slk_set_cntx;

    mmi_frm_group_create_ex(
        parent_gid,
        GRP_ID_SLK_SETTING,
        mmi_slk_set_menu_grp_proc,
        cntx,
        MMI_FRM_NODE_SMART_CLOSE_FLAG);

    cntx->menu_cui = cui_menu_create(
        GRP_ID_SLK_SETTING,
        CUI_MENU_SRC_TYPE_RESOURCE,
        CUI_MENU_TYPE_FROM_RESOURCE,
        MENU_ID_SLK_TIME_SETTING_MENU,
        MMI_TRUE,
        cntx);

    cui_menu_set_default_title_image(cntx->menu_cui, get_image(MAIN_MENU_TITLE_SETTINGS_ICON));
    cui_menu_set_access_by_shortcut(cntx->menu_cui, MMI_FALSE);
    cui_menu_run(cntx->menu_cui);
}

#ifndef __MMI_SCREEN_LOCK_CLASSIC_NEPTUNE_LIKE_BWUI__
void mmi_scr_locker_screen_auto_lock_set_hint(void)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    //MMI_STR_ID hint_str;

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
#if 1    
    cui_menu_set_item_hint(
        mmi_frm_group_get_active_id(),
        MENU_ID_SLK_TIME_SETTING_MENU,
        get_string(mmi_slk_set_get_timeout_value_str()));
#else   
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
#endif
}
#endif
mmi_ret mmi_slk_set_default_backlight_timer()
{

    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    U8 nvram_data;
    //S16 error;

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
        nvram_data = (U8)MMI_SLK_SET_SELECTION_DEFAULT;
        ReadValueSlim(NVRAM_SETTING_AUTOKEYPADLOCK_TIME, &nvram_data, DS_BYTE);
	
	if (nvram_data == MMI_SLK_SET_SELECTION_OFF)
	{
		srv_gpio_setting_set_bl_time(60);
	}
	else
	{
		srv_gpio_setting_set_bl_time(mmi_slk_set_mapping[nvram_data].timeout_value/1000);
	}

	return MMI_RET_OK;
}


mmi_ret mmi_slk_set_main_evt_hdlr(mmi_event_struct *event)
{
    mmi_ret ret;

    MMI_ASSERT(event);

    switch (event->evt_id)
    {
        case EVT_ID_SRV_BOOTUP_COMPLETED:
            ret = mmi_slk_set_default_backlight_timer();
            break;

        default:
            ret = MMI_RET_OK;
            break;
    }

    return ret;
}

#if 0
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
#endif

#endif /* defined(__MMI_AUTO_KEYPAD_LOCK__) */