summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYury Usishchev <y.usishchev@samsung.com>2014-09-23 12:45:39 +0400
committerYury Usishchev <y.usishchev@samsung.com>2014-09-24 12:55:34 +0400
commitdc5a8cde26f73605653d5b1054a1f64952368bc0 (patch)
tree0e1e43f03985f88fbf565df0deb519131f2c42b1
parent3afbefd93732aac3fec16552f34b1d5b34577379 (diff)
downloaddali-demo-tizen_3.0.2014.q3_common.tar.gz
dali-demo-tizen_3.0.2014.q3_common.tar.bz2
dali-demo-tizen_3.0.2014.q3_common.zip
Change-Id: I8afdf46a775188a076a0114ab43275c0c56069c2 Signed-off-by: Yury Usishchev <y.usishchev@samsung.com>
-rw-r--r--demo/dali-table-view.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/demo/dali-table-view.cpp b/demo/dali-table-view.cpp
index 7b1fefb8..00bda38d 100644
--- a/demo/dali-table-view.cpp
+++ b/demo/dali-table-view.cpp
@@ -92,18 +92,6 @@ const Dali::TextStyle::Weight TABLE_TEXT_STYLE_WEIGHT(Dali::TextStyle::LIGHT);
const Dali::Vector4 TABLE_TEXT_STYLE_COLOR(0.0f, 0.0f, 0.0f, 1.0f);
-TextStyle GetDefaultTextStyle()
-{
- TextStyle textStyle;
- textStyle.SetFontName(DEFAULT_TEXT_STYLE_FONT_FAMILY);
- textStyle.SetFontStyle(DEFAULT_TEXT_STYLE_FONT_STYLE);
- textStyle.SetFontPointSize( Dali::PointSize(DemoHelper::ScalePointSize(DEFAULT_TEXT_STYLE_POINT_SIZE)));
- textStyle.SetWeight(DEFAULT_TEXT_STYLE_WEIGHT);
- textStyle.SetTextColor(DEFAULT_TEXT_STYLE_COLOR);
- textStyle.SetShadow( true );
- return textStyle;
-}
-
TextStyle GetTableTextStyle()
{
TextStyle textStyle;
@@ -172,15 +160,6 @@ Vector3 ShapeMovementConstraint( const Vector3& current,
}
/**
- * Constraint to return a bool value based on the alpha channel value
- */
-bool AlphaVisibleConstraint( bool current, const PropertyInput& alphaProperty )
-{
- Vector4 colour = alphaProperty.GetVector4();
- return ( colour.a > Math::MACHINE_EPSILON_10000 );
-}
-
-/**
* Constraint to return a position for the background based on the scroll value
*/
struct AnimScrollConstraint