Make radio buttons work with size negotiation, bug fixes.
[platform/core/uifw/dali-toolkit.git] / base / dali-toolkit / public-api / builder / builder.cpp
index c5f7eef..fbf4223 100644 (file)
@@ -94,16 +94,6 @@ Animation Builder::CreateAnimation( const std::string& animationName, const Prop
   return GetImpl(*this).CreateAnimation( animationName, map, sourceActor );
 }
 
-BaseHandle Builder::CreateFromStyle( const std::string& styleName )
-{
-  return BaseHandle();
-}
-
-BaseHandle Builder::CreateFromStyle( const std::string& styleName, const PropertyValueMap& map )
-{
-  return BaseHandle();
-}
-
 BaseHandle Builder::Create( const std::string& templateName )
 {
   return GetImpl(*this).Create( templateName );
@@ -114,44 +104,29 @@ BaseHandle Builder::Create( const std::string& templateName, const PropertyValue
   return GetImpl(*this).Create( templateName, map );
 }
 
-bool Builder::ApplyStyle( const std::string& styleName, Handle& handle )
-{
-  return GetImpl(*this).ApplyStyle( styleName, handle );
-}
-
-void Builder::AddActors( Actor toActor )
+BaseHandle Builder::CreateFromJson( const std::string& json )
 {
-  GetImpl(*this).AddActors( toActor );
+  return GetImpl(*this).CreateFromJson( json );
 }
 
-void Builder::AddActors( const std::string &sectionName, Actor toActor )
-{
-  GetImpl(*this).AddActors( sectionName, toActor );
-}
-
-Font Builder::GetFont( const std::string &name ) const
-{
-  return GetImpl(*this).GetFont( name );
-}
-
-TextStyle Builder::GetTextStyle( const std::string &name ) const
+bool Builder::ApplyStyle( const std::string& styleName, Handle& handle )
 {
-  return GetImpl(*this).GetTextStyle( name );
+  return GetImpl(*this).ApplyStyle( styleName, handle );
 }
 
-Image Builder::GetImage( const std::string &name ) const
+bool Builder::ApplyFromJson( Handle& handle, const std::string& json )
 {
-  return GetImpl(*this).GetImage( name );
+  return GetImpl(*this).ApplyFromJson( handle, json );
 }
 
-Actor Builder::GetActor( const std::string &name ) const
+void Builder::AddActors( Actor toActor )
 {
-  return GetImpl(*this).GetActor( name );
+  GetImpl(*this).AddActors( toActor );
 }
 
-Animation Builder::GetAnimation( const std::string &name ) const
+void Builder::AddActors( const std::string &sectionName, Actor toActor )
 {
-  return GetImpl(*this).GetAnimation( name );
+  GetImpl(*this).AddActors( sectionName, toActor );
 }
 
 void Builder::CreateRenderTask( const std::string &name )
@@ -169,9 +144,9 @@ FrameBufferImage Builder::GetFrameBufferImage( const std::string &name )
   return GetImpl(*this).GetFrameBufferImage( name );
 }
 
-ActorContainer Builder::GetTopLevelActors( void ) const
+Builder::Signal& Builder::QuitSignal()
 {
-  return GetImpl(*this).GetTopLevelActors();
+  return GetImpl( *this ).QuitSignal();
 }
 
 } // namespace Toolkit