summaryrefslogtreecommitdiff
path: root/examples/tooltip
diff options
context:
space:
mode:
authorDavid Steele <david.steele@samsung.com>2020-09-10 13:15:11 +0100
committerDavid Steele <david.steele@samsung.com>2020-09-10 17:03:42 +0100
commit1b19fd140ff139b5854a1a62447faf31b175d8f6 (patch)
tree2e96cadf1a233fea86e7af0274c44bd07139a539 /examples/tooltip
parentb26d446b0cb6a316abc3a79d4fc70d0ae1b7994c (diff)
downloaddali-demo-1b19fd140ff139b5854a1a62447faf31b175d8f6.tar.gz
dali-demo-1b19fd140ff139b5854a1a62447faf31b175d8f6.tar.bz2
dali-demo-1b19fd140ff139b5854a1a62447faf31b175d8f6.zip
Updated demos to use DALi clang-format
Change-Id: I2be80c43c2f83b2333df48210b53258e4be1acae
Diffstat (limited to 'examples/tooltip')
-rw-r--r--examples/tooltip/tooltip-example.cpp132
1 files changed, 64 insertions, 68 deletions
diff --git a/examples/tooltip/tooltip-example.cpp b/examples/tooltip/tooltip-example.cpp
index 279b00e5..ab1223ab 100644
--- a/examples/tooltip/tooltip-example.cpp
+++ b/examples/tooltip/tooltip-example.cpp
@@ -24,9 +24,9 @@ using namespace Dali::Toolkit;
namespace
{
-const Vector4 WINDOW_COLOR( 211.0f / 255.0f, 211.0f / 255.0f, 211.0f / 255.0f, 1.0f ); ///< The color of the window
-const char * const THEME_PATH( DEMO_STYLE_DIR "tooltip-example-theme.json" ); ///< The theme used for this example
-const float POSITION_INCREMENTER( 0.2f ); ///< The position difference between the controls along the Y-Axis.
+const Vector4 WINDOW_COLOR(211.0f / 255.0f, 211.0f / 255.0f, 211.0f / 255.0f, 1.0f); ///< The color of the window
+const char* const THEME_PATH(DEMO_STYLE_DIR "tooltip-example-theme.json"); ///< The theme used for this example
+const float POSITION_INCREMENTER(0.2f); ///< The position difference between the controls along the Y-Axis.
} // unnamed namespace
/**
@@ -38,75 +38,72 @@ const float POSITION_INCREMENTER( 0.2f ); ///< The position difference between t
class TooltipController : public ConnectionTracker
{
public:
-
- TooltipController( Application& application )
- : mApplication( application ),
- previousPosition( 0.0f )
+ TooltipController(Application& application)
+ : mApplication(application),
+ previousPosition(0.0f)
{
// Connect to the Application's Init signal
- mApplication.InitSignal().Connect( this, &TooltipController::Create );
+ mApplication.InitSignal().Connect(this, &TooltipController::Create);
}
private:
-
// The Init signal is received once (only) during the Application lifetime
- void Create( Application& application )
+ void Create(Application& application)
{
// Set the window background color and connect to the window's key signal to allow Back and Escape to exit.
Window window = application.GetWindow();
- window.SetBackgroundColor( WINDOW_COLOR );
- window.KeyEventSignal().Connect( this, &TooltipController::OnKeyEvent );
+ window.SetBackgroundColor(WINDOW_COLOR);
+ window.KeyEventSignal().Connect(this, &TooltipController::OnKeyEvent);
const Vector2 windowSize = window.GetSize();
// Add a text label at the top for information purposes
- Control label = TextLabel::New( "Hover over buttons to see tooltip" );
- label.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_CENTER );
- label.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_CENTER );
- label.SetProperty( TextLabel::Property::HORIZONTAL_ALIGNMENT, "Center" );
- window.Add( label );
+ Control label = TextLabel::New("Hover over buttons to see tooltip");
+ label.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_CENTER);
+ label.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_CENTER);
+ label.SetProperty(TextLabel::Property::HORIZONTAL_ALIGNMENT, "Center");
+ window.Add(label);
// Simple tooltip from stylesheet
Control simple = PushButton::New();
- simple.SetStyleName( "TooltipTextOnly" );
- SetLabel( simple, "Simple" );
- Layout( simple, windowSize );
- window.Add( simple );
+ simple.SetStyleName("TooltipTextOnly");
+ SetLabel(simple, "Simple");
+ Layout(simple, windowSize);
+ window.Add(simple);
// Tooltip with icon and text, from stylesheet
Control iconWithText = PushButton::New();
- iconWithText.SetStyleName( "TooltipArray" );
- SetLabel( iconWithText, "Icon with Text" );
- Layout( iconWithText, windowSize );
- window.Add( iconWithText );
+ iconWithText.SetStyleName("TooltipArray");
+ SetLabel(iconWithText, "Icon with Text");
+ Layout(iconWithText, windowSize);
+ window.Add(iconWithText);
// Tooltip with custom style, from stylesheet
Control customFromStylesheet = PushButton::New();
- customFromStylesheet.SetStyleName( "TooltipCustom" );
- SetLabel( customFromStylesheet, "Custom From Stylesheet" );
- Layout( customFromStylesheet, windowSize );
- window.Add( customFromStylesheet );
+ customFromStylesheet.SetStyleName("TooltipCustom");
+ SetLabel(customFromStylesheet, "Custom From Stylesheet");
+ Layout(customFromStylesheet, windowSize);
+ window.Add(customFromStylesheet);
// Tooltip with custom style, from code
Control customFromCode = PushButton::New();
- SetLabel( customFromCode, "Custom From Code" );
- Layout( customFromCode, windowSize );
- customFromCode.SetProperty( DevelControl::Property::TOOLTIP,
- { { Tooltip::Property::CONTENT,
- Property::Array{ { { { Toolkit::Visual::Property::TYPE, Visual::IMAGE },
- { ImageVisual::Property::URL, DEMO_IMAGE_DIR "Logo-for-demo.png" } } },
- { { { Toolkit::Visual::Property::TYPE, Visual::TEXT },
- { TextVisual::Property::TEXT_COLOR, Color::WHITE },
- { TextVisual::Property::TEXT, "Custom coded style\nat hover point" },
- { TextVisual::Property::MULTI_LINE, true },
- { TextVisual::Property::HORIZONTAL_ALIGNMENT, "CENTER" },
- { TextVisual::Property::POINT_SIZE, 16 } } } } },
- { Tooltip::Property::LAYOUT, Vector2( 2, 1 ) },
- { Tooltip::Property::POSITION, Tooltip::Position::HOVER_POINT },
- { Tooltip::Property::BACKGROUND,
- { { Tooltip::Background::Property::VISUAL, DEMO_IMAGE_DIR "tooltip.9.png" },
- { Tooltip::Background::Property::BORDER, Rect< int >( 1, 5, 5, 1 ) } } }
- } );
- window.Add( customFromCode );
+ SetLabel(customFromCode, "Custom From Code");
+ Layout(customFromCode, windowSize);
+ customFromCode.SetProperty(DevelControl::Property::TOOLTIP,
+ {{Tooltip::Property::CONTENT,
+ Property::Array{{{{Toolkit::Visual::Property::TYPE, Visual::IMAGE},
+ {ImageVisual::Property::URL, DEMO_IMAGE_DIR "Logo-for-demo.png"}}},
+ {{{Toolkit::Visual::Property::TYPE, Visual::TEXT},
+ {TextVisual::Property::TEXT_COLOR, Color::WHITE},
+ {TextVisual::Property::TEXT, "Custom coded style\nat hover point"},
+ {TextVisual::Property::MULTI_LINE, true},
+ {TextVisual::Property::HORIZONTAL_ALIGNMENT, "CENTER"},
+ {TextVisual::Property::POINT_SIZE, 16}}}}},
+ {Tooltip::Property::LAYOUT, Vector2(2, 1)},
+ {Tooltip::Property::POSITION, Tooltip::Position::HOVER_POINT},
+ {Tooltip::Property::BACKGROUND,
+ {{Tooltip::Background::Property::VISUAL, DEMO_IMAGE_DIR "tooltip.9.png"},
+ {Tooltip::Background::Property::BORDER, Rect<int>(1, 5, 5, 1)}}}});
+ window.Add(customFromCode);
}
/**
@@ -115,11 +112,11 @@ private:
* Will use this to quit the application if Back or the Escape key is received
* @param[in] event The key event information
*/
- void OnKeyEvent( const KeyEvent& event )
+ void OnKeyEvent(const KeyEvent& event)
{
- if( event.GetState() == KeyEvent::DOWN )
+ if(event.GetState() == KeyEvent::DOWN)
{
- if ( IsKey( event, Dali::DALI_KEY_ESCAPE ) || IsKey( event, Dali::DALI_KEY_BACK ) )
+ if(IsKey(event, Dali::DALI_KEY_ESCAPE) || IsKey(event, Dali::DALI_KEY_BACK))
{
mApplication.Quit();
}
@@ -130,13 +127,12 @@ private:
* @brief Sets the label on the control.
* @param[in] label The label to set.
*/
- void SetLabel( Control control, std::string label )
+ void SetLabel(Control control, std::string label)
{
- if( control )
+ if(control)
{
- control.SetProperty( Button::Property::LABEL,
- Property::Map().Add( Toolkit::Visual::Property::TYPE, Visual::TEXT )
- .Add( TextVisual::Property::TEXT, label ) );
+ control.SetProperty(Button::Property::LABEL,
+ Property::Map().Add(Toolkit::Visual::Property::TYPE, Visual::TEXT).Add(TextVisual::Property::TEXT, label));
}
}
@@ -145,29 +141,29 @@ private:
* @param[in] control The control to layout.
* @param[in] windowSize The size of the window, passing it in so we don't have to retrieve it every time.
*/
- void Layout( Control control, const Vector2& windowSize )
+ void Layout(Control control, const Vector2& windowSize)
{
- if( control )
+ if(control)
{
previousPosition += POSITION_INCREMENTER;
- control.SetResizePolicy( ResizePolicy::SIZE_RELATIVE_TO_PARENT, Dimension::ALL_DIMENSIONS );
- control.SetProperty( Actor::Property::SIZE_MODE_FACTOR, Vector3( 0.75, 0.1, 1.0 ) );
- control.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::CENTER );
- control.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_CENTER );
- control.SetProperty( Actor::Property::POSITION_Y, windowSize.height * previousPosition );
+ control.SetResizePolicy(ResizePolicy::SIZE_RELATIVE_TO_PARENT, Dimension::ALL_DIMENSIONS);
+ control.SetProperty(Actor::Property::SIZE_MODE_FACTOR, Vector3(0.75, 0.1, 1.0));
+ control.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::CENTER);
+ control.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_CENTER);
+ control.SetProperty(Actor::Property::POSITION_Y, windowSize.height * previousPosition);
}
}
private:
- Application& mApplication;
- float previousPosition;
+ Application& mApplication;
+ float previousPosition;
};
-int DALI_EXPORT_API main( int argc, char **argv )
+int DALI_EXPORT_API main(int argc, char** argv)
{
- Application application = Application::New( &argc, &argv, THEME_PATH );
+ Application application = Application::New(&argc, &argv, THEME_PATH);
- TooltipController test( application );
+ TooltipController test(application);
application.MainLoop();