From 5c20a16fb283209f7d512c18a5253139b2c79015 Mon Sep 17 00:00:00 2001 From: Richard Huang Date: Wed, 24 Jun 2020 12:17:24 +0100 Subject: [PATCH] Move some public apis in toolkit to devel --- examples/animated-images/animated-images-example.cpp | 1 + examples/animated-vector-images/animated-vector-images-example.cpp | 1 + examples/bezier-curve/bezier-curve-example.cpp | 1 + examples/buttons/buttons-example.cpp | 1 + examples/clipping-draw-order/clipping-draw-order.cpp | 1 + examples/compressed-texture-formats/compressed-texture-formats-example.cpp | 1 + examples/focus-integration/focus-integration.cpp | 1 + examples/homescreen-benchmark/homescreen-benchmark.cpp | 1 + examples/image-policies/image-policies-example.cpp | 1 + examples/image-scaling-and-filtering/image-scaling-and-filtering-example.cpp | 1 + examples/image-scaling-irregular-grid/image-scaling-irregular-grid-example.cpp | 1 + examples/image-view/image-view-example.cpp | 1 + examples/line-mesh/line-mesh-example.cpp | 1 + examples/pivot/pivot-example.cpp | 1 + examples/popup/popup-example.cpp | 1 + examples/primitive-shapes/primitive-shapes-example.cpp | 1 + examples/progress-bar/progress-bar-example.cpp | 1 + examples/simple-visuals-control/simple-visuals-application.cpp | 1 + examples/size-negotiation/size-negotiation-example.cpp | 1 + examples/styling/styling-application.cpp | 1 + examples/text-editor/text-editor-example.cpp | 1 + examples/text-label-emojis/text-label-emojis.cpp | 1 + examples/text-label-multi-language/text-label-multi-language-example.cpp | 1 + examples/transitions/transition-application.cpp | 1 + examples/visual-transitions/transition-application.cpp | 1 + shared/dali-table-view.cpp | 2 ++ 26 files changed, 27 insertions(+), 0 deletions(-) diff --git a/examples/animated-images/animated-images-example.cpp b/examples/animated-images/animated-images-example.cpp index 63e1835..153d202 100644 --- a/examples/animated-images/animated-images-example.cpp +++ b/examples/animated-images/animated-images-example.cpp @@ -17,6 +17,7 @@ #include #include +#include #include using namespace Dali; diff --git a/examples/animated-vector-images/animated-vector-images-example.cpp b/examples/animated-vector-images/animated-vector-images-example.cpp index 0610b79..bbcd57e 100644 --- a/examples/animated-vector-images/animated-vector-images-example.cpp +++ b/examples/animated-vector-images/animated-vector-images-example.cpp @@ -20,6 +20,7 @@ #include #include #include +#include #include #include #include diff --git a/examples/bezier-curve/bezier-curve-example.cpp b/examples/bezier-curve/bezier-curve-example.cpp index 0761d03..b3e5a16 100644 --- a/examples/bezier-curve/bezier-curve-example.cpp +++ b/examples/bezier-curve/bezier-curve-example.cpp @@ -17,6 +17,7 @@ #include #include +#include #include "shared/view.h" #include diff --git a/examples/buttons/buttons-example.cpp b/examples/buttons/buttons-example.cpp index a0fae8d..649b417 100644 --- a/examples/buttons/buttons-example.cpp +++ b/examples/buttons/buttons-example.cpp @@ -18,6 +18,7 @@ #include "shared/view.h" #include #include +#include using namespace Dali; diff --git a/examples/clipping-draw-order/clipping-draw-order.cpp b/examples/clipping-draw-order/clipping-draw-order.cpp index 7d08b63..efe0162 100644 --- a/examples/clipping-draw-order/clipping-draw-order.cpp +++ b/examples/clipping-draw-order/clipping-draw-order.cpp @@ -16,6 +16,7 @@ */ #include +#include using namespace Dali; using namespace Dali::Toolkit; diff --git a/examples/compressed-texture-formats/compressed-texture-formats-example.cpp b/examples/compressed-texture-formats/compressed-texture-formats-example.cpp index a62791e..2c0de1d 100644 --- a/examples/compressed-texture-formats/compressed-texture-formats-example.cpp +++ b/examples/compressed-texture-formats/compressed-texture-formats-example.cpp @@ -18,6 +18,7 @@ // EXTERNAL INCLUDES #include #include +#include // INTERNAL INCLUDES #include "shared/utility.h" diff --git a/examples/focus-integration/focus-integration.cpp b/examples/focus-integration/focus-integration.cpp index 841930c..c439e17 100644 --- a/examples/focus-integration/focus-integration.cpp +++ b/examples/focus-integration/focus-integration.cpp @@ -17,6 +17,7 @@ #include "shared/view.h" #include +#include using namespace Dali; using namespace Dali::Toolkit; diff --git a/examples/homescreen-benchmark/homescreen-benchmark.cpp b/examples/homescreen-benchmark/homescreen-benchmark.cpp index e9dab7d..daf5233 100644 --- a/examples/homescreen-benchmark/homescreen-benchmark.cpp +++ b/examples/homescreen-benchmark/homescreen-benchmark.cpp @@ -21,6 +21,7 @@ #include #include +#include #include using namespace Dali; diff --git a/examples/image-policies/image-policies-example.cpp b/examples/image-policies/image-policies-example.cpp index 8860ef0..28c8022 100644 --- a/examples/image-policies/image-policies-example.cpp +++ b/examples/image-policies/image-policies-example.cpp @@ -19,6 +19,7 @@ #include "shared/view.h" #include #include +#include #include #include #include diff --git a/examples/image-scaling-and-filtering/image-scaling-and-filtering-example.cpp b/examples/image-scaling-and-filtering/image-scaling-and-filtering-example.cpp index e5f17f3..a70b2db 100644 --- a/examples/image-scaling-and-filtering/image-scaling-and-filtering-example.cpp +++ b/examples/image-scaling-and-filtering/image-scaling-and-filtering-example.cpp @@ -19,6 +19,7 @@ #include #include #include +#include #include "shared/view.h" #include diff --git a/examples/image-scaling-irregular-grid/image-scaling-irregular-grid-example.cpp b/examples/image-scaling-irregular-grid/image-scaling-irregular-grid-example.cpp index f4b81bd..2e95068 100644 --- a/examples/image-scaling-irregular-grid/image-scaling-irregular-grid-example.cpp +++ b/examples/image-scaling-irregular-grid/image-scaling-irregular-grid-example.cpp @@ -47,6 +47,7 @@ #include #include #include +#include // INTERNAL INCLUDES #include "grid-flags.h" diff --git a/examples/image-view/image-view-example.cpp b/examples/image-view/image-view-example.cpp index f7c1797..69cc423 100644 --- a/examples/image-view/image-view-example.cpp +++ b/examples/image-view/image-view-example.cpp @@ -19,6 +19,7 @@ #include "shared/view.h" #include #include +#include #include #include #include diff --git a/examples/line-mesh/line-mesh-example.cpp b/examples/line-mesh/line-mesh-example.cpp index 1d845af..99f3009 100644 --- a/examples/line-mesh/line-mesh-example.cpp +++ b/examples/line-mesh/line-mesh-example.cpp @@ -18,6 +18,7 @@ // EXTERNAL INCLUDES #include #include +#include // INTERNAL INCLUDES #include "shared/view.h" diff --git a/examples/pivot/pivot-example.cpp b/examples/pivot/pivot-example.cpp index 707557f..4d0aa57 100644 --- a/examples/pivot/pivot-example.cpp +++ b/examples/pivot/pivot-example.cpp @@ -16,6 +16,7 @@ */ #include +#include #include #include diff --git a/examples/popup/popup-example.cpp b/examples/popup/popup-example.cpp index 41471a2..a901b29 100644 --- a/examples/popup/popup-example.cpp +++ b/examples/popup/popup-example.cpp @@ -19,6 +19,7 @@ #include #include #include +#include using namespace Dali; diff --git a/examples/primitive-shapes/primitive-shapes-example.cpp b/examples/primitive-shapes/primitive-shapes-example.cpp index 83cb06e..361e976 100644 --- a/examples/primitive-shapes/primitive-shapes-example.cpp +++ b/examples/primitive-shapes/primitive-shapes-example.cpp @@ -16,6 +16,7 @@ */ #include +#include using namespace Dali; using namespace Dali::Toolkit; diff --git a/examples/progress-bar/progress-bar-example.cpp b/examples/progress-bar/progress-bar-example.cpp index 241fbfe..12cb027 100644 --- a/examples/progress-bar/progress-bar-example.cpp +++ b/examples/progress-bar/progress-bar-example.cpp @@ -18,6 +18,7 @@ #include "shared/view.h" #include #include +#include using namespace Dali; using namespace Dali::Toolkit; diff --git a/examples/simple-visuals-control/simple-visuals-application.cpp b/examples/simple-visuals-control/simple-visuals-application.cpp index 749d5be..73e4b4c 100644 --- a/examples/simple-visuals-control/simple-visuals-application.cpp +++ b/examples/simple-visuals-control/simple-visuals-application.cpp @@ -19,6 +19,7 @@ // EXTERNAL INCLUDES #include +#include #include #include #include diff --git a/examples/size-negotiation/size-negotiation-example.cpp b/examples/size-negotiation/size-negotiation-example.cpp index dab5447..a1ad2d5 100644 --- a/examples/size-negotiation/size-negotiation-example.cpp +++ b/examples/size-negotiation/size-negotiation-example.cpp @@ -19,6 +19,7 @@ #include #include #include +#include #include using namespace Dali; diff --git a/examples/styling/styling-application.cpp b/examples/styling/styling-application.cpp index 24d4f9e..def54fb 100644 --- a/examples/styling/styling-application.cpp +++ b/examples/styling/styling-application.cpp @@ -26,6 +26,7 @@ #include #include #include +#include #include "image-channel-control.h" #include #include diff --git a/examples/text-editor/text-editor-example.cpp b/examples/text-editor/text-editor-example.cpp index 4183daa..e589ed0 100644 --- a/examples/text-editor/text-editor-example.cpp +++ b/examples/text-editor/text-editor-example.cpp @@ -22,6 +22,7 @@ // EXTERNAL INCLUDES #include +#include #include // INTERNAL INCLUDES diff --git a/examples/text-label-emojis/text-label-emojis.cpp b/examples/text-label-emojis/text-label-emojis.cpp index 8ae9bf1..b35e025 100644 --- a/examples/text-label-emojis/text-label-emojis.cpp +++ b/examples/text-label-emojis/text-label-emojis.cpp @@ -17,6 +17,7 @@ // EXTERNAL INCLUDES #include +#include #include // INTERNAL INCLUDES diff --git a/examples/text-label-multi-language/text-label-multi-language-example.cpp b/examples/text-label-multi-language/text-label-multi-language-example.cpp index 24f6926..b5100ce 100644 --- a/examples/text-label-multi-language/text-label-multi-language-example.cpp +++ b/examples/text-label-multi-language/text-label-multi-language-example.cpp @@ -22,6 +22,7 @@ // EXTERNAL INCLUDES #include +#include // INTERNAL INCLUDES #include "shared/multi-language-strings.h" diff --git a/examples/transitions/transition-application.cpp b/examples/transitions/transition-application.cpp index 0e5acd4..08f9687 100644 --- a/examples/transitions/transition-application.cpp +++ b/examples/transitions/transition-application.cpp @@ -25,6 +25,7 @@ // External includes #include #include +#include #include "shadow-button.h" #include #include diff --git a/examples/visual-transitions/transition-application.cpp b/examples/visual-transitions/transition-application.cpp index 4802537..39d8711 100644 --- a/examples/visual-transitions/transition-application.cpp +++ b/examples/visual-transitions/transition-application.cpp @@ -27,6 +27,7 @@ #include "beat-control.h" #include #include +#include // Internal includes diff --git a/shared/dali-table-view.cpp b/shared/dali-table-view.cpp index f43e680..be6a1d4 100644 --- a/shared/dali-table-view.cpp +++ b/shared/dali-table-view.cpp @@ -26,6 +26,8 @@ #include #include #include +#include +#include // INTERNAL INCLUDES #include "shared/execute-process.h" -- libgit2 0.21.4