2 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
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.
19 #include <adaptor-impl.h>
22 #include <app_common.h>
23 #ifdef APPCORE_WATCH_AVAILABLE
24 #include <screen_connector_provider.h>
25 #include <ecore-wl-render-surface.h>
28 #include <system_settings.h>
42 static void OnSystemLanguageChanged( system_settings_key_e key, void* data )
45 if( system_settings_get_value_string( SYSTEM_SETTINGS_KEY_LOCALE_LANGUAGE, &locale ) != SYSTEM_SETTINGS_ERROR_NONE ||
48 DALI_LOG_ERROR( "DALI OnSystemLanguageChanged failed " );
52 Adaptor* adaptor = static_cast< Adaptor* >( data );
55 adaptor->SetRootLayoutDirection( locale );
63 void Adaptor::GetDataStoragePath( std::string& path)
66 char *pathInt = app_get_data_path();
80 void Adaptor::GetAppId( std::string& appId )
96 void Adaptor::SurfaceInitialized()
98 #ifdef APPCORE_WATCH_AVAILABLE
99 if ( !mUseRemoteSurface )
106 Ecore_Wl_Window* ecoreWlWindow = AnyCast<Ecore_Wl_Window*>( mNativeWindow );
107 screen_connector_provider_remote_enable(appId, ecore_wl_window_surface_get(ecoreWlWindow));
111 void Adaptor::SetupSystemInformation()
113 if( system_settings_set_changed_cb( SYSTEM_SETTINGS_KEY_LOCALE_LANGUAGE, OnSystemLanguageChanged, this ) != SYSTEM_SETTINGS_ERROR_NONE )
115 DALI_LOG_ERROR( "DALI system_settings_set_changed_cb failed.\n" );
120 if( system_settings_get_value_string( SYSTEM_SETTINGS_KEY_LOCALE_LANGUAGE, &locale ) != SYSTEM_SETTINGS_ERROR_NONE ||
123 DALI_LOG_ERROR( "DALI OnSystemLanguageChanged failed " );
127 SetRootLayoutDirection( locale );
133 } // namespace Adaptor
135 } // namespace Internal