X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fcontrols%2Fview%2Fview.h;h=5138266d06e766c94c717875ff82d8da0df08a16;hb=ee3bdc95f623f41feb37be10f21bef1d9da1e805;hp=08826c0b7e9cd0770b833f64766bcf05681d6ccd;hpb=e2eda444afbe82e9591fe198eef339227f90a616;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/public-api/controls/view/view.h b/dali-toolkit/public-api/controls/view/view.h index 08826c0..5138266 100644 --- a/dali-toolkit/public-api/controls/view/view.h +++ b/dali-toolkit/public-api/controls/view/view.h @@ -1,33 +1,32 @@ #ifndef __DALI_TOOLKIT_VIEW_H__ #define __DALI_TOOLKIT_VIEW_H__ -// -// Copyright (c) 2014 Samsung Electronics Co., Ltd. -// -// Licensed under the Flora License, Version 1.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://floralicense.org/license/ -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an AS IS BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// +/* + * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +// EXTERNAL INCLUDES +#include +#include // INTERNAL INCLUDES #include -namespace Dali DALI_IMPORT_API -{ - -namespace Internal DALI_INTERNAL +namespace Dali { -// Forward declarations -class CustomActor; -} namespace Toolkit { @@ -73,12 +72,15 @@ class View; * contentLayer.ApplyConstraint( ParentConstraint::Size::New( ParentSize() ) ); * view.AddContentLayer( contentLayer ); * \endcode + * + * Signals + * | %Signal Name | Method | + * |-----------------------------|------------------------------------------| + * | orientation-animation-start | @ref OrientationAnimationStartedSignal() | + */ -class View : public Control +class DALI_IMPORT_API View : public Control { -public: - //Signal Names - static const char* const SIGNAL_ORIENTATION_ANIMATION_START; public: @@ -100,9 +102,11 @@ public: View& operator=( const View& handle ); /** - * virtual Destructor. + * @brief Destructor + * + * This is non-virtual since derived Handle types must not contain data or virtual methods. */ - virtual ~View(); + ~View(); /** * Create an initialized View. @@ -186,12 +190,12 @@ public: public: //Signals // Orientation change animation starts. - typedef SignalV2< void ( View, Animation&, const Orientation& ) > OrientationAnimationStartedSignalV2; + typedef Signal< void ( View, Animation&, const Orientation& ) > OrientationAnimationStartedSignalType; /** * Signal emitted just before the rotate animation starts when the device orientation changes. */ - OrientationAnimationStartedSignalV2& OrientationAnimationStartedSignal(); + OrientationAnimationStartedSignalType& OrientationAnimationStartedSignal(); public: // Not intended for application developers @@ -199,16 +203,15 @@ public: // Not intended for application developers * Creates a handle using the Toolkit::Internal implementation. * @param[in] implementation The Control implementation. */ - View( Internal::View& implementation ); + DALI_INTERNAL View( Internal::View& implementation ); /** * Allows the creation of this Control from an Internal::CustomActor pointer. * @param[in] internal A pointer to the internal CustomActor. */ - View( Dali::Internal::CustomActor* internal ); + explicit DALI_INTERNAL View( Dali::Internal::CustomActor* internal ); }; - } // namespace Toolkit } // namespace Dali