From 1d6b0ccffddbc454d742801129c77e50c4478eea Mon Sep 17 00:00:00 2001 From: Hyun Lee Date: Thu, 28 Mar 2013 15:04:01 +0900 Subject: [PATCH] Add floating point method to doxygen Change-Id: I367e7d94b66e4753cdacd7c0e8c8d1ccd85e6e5a Signed-off-by: Hyun Lee --- inc/FWebCtrlIWebUiEventListenerF.h | 14 +++++++------- inc/FWebCtrlWeb.h | 10 +++++----- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/inc/FWebCtrlIWebUiEventListenerF.h b/inc/FWebCtrlIWebUiEventListenerF.h index 57b8124..4e21604 100755 --- a/inc/FWebCtrlIWebUiEventListenerF.h +++ b/inc/FWebCtrlIWebUiEventListenerF.h @@ -15,7 +15,7 @@ // limitations under the License. // -/* +/** * @file FWebCtrlIWebUiEventListenerF.h * @brief This is the header file for the %IWebUiEventListenerF interface. * @@ -31,7 +31,7 @@ namespace Tizen { namespace Web { namespace Controls { -/* +/** * @interface IWebUiEventListenerF * @brief This interface is used for receiving user interface (UI) related events caused by the layout changes of a control. * @@ -44,14 +44,14 @@ class _OSP_EXPORT_ IWebUiEventListenerF : public virtual Tizen::Base::Runtime::IEventListener { public: - /* + /** * This polymorphic destructor should be overridden if required. This way, the destructors of the derived classes are called when the destructor of this interface is called. * * @since 2.1 */ virtual ~IWebUiEventListenerF (void) {} - /* + /** * Called when the layout of a page is updated. @n * The application must call Tizen::Ui::Control::Show() if the screen needs to be updated. * @@ -61,7 +61,7 @@ public: */ virtual void OnWebPageShowRequested(Tizen::Web::Controls::Web& source) = 0; - /* + /** * Called when a request for creating a new window is received. @n * The returned %Web control instance must be constructed by using a child window's Construct() method. * @@ -71,7 +71,7 @@ public: */ virtual Tizen::Web::Controls::Web* OnWebWindowCreateRequested(void) = 0; - /* + /** * Called when a request for closing the window is received. @n * This event is called from the parent window's listener that invoked the child window. @n * The application must free the resource allocated for the %Web Control. @@ -82,7 +82,7 @@ public: */ virtual void OnWebWindowCloseRequested(Tizen::Web::Controls::Web& source) = 0; - /* + /** * Called when the selected block of a page is updated. * * @since 2.1 diff --git a/inc/FWebCtrlWeb.h b/inc/FWebCtrlWeb.h index 19877a5..e37554b 100755 --- a/inc/FWebCtrlWeb.h +++ b/inc/FWebCtrlWeb.h @@ -159,7 +159,7 @@ public: */ result Construct(const Tizen::Graphics::Rectangle& rect); - /* + /** * Initializes this instance of the %Web control with the specified parameters. * * @since 2.1 @@ -400,7 +400,7 @@ public: */ Tizen::Web::Controls::HitElementResult* GetElementByPointN(const Tizen::Graphics::Point& point) const; - /* + /** * Gets the information of the element pointed by the specified coordinates. * * @since 2.1 @@ -528,7 +528,7 @@ public: */ result SetBlockSelectionPosition(const Tizen::Graphics::Point& startPoint); - /* + /** * Sets the starting point for the text selection block. @n * It sets the selection block around the nearest word bound. * @@ -565,7 +565,7 @@ public: */ result GetBlockRange(Tizen::Graphics::Point& startPoint, Tizen::Graphics::Point& endPoint) const; - /* + /** * Gets the starting point and the ending point of the selected text block. @n * When this method is called without the selection block, the startPoint and endPoint have (0.0,0.0) values for the x and y coordinates. * @@ -620,7 +620,7 @@ public: */ void SetWebUiEventListener(Tizen::Web::Controls::IWebUiEventListener* pUiEventListener); - /* + /** * Registers a user interface (UI) event listener. * * @since 2.1 -- 2.7.4