UILayout.h
20.1 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
/****************************************************************************
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#ifndef __LAYOUT_H__
#define __LAYOUT_H__
#include "ui/UIWidget.h"
#include "ui/GUIExport.h"
#include "renderer/CCCustomCommand.h"
#include "renderer/CCGroupCommand.h"
#include "renderer/CCCallbackCommand.h"
/**
* @addtogroup ui
* @{
*/
NS_CC_BEGIN
class DrawNode;
class LayerColor;
class LayerGradient;
class StencilStateManager;
struct CC_DLL ResourceData;
namespace ui {
class LayoutManager;
class Scale9Sprite;
/**
*@brief Layout interface for creating LayoutManger and do actual layout.
* @js NA
*/
class CC_GUI_DLL LayoutProtocol
{
public:
/**
*@brief Default constructor.
*/
LayoutProtocol(){}
/**
*@brief Default destructor.
*/
virtual ~LayoutProtocol(){}
/**
* @brief Create a custom layout manager.
*
* @return A LayoutManager descendants instance.
*/
virtual LayoutManager* createLayoutManager() = 0;
/**
* @brief Return the content size of layout.
*
* @return A content size in Size.
*/
virtual Size getLayoutContentSize()const = 0;
/**
* @brief Get all elements of the layout.
*
* @return A vector of Node pointers.
*/
virtual const Vector<Node*>& getLayoutElements()const = 0;
/**
* @brief The main function to do the layout job.
* Different layout manager should implement its own layout algorithm.
*
*/
virtual void doLayout() = 0;
};
/**
*@brief A container for holding a few child widgets.
*
* The child widgets could be rearranged according to the layout type and it also enables clipping, set background image and color.
*
* There are mainly four types of layout:
* - Absolute layout: This the default layout type, child elements are arranged by their absolute position.
* - Horizontal layout: child elements are arranged horizontally.
* - Vertical layout: child elements are arranged vertically.
* - Relative layout: child elements are arranged relative to certain rules.
*
*/
class CC_GUI_DLL Layout : public Widget, public LayoutProtocol
{
DECLARE_CLASS_GUI_INFO
public:
/**
* Layout type, default is ABSOLUTE.
*/
enum class Type
{
ABSOLUTE,
VERTICAL,
HORIZONTAL,
RELATIVE
};
/**
* Clipping Type, default is STENCIL.
*/
enum class ClippingType
{
STENCIL,
SCISSOR
};
/**
* Background color type, default is NONE.
*/
enum class BackGroundColorType
{
NONE,
SOLID,
GRADIENT
};
/**
* Default constructor
* @js ctor
* @lua new
*/
Layout();
/**
* Default destructor
* @js NA
* @lua NA
*/
virtual ~Layout();
/**
* Create a empty layout.
*/
static Layout* create();
/**
* Sets a background image for layout.
*
* @param fileName image file path.
* @param texType @see TextureResType.
*/
void setBackGroundImage(const std::string& fileName,TextureResType texType = TextureResType::LOCAL);
/**
* Sets a background image capinsets for layout, it only affects the scale9 enabled background image
*
* @param capInsets The capInsets in Rect.
*
*/
void setBackGroundImageCapInsets(const Rect& capInsets);
/**
* Query background image's capInsets size.
*@return The background image capInsets.
*/
const Rect& getBackGroundImageCapInsets()const;
/**
* Sets Color Type for layout's background
*
* @param type @see `BackGroundColorType`
*/
void setBackGroundColorType(BackGroundColorType type);
/**
* Query the layout's background color type.
*@return The layout's background color type.
*/
BackGroundColorType getBackGroundColorType()const;
/**
* Enable background image scale9 rendering.
*
* @param enabled True means enable scale9 rendering for background image, false otherwise.
*/
void setBackGroundImageScale9Enabled(bool enabled);
/**
* Query background image scale9 enable status.
*@return Whether background image is scale9 enabled or not.
*/
bool isBackGroundImageScale9Enabled()const;
/**
* Set background color for layout
* The color only applies to layout when it's color type is BackGroundColorType::SOLIDE
*
* @param color Color in Color3B.
*/
void setBackGroundColor(const Color3B &color);
/**
* Query the layout's background color.
*@return Background color in Color3B.
*/
const Color3B& getBackGroundColor()const;
/**
* Set start and end background color for layout.
* This setting only take effect when the layout's color type is BackGroundColorType::GRADIENT
*
* @param startColor Color value in Color3B.
* @param endColor Color value in Color3B.
*/
void setBackGroundColor(const Color3B &startColor, const Color3B &endColor);
/**
* Get the gradient background start color.
*@return Gradient background start color value.
*/
const Color3B& getBackGroundStartColor()const;
/**
* Get the gradient background end color.
* @return Gradient background end color value.
*/
const Color3B& getBackGroundEndColor()const;
/**
* Sets background color opacity of layout.
*
* @param opacity The opacity in `GLubyte`.
*/
void setBackGroundColorOpacity(uint8_t opacity);
/**
* Get the layout's background color opacity.
*@return Background color opacity value.
*/
uint8_t getBackGroundColorOpacity()const;
/**
* Sets background color vector for layout.
* This setting only take effect when layout's color type is BackGroundColorType::GRADIENT
*
* @param vector The color vector in `Vec2`.
*/
void setBackGroundColorVector(const Vec2 &vector);
/**
* Get the layout's background color vector.
*@return Background color vector.
*/
const Vec2& getBackGroundColorVector()const;
/**
* Set layout's background image color.
*@param color Background color value in `Color3B`.
*/
void setBackGroundImageColor(const Color3B& color);
/**
* Set opacity of background image.
*@param opacity Background image opacity in GLubyte.
*/
void setBackGroundImageOpacity(uint8_t opacity);
/**
* Get color of layout's background image.
*@return Layout's background image color.
*/
const Color3B& getBackGroundImageColor()const;
/**
* Get the opacity of layout's background image.
* @return The opacity of layout's background image.
*/
uint8_t getBackGroundImageOpacity()const;
/**
* Remove the background image of layout.
*/
void removeBackGroundImage();
/**
* Gets background image texture size.
*
* @return background image texture size.
*/
const Size& getBackGroundImageTextureSize() const;
/**
* Toggle layout clipping.
*
* If you do need clipping, you pass true to this function.
*
* @param enabled Pass true to enable clipping, false otherwise.
*/
virtual void setClippingEnabled(bool enabled);
/**
* Change the clipping type of layout.
* On default, the clipping type is `ClippingType::STENCIL`.
* @see `ClippingType`
*@param type The clipping type of layout.
*/
void setClippingType(ClippingType type);
/**
*
* @see `setClippingType(ClippingType)`
*/
ClippingType getClippingType()const;
/**
* Gets if layout is clipping enabled.
*
* @return if layout is clipping enabled.
*/
virtual bool isClippingEnabled()const;
/**
* Returns the "class name" of widget.
*/
virtual std::string getDescription() const override;
/**
* Change the layout type.
*@param type Layout type.
*/
virtual void setLayoutType(Type type);
/**
* Query layout type.
*@return Get the layout type.
*/
virtual Type getLayoutType() const;
virtual void addChild(Node* child)override;
virtual void addChild(Node * child, int localZOrder)override;
/**
* Adds a child to the container with z order and tag
*
* If the child is added to a 'running' node, then 'onEnter' and 'onEnterTransitionDidFinish' will be called immediately.
*
* @param child A child node
* @param localZOrder Z order for drawing priority. Please refer to setLocalZOrder(int)
* @param tag A integer to identify the node easily. Please refer to setTag(int)
*/
virtual void addChild(Node* child, int localZOrder, int tag) override;
virtual void addChild(Node* child, int localZOrder, const std::string &name) override;
virtual void visit(Renderer *renderer, const Mat4 &parentTransform, uint32_t parentFlags) override;
virtual void removeChild(Node* child, bool cleanup = true) override;
/**
* Removes all children from the container with a cleanup.
*
* @see `removeAllChildrenWithCleanup(bool)`
*/
virtual void removeAllChildren() override;
/**
* Removes all children from the container, and do a cleanup to all running actions depending on the cleanup parameter.
*
* @param cleanup true if all running actions on all children nodes should be cleanup, false otherwise.
* @js removeAllChildren
* @lua removeAllChildren
*/
virtual void removeAllChildrenWithCleanup(bool cleanup) override;
/**
* force refresh widget layout
*/
virtual void forceDoLayout();
/**
* request to refresh widget layout
*/
virtual void requestDoLayout();
/**
* @lua NA
*/
virtual void onEnter() override;
/**
* @lua NA
*/
virtual void onExit() override;
virtual void setGlobalZOrder(float globalZOrder) override;
/**
* If a layout is loop focused which means that the focus movement will be inside the layout
*@param loop pass true to let the focus movement loop inside the layout
*/
void setLoopFocus(bool loop);
/**
*@return If focus loop is enabled, then it will return true, otherwise it returns false. The default value is false.
*/
bool isLoopFocus()const;
/**
*@param pass To specify whether the layout pass its focus to its child
*/
void setPassFocusToChild(bool pass);
/**
* @return To query whether the layout will pass the focus to its children or not. The default value is true
*/
bool isPassFocusToChild()const;
/**
* When a widget is in a layout, you could call this method to get the next focused widget within a specified direction.
* If the widget is not in a layout, it will return itself
*@param direction the direction to look for the next focused widget in a layout
*@param current the current focused widget
*@return the next focused widget in a layout
*/
virtual Widget* findNextFocusedWidget(FocusDirection direction, Widget* current) override;
/**
* To specify a user-defined functor to decide which child widget of the layout should get focused
* @param FocusDirection the finding direction
* @param this previous focused widget
* @return return the index of widget in the layout
*/
std::function<int(FocusDirection, Widget*)> onPassFocusToChild;
/**
* Override function. Set camera mask, the node is visible by the camera whose camera flag & node's camera mask is true.
* @param mask Mask being set
* @param applyChildren If true call this function recursively from this node to its children.
*/
virtual void setCameraMask(unsigned short mask, bool applyChildren = true) override;
ResourceData getRenderFile();
CC_CONSTRUCTOR_ACCESS:
//override "init" method of widget.
virtual bool init() override;
protected:
//override "onSizeChanged" method of widget.
virtual void onSizeChanged() override;
//init background image renderer.
void addBackGroundImage();
void supplyTheLayoutParameterLackToChild(Widget* child);
virtual Widget* createCloneInstance() override;
virtual void copySpecialProperties(Widget* model) override;
virtual void copyClonedWidgetChildren(Widget* model) override;
void stencilClippingVisit(Renderer *renderer, const Mat4 &parentTransform, uint32_t parentFlags);
void scissorClippingVisit(Renderer *renderer, const Mat4 &parentTransform, uint32_t parentFlags);
void setStencilClippingSize(const Size& size);
const Rect& getClippingRect();
virtual void doLayout()override;
virtual LayoutManager* createLayoutManager()override;
virtual Size getLayoutContentSize()const override;
virtual const Vector<Node*>& getLayoutElements()const override;
//clipping
void onBeforeVisitScissor();
void onAfterVisitScissor();
void updateBackGroundImageColor();
void updateBackGroundImageOpacity();
void updateBackGroundImageRGBA();
/**
*get the content size of the layout, it will accumulate all its children's content size
*/
Size getLayoutAccumulatedSize() const;
/**
* When the layout get focused, it the layout pass the focus to its child, it will use this method to determine which child
* will get the focus. The current algorithm to determine which child will get focus is nearest-distance-priority algorithm
*@param direction The next focused widget direction
*@return The index of child widget in the container
*/
int findNearestChildWidgetIndex(FocusDirection direction, Widget* baseWidget);
/**
* When the layout get focused, it the layout pass the focus to its child, it will use this method to determine which child
* will get the focus. The current algorithm to determine which child will get focus is farthest-distance-priority algorithm
*@param direction The next focused widget direction
*@return The index of child widget in the container
*/
int findFarthestChildWidgetIndex(FocusDirection direction, Widget* baseWidget);
/**
* calculate the nearest distance between the baseWidget and the children of the layout
*@param the base widget which will be used to calculate the distance between the layout's children and itself
*@return return the nearest distance between the baseWidget and the layout's children
*/
float calculateNearestDistance(Widget* baseWidget);
/**
* calculate the farthest distance between the baseWidget and the children of the layout
*@param the base widget which will be used to calculate the distance between the layout's children and itself
*@return return the farthest distance between the baseWidget and the layout's children
*/
float calculateFarthestDistance(Widget* baseWidget);
/**
* when a layout pass the focus to it's child, use this method to determine which algorithm to use, nearest or farthest distance algorithm or not
*/
void findProperSearchingFunctor(FocusDirection dir, Widget* baseWidget);
/**
* find the first non-layout widget in this layout
*/
Widget *findFirstNonLayoutWidget();
/**
* find the first focus enabled widget index in the layout, it will recursive searching the child widget
*/
int findFirstFocusEnabledWidgetIndex();
/**
* find a focus enabled child Widget in the layout by index
*/
Widget* findFocusEnabledChildWidgetByIndex(ssize_t index);
/**
* get the center point of a widget in world space
*/
Vec2 getWorldCenterPoint(Widget* node)const;
/**
* this method is called internally by nextFocusedWidget. When the dir is Right/Down, then this method will be called
*@param direction the direction.
*@param current the current focused widget
*@return the next focused widget
*/
Widget* getNextFocusedWidget(FocusDirection direction,Widget *current);
/**
* this method is called internally by nextFocusedWidget. When the dir is Left/Up, then this method will be called
*@param direction the direction.
*@param current the current focused widget
*@return the next focused widget
*/
Widget* getPreviousFocusedWidget(FocusDirection direction, Widget *current);
/**
* find the nth element in the _children array. Only the Widget descendant object will be returned
*@param index The index of a element in the _children array
*/
Widget* getChildWidgetByIndex(ssize_t index)const;
/**
* whether it is the last element according to all their parents
*/
bool isLastWidgetInContainer(Widget* widget, FocusDirection direction)const;
/**Lookup any parent widget with a layout type as the direction,
* if the layout is loop focused, then return true, otherwise
* It returns false
*/
bool isWidgetAncestorSupportLoopFocus(Widget* widget, FocusDirection direction)const;
/**
* pass the focus to the layout's next focus enabled child
*/
Widget* passFocusToChild(FocusDirection direction, Widget* current);
/**
* If there are no focus enabled child in the layout, it will return false, otherwise it returns true
*/
bool checkFocusEnabledChild()const;
protected:
//background
bool _backGroundScale9Enabled;
Scale9Sprite* _backGroundImage;
std::string _backGroundImageFileName;
Rect _backGroundImageCapInsets;
BackGroundColorType _colorType;
TextureResType _bgImageTexType;
Size _backGroundImageTextureSize;
Color3B _backGroundImageColor;
uint8_t _backGroundImageOpacity;
LayerColor* _colorRender;
LayerGradient* _gradientRender;
Color3B _cColor;
Color3B _gStartColor;
Color3B _gEndColor;
Vec2 _alongVector;
uint8_t _cOpacity;
//clipping
bool _clippingEnabled;
Type _layoutType;
ClippingType _clippingType;
DrawNode* _clippingStencil;
bool _scissorOldState;
Rect _clippingOldRect;
Rect _clippingRect;
Layout* _clippingParent;
bool _clippingRectDirty;
//clipping
StencilStateManager *_stencilStateManager;
GroupCommand _groupCommand;
CallbackCommand _beforeVisitCmdStencil;
CallbackCommand _afterDrawStencilCmd;
CallbackCommand _afterVisitCmdStencil;
CallbackCommand _beforeVisitCmdScissor;
CallbackCommand _afterVisitCmdScissor;
bool _doLayoutDirty;
bool _isInterceptTouch;
//whether enable loop focus or not
bool _loopFocus;
//on default, it will pass the focus to the next nearest widget
bool _passFocusToChild;
//when finding the next focused widget, use this variable to pass focus between layout & widget
bool _isFocusPassing;
};
}
NS_CC_END
// end of ui group
/// @}
#endif /* defined(__Layout__) */