- The signal should be emitted after Application::InitSignal() is emitted.
Change-Id: I03256291e0a31ed85b169eb56effdb787a50e28d
{
Dali::StyleMonitor::Get().SetTheme( mStylesheet );
}
+}
+void Application::DoStart()
+{
mAdaptor->NotifySceneCreated();
}
Dali::Application application(this);
mInitSignal.Emit( application );
+
+ DoStart();
}
void Application::OnTerminate()
*/
void DoInit();
+ /**
+ * Called after OnInit is called or the framework is started.
+ */
+ void DoStart();
+
/**
* Called when OnTerminate is called or the framework is terminated.
*/
Internal::Adaptor::GetImplementation(*mApplication).DoInit();
}
+void ApplicationExtensions::Start()
+{
+ Internal::Adaptor::GetImplementation(*mApplication).DoStart();
+}
+
void ApplicationExtensions::Terminate()
{
Internal::Adaptor::GetImplementation(*mApplication).DoTerminate();
/**
- * @brief Called wwhen the framework is initialised.
+ * @brief Called when the framework is initialised.
* @SINCE_1_2.7
*/
void Init();
+ /**
+ * @brief Called when the framework is started.
+ */
+ void Start();
+
/**
* @brief Called when the framework is terminated.
* @SINCE_1_2.7