tizen beta release
[framework/web/wrt-commons.git] / modules / utils / src / wrt_global_settings.cpp
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /**
17  * @file        wrt_global_settings.cpp
18  * @version     1.0
19  * @author      Pawel Sikorski(p.sikorski@samsung.com)
20  * @author      Lukasz Wrzosek (l.wrzosek@samsung.com)
21  * @brief       runtime
22  */
23 #include <dpl/assert.h>
24 #include <dpl/log/log.h>
25 #include <string.h>
26 #include <stdlib.h>
27 #include <wrt_global_settings_internal.h>
28
29 namespace {
30 bool GetPopupsEnabledFlag()
31 {
32     //TODO : env var. will be removed after UX guide for POWDER is enabled.
33     const char *env = getenv("WRT_POPUP_ENABLE");
34     if (env && 0 == strcmp(env, "1")) {
35         return true;
36     } else {
37         return false;
38     }
39 }
40
41 static bool initializeGlobalSettings();
42
43 static bool initHelper = initializeGlobalSettings();
44
45 bool initializeGlobalSettings()
46 {
47     (void)initHelper;
48     LogDebug("Initializing globall settings");
49     GlobalSettings::IGlobalSettingsFunctions functions;
50     functions.getPopupsEnabledFlag = &GetPopupsEnabledFlag;
51     GlobalSettings::SetPredefinedGlobalSettings(functions);
52     return false;
53 }
54 }