viewmgr: Fix indentation. 35/59835/2
authorWoochan Lee <wc0917.lee@samsung.com>
Fri, 19 Feb 2016 02:32:51 +0000 (11:32 +0900)
committerwoochan lee <wc0917.lee@samsung.com>
Fri, 19 Feb 2016 02:53:13 +0000 (18:53 -0800)
Change-Id: I515e95c577c3add284989b732a4870e98a270b7d

src/interface/ui_viewmgr_base.h

index d00d4ea79e13cb75ab992f7b2c8749544b97fd6c..52c6513fe614605bd536c08401186bdf5a9b20df 100644 (file)
@@ -46,63 +46,62 @@ private:
        bool soft_back_key;  //If system doesn't support HW back key, then this value is true.
 
        /**
-        *      @brief link a given view to this viewmgr.
+        *  @brief link a given view to this viewmgr.
         *
         *  @param view a view to connect to this viewmgr.
         *  @return success or not.
         *
-        *      @note This is s a friend function of ui_view_base
+        *  @note This is s a friend function of ui_view_base
         */
        bool connect_view(ui_view_base *view);
 
        /**
-        *      @brief unlink a given view from this viewmgr.
+        *  @brief unlink a given view from this viewmgr.
         *
         *  @param view a view to disconnect from this viewmgr.
         *  @return @c true success or @c false not.
         *
-        *      @note This is s a friend function of ui_view_base
+        *  @note This is s a friend function of ui_view_base
         */
        bool disconnect_view(ui_view_base *view);
 
        /**
-        *      @brief toggle event blocking to the given view.
+        *  @brief toggle event blocking to the given view.
         *
         *  @param view a view to toggle event blocking
         *  @param block @c true is block event, otherwise @c false.
         *
-        *      @note This is s a friend function of ui_view_base
+        *  @note This is s a friend function of ui_view_base
         */
        void set_event_block(ui_view_base *view, bool block);
 
 protected:
        /**
-        *      @brief This function is designed for end of push transition.
+        *  @brief This function is designed for end of push transition.
         *
         *  @param view view which is finished pushing.
         *  @return @c true success or @c false not.
         *
         *  @warning This function must be called definitely when push transition is finished.
-        *      @note This is s a friend function of ui_view_base
+        *  @note This is s a friend function of ui_view_base
         */
        bool push_view_finished(ui_view_base *view);
 
        /**
-        *      @brief This function is designed for end of pop transition.
+        *  @brief This function is designed for end of pop transition.
         *
-        *      @param view view which is finished popping.
+        *  @param view view which is finished popping.
         *  @return @c true success or @c false not.
         *
         *  @warning This function must be called definitely when push transition is finished.
-        *      @note This is s a friend function of ui_view_base
+        *  @note This is s a friend function of ui_view_base
         */
        bool pop_view_finished(ui_view_base *view);
 
        /**
-        *      @brief Return a list of views which this viewmgr has.
+        *  @brief Return a list of views which this viewmgr has.
         *
         *  @return a pointer of list of views.
-        *
         */
        const list<ui_view_base*>* const get_view_list()
        {
@@ -110,8 +109,8 @@ protected:
        }
 
        /**
-        *      @brief Push a new view into the viewmgr stack.
-        *             This function is used for application switches the current view to a new one.
+        *  @brief Push a new view into the viewmgr stack.
+        *         This function is used for application switches the current view to a new one.
         *
         *  @note Normally, the current view will be hidden by a new view.
         *  @return @c true on success, @c false otherwise.
@@ -119,19 +118,19 @@ protected:
        ui_view_base *push_view(ui_view_base *view);
 
        /**
-        *      @brief Pop the top view from the viewmgr stack.
-        *             This function is used for application switches the current view back to the previous view.
-        *             The top view will be removed from the view stack and then it will be deleted by the viewmgr.
+        *  @brief Pop the top view from the viewmgr stack.
+        *         This function is used for application switches the current view back to the previous view.
+        *         The top view will be removed from the view stack and then it will be deleted by the viewmgr.
         *
-        *      @note If the view is just one left, then viewmgr would be destroyed since the application might be terminated.
-        *            But this behavior is optional.
+        *  @note If the view is just one left, then viewmgr would be destroyed since the application might be terminated.
+        *        But this behavior is optional.
         *
         *  @return A view pointer which was popped. If it's failed to pop, @c NULL will be returned.
         */
        bool pop_view();
 
        /**
-        *      @brief Insert a view into this viewmgr stack. Specially, right before of the given view, @before
+        *  @brief Insert a view into this viewmgr stack. Specially, right before of the given view, @before
         *
         *  @param view a view to push into the viewmgr stack
         *  @param before a view that will be just after the @c view.
@@ -141,7 +140,7 @@ protected:
        bool insert_view_before(ui_view_base *view, ui_view_base *before);
 
        /**
-        *      @brief Insert a view into this viewmgr stack. Specially, right after of the given view, @after
+        *  @brief Insert a view into this viewmgr stack. Specially, right after of the given view, @after
         *
         *  @param view a view to push into the viewmgr stack
         *  @param after a view that will be just before the @c view.
@@ -151,7 +150,7 @@ protected:
        bool insert_view_after(ui_view_base *view, ui_view_base *after);
 
        /**
-        *      @brief Remove the given view from this viewmgr stack.
+        *  @brief Remove the given view from this viewmgr stack.
         *
         *  @return @c true on success or @c false if not.
         *
@@ -159,8 +158,8 @@ protected:
        bool remove_view(ui_view_base *view);
 
        /**
-        *      @brief Return a stack index number of the given view.
-        *             You could use this function to query the given view stack order.
+        *  @brief Return a stack index number of the given view.
+        *         You could use this function to query the given view stack order.
         *
         *  @param idx a view to query the index.
         *  @return an index of the give view.
@@ -171,7 +170,7 @@ protected:
        ui_view_base* get_view(unsigned int idx);
 
        /**
-        *      @brief Return a view which is matched with the @c name.
+        *  @brief Return a view which is matched with the @c name.
         *
         *  @param name the name of the view which you find.
         *  @return the view which name is matched with @c name.
@@ -188,8 +187,8 @@ protected:
        ui_view_base *get_last_view();
 
        /**
-        *      @brief Return a stack index number of the given view.
-        *             You could use this function to query the given view stack order.
+        *  @brief Return a stack index number of the given view.
+        *         You could use this function to query the given view stack order.
         *
         *  @param a view to query the index.
         *  @return an index of the give view on success, otherwise, -1.
@@ -212,7 +211,7 @@ public:
        virtual ~ui_viewmgr_base();
 
        /**
-        *      @brief Return the number of views which this viewmgr has.
+        *  @brief Return the number of views which this viewmgr has.
         *
         *  @return the number of view
         *
@@ -223,7 +222,7 @@ public:
        }
 
        /**
-        *      @brief Return the active status of viewmgr.
+        *  @brief Return the active status of viewmgr.
         *
         *  @return active status
         *
@@ -234,7 +233,7 @@ public:
        }
 
        /**
-        *      @brief Return the whether software back key need or not.
+        *  @brief Return the whether software back key need or not.
         *
         *  @return whether need software back key.
         *