text-overlap-example.cpp
4.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#include <dali-toolkit/dali-toolkit.h>
#include <dali/devel-api/actors/actor-devel.h>
#include "text-overlap-example.h"
#include <iostream>
using namespace Dali;
using namespace Dali::Toolkit;
static const int NUMBER_OF_LABELS(2);
namespace Demo
{
TextOverlapController::TextOverlapController( Application& app )
: mApplication( app ),
mTopmostLabel( 1 )
{
app.InitSignal().Connect( this, &TextOverlapController::Create );
app.TerminateSignal().Connect( this, &TextOverlapController::Destroy );
}
void TextOverlapController::Create( Application& app )
{
Stage stage = Stage::GetCurrent();
stage.KeyEventSignal().Connect( this, &TextOverlapController::OnKeyEvent );
Vector2 stageSize = stage.GetSize();
mLabels[0] = TextLabel::New("Text Label 1");
mLabels[1] = TextLabel::New("Text Label 2");
mLabels[0].SetName("Label1");
mLabels[1].SetName("Label2");
mLabels[0].SetProperty( DevelActor::Property::SIBLING_ORDER, 1 );
mLabels[1].SetProperty( DevelActor::Property::SIBLING_ORDER, 2 );
mLabels[0].SetProperty( Control::Property::BACKGROUND, Color::RED );
mLabels[1].SetProperty( Control::Property::BACKGROUND, Color::YELLOW );
for(int i=0; i<NUMBER_OF_LABELS; ++i )
{
mLabels[i].SetProperty( TextLabel::Property::HORIZONTAL_ALIGNMENT, "CENTER" );
mLabels[i].SetAnchorPoint( AnchorPoint::TOP_LEFT );
mLabels[i].SetParentOrigin( ParentOrigin::TOP_LEFT );
mLabels[i].SetPosition( 0, (i*2+1) * stageSize.height * 0.25f );
}
stage.Add( mLabels[0] );
stage.Add( mLabels[1] );
mSwapButton = PushButton::New();
mSwapButton.SetProperty( Button::Property::LABEL, "Swap depth order");
mSwapButton.SetParentOrigin( ParentOrigin::BOTTOM_CENTER );
mSwapButton.SetAnchorPoint( AnchorPoint::BOTTOM_CENTER );
mSwapButton.ClickedSignal().Connect( this, &TextOverlapController::OnClicked );
mSwapButton.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::WIDTH );
mSwapButton.SetResizePolicy( ResizePolicy::USE_NATURAL_SIZE, Dimension::HEIGHT );
stage.Add( mSwapButton );
Layer rootLayer = stage.GetRootLayer();
rootLayer.SetName("RootLayer");
mPanDetector = PanGestureDetector::New();
mPanDetector.Attach( rootLayer );
mPanDetector.AddAngle( Radian(-0.5f * Math::PI ));
mPanDetector.AddAngle( Radian( 0.5f * Math::PI ));
mPanDetector.DetectedSignal().Connect( this, &TextOverlapController::OnPan );
}
void TextOverlapController::OnPan( Actor actor, const PanGesture& gesture )
{
if( ! mGrabbedActor || gesture.state == PanGesture::Started )
{
for( int i=0; i<NUMBER_OF_LABELS; ++i )
{
Vector3 position = mLabels[i].GetCurrentPosition();
Vector3 size = mLabels[i].GetCurrentSize();
if( gesture.position.y > position.y - size.y * 0.5f &&
gesture.position.y <= position.y + size.y * 0.5f )
{
mGrabbedActor = mLabels[i];
break;
}
}
}
else if( mGrabbedActor && gesture.state == PanGesture::Continuing )
{
Vector2 stageSize = Stage::GetCurrent().GetSize();
Vector3 size = mGrabbedActor.GetCurrentSize();
float y = Clamp( gesture.position.y, size.y * 0.5f, stageSize.y - size.y*0.5f );
mGrabbedActor.SetPosition( 0, y );
}
else
{
mGrabbedActor.Reset();
}
}
void TextOverlapController::Destroy( Application& app )
{
mPanDetector.DetachAll();
UnparentAndReset(mLabels[0]);
UnparentAndReset(mLabels[1]);
mGrabbedActor.Reset();
}
bool TextOverlapController::OnClicked( Button button )
{
mTopmostLabel = 1-mTopmostLabel; // toggles between 0 and 1
mLabels[mTopmostLabel].RaiseToTop();
return false;
}
void TextOverlapController::OnKeyEvent( const KeyEvent& keyEvent )
{
if( keyEvent.state == KeyEvent::Down &&
( IsKey( keyEvent, DALI_KEY_BACK ) ||
IsKey( keyEvent, DALI_KEY_ESCAPE ) ) )
{
mApplication.Quit();
}
else
{
Dali::Layer l = Dali::Stage::GetCurrent().GetRootLayer();
int so = l.GetProperty<int>(Dali::DevelActor::Property::SIBLING_ORDER);
l.SetProperty(Dali::DevelActor::Property::SIBLING_ORDER, so+1);
}
}
} // namespace Demo
int main( int argc, char** argv )
{
{
Application app = Application::New( &argc, &argv );
Demo::TextOverlapController controller( app );
app.MainLoop();
}
exit( 0 );
}