2 * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
22 public static class Elementary
24 private static readonly string _themeFilePath = "/usr/share/elm-sharp/elm-sharp-theme.edj";
26 public static void Initialize()
28 Interop.Elementary.elm_init(0, null);
31 public static void Shutdown()
33 Interop.Elementary.elm_shutdown();
36 public static void Run()
38 Interop.Elementary.elm_run();
41 public static void ThemeOverlay()
43 if (File.Exists(_themeFilePath))
45 Interop.Elementary.elm_theme_overlay_add(IntPtr.Zero, _themeFilePath);
49 public static double GetSystemScrollFriction()
51 return Interop.Elementary.elm_config_scroll_bring_in_scroll_friction_get();
54 public static void SetSystemScrollFriction(double timeSet)
56 Interop.Elementary.elm_config_scroll_bring_in_scroll_friction_set(timeSet);
59 public static string GetProfile()
61 return Interop.Elementary.elm_config_profile_get();
64 public static void SetScale(double scale)
66 Interop.Elementary.elm_config_scale_set(scale);
69 public static double GetScale()
71 return Interop.Elementary.elm_config_scale_get();