fix formatting
authorJihoon Kim <jihoon48.kim@samsung.com>
Mon, 26 Jul 2010 00:52:37 +0000 (09:52 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Mon, 26 Jul 2010 00:52:37 +0000 (09:52 +0900)
src/lib/Elementary.h.in

index 5042096..63420af 100755 (executable)
@@ -1273,7 +1273,7 @@ extern "C" {
    EAPI Evas_Object *elm_pager_content_bottom_get(const Evas_Object *obj);
    EAPI Evas_Object *elm_pager_content_top_get(const Evas_Object *obj);
    EAPI void         elm_pager_animation_set(Evas_Object *obj, Eina_Bool animation);
-  /* available item styles:
+   /* available item styles:
     * default
     * fade
     * fade_translucide
@@ -1792,7 +1792,7 @@ extern "C" {
     * default
     */
 
-    /* titlebar */
+   /* titlebar */
    EAPI Evas_Object *elm_titlebar_add(Evas_Object *parent);
    EAPI void         elm_titlebar_label_set(Evas_Object *obj, const char *label);
    EAPI const char  *elm_titlebar_label_get(Evas_Object *obj);
@@ -1849,6 +1849,7 @@ extern "C" {
    EAPI void         elm_popup_response(Evas_Object *obj, int  response_id);
    EAPI void         elm_popup_orient_set(Evas_Object *obj, Elm_Popup_Orient orient);
    EAPI void         elm_popup_rotation_set(Evas_Object *obj, int rot_angle);
+
    /* Contextual Popup */
    typedef struct _Ctxpopup_Item Elm_Ctxpopup_Item;
 
@@ -1948,7 +1949,7 @@ extern "C" {
    EAPI Eina_Bool     elm_animator_operating_get(Elm_Animator *animator);
    EAPI unsigned int  elm_animator_repeat_get(Elm_Animator *animator);
 
-  /* tansit */
+   /* tansit */
    typedef struct _transit Elm_Transit;
    typedef struct _effect Elm_Effect;
 
@@ -1967,32 +1968,32 @@ extern "C" {
    EAPI void         elm_transit_fx_clear(Elm_Transit* transit);
    EAPI Eina_Bool    elm_transit_event_block_disabled_get(Elm_Transit* transit);
 
-   /*Translation FX*/  
+   /* Translation FX */
    EAPI Elm_Effect  *elm_fx_translation_add(Evas_Object* obj, Evas_Coord from_x, Evas_Coord from_y, Evas_Coord to_x, Evas_Coord to_y);
 
-   /*Resizing FX*/  
+   /* Resizing FX */
    EAPI Elm_Effect  *elm_fx_resizing_add(Evas_Object* obj, Evas_Coord from_w, Evas_Coord from_h, Evas_Coord to_w, Evas_Coord to_h);
 
-   /*Zoom Fx*/  
+   /* Zoom Fx */
    EAPI Elm_Effect  *elm_fx_zoom_add(Evas_Object* obj, float from_rate, float to_rate);
 
-   /*Flip Fx*/
+   /* Flip Fx */
    typedef enum {ELM_FX_FLIP_AXIS_X, ELM_FX_FLIP_AXIS_Y} Elm_Fx_Flip_Axis;
    EAPI Elm_Effect  *elm_fx_flip_add( Evas_Object* front, Evas_Object* back, Elm_Fx_Flip_Axis axis, Eina_Bool cw);
 
-   /*Blend Fx*/
+   /* Blend Fx */
    EAPI Elm_Effect  *elm_fx_blend_add(Evas_Object* before, Evas_Object* after);
 
-   /*Fade Fx*/
+   /* Fade Fx */
    EAPI Elm_Effect  *elm_fx_fade_add(Evas_Object* before, Evas_Object* after);
     
-   /*Rotation Fx*/
+   /* Rotation Fx */
    EAPI Elm_Effect  *elm_fx_rotation_add(Evas_Object* obj, float from_degree, float to_degree, Eina_Bool cw);
 
-   /*Color Fx*/
+   /* Color Fx */
    EAPI Elm_Effect  *elm_fx_color_add(Evas_Object* obj, unsigned int from_r, unsigned int from_g, unsigned int from_b, unsigned int from_a, unsigned int to_r, unsigned int to_g, unsigned int to_b, unsigned int to_a);
 
-   /*Wipe Fx*/
+   /* Wipe Fx */
    typedef enum 
      {
        ELM_FX_WIPE_DIR_LEFT, 
@@ -2007,7 +2008,7 @@ extern "C" {
      } Elm_Fx_Wipe_Type;
    EAPI Elm_Effect  *elm_fx_wipe_add(Evas_Object* obj, Elm_Fx_Wipe_Type type, Elm_Fx_Wipe_Dir dir);
 
-   /*ResizableFlip Fx*/
+   /* ResizableFlip Fx */
    EAPI Elm_Effect  *elm_fx_resizable_flip_add(Evas_Object* front, Evas_Object* back, Elm_Fx_Flip_Axis axis, Eina_Bool cw);
   
    /*Transform Fx*/
@@ -2175,19 +2176,19 @@ extern "C" {
 
 
    /* colorpalette */
-    typedef struct _Colorpalette_Color Elm_Colorpalette_Color; 
+   typedef struct _Colorpalette_Color Elm_Colorpalette_Color; 
 
-    struct _Colorpalette_Color 
-      {
-        unsigned int r, g, b;
-      };
+   struct _Colorpalette_Color 
+     {
+       unsigned int r, g, b;
+     };
 
-    EAPI Evas_Object *elm_colorpalette_add(Evas_Object *parent);
-    EAPI void         elm_colorpalette_color_set(Evas_Object *obj, int color_num, Elm_Colorpalette_Color *color);
-    EAPI void         elm_colorpalette_row_column_set(Evas_Object *obj, int row, int col);
-    /* smart callbacks called:
-     * "clicked" - when image clicked
-     */
+   EAPI Evas_Object *elm_colorpalette_add(Evas_Object *parent);
+   EAPI void         elm_colorpalette_color_set(Evas_Object *obj, int color_num, Elm_Colorpalette_Color *color);
+   EAPI void         elm_colorpalette_row_column_set(Evas_Object *obj, int row, int col);
+   /* smart callbacks called:
+    * "clicked" - when image clicked
+    */
 
    /* editfield */
    EAPI Evas_Object *elm_editfield_add(Evas_Object *parent);
@@ -2287,7 +2288,7 @@ extern "C" {
     * "down_clicked" - when down button of zoomcontrols is clicked
     */         
 
-   /*viewflipper*/
+   /* viewflipper */
    typedef enum _Elm_Viewflipper_Policy
      {
        ERROR_0  = -1,    //can not find wanted value
@@ -2362,7 +2363,7 @@ extern "C" {
    /* AnalogClock */
    EAPI Evas_Object *elm_analogclock_add(Evas_Object *parent);
 
-    /* ratingbar */
+   /* ratingbar */
    EAPI Evas_Object *elm_ratingbar_add(Evas_Object *parent);
    EAPI void         elm_ratingbar_rating_set(Evas_Object *obj, int rating);
    EAPI int          elm_ratingbar_rating_get(Evas_Object *obj);
@@ -2462,7 +2463,7 @@ extern "C" {
    EAPI Eina_Bool           elm_cabinet_item_sub_info_disabled_get(Elm_Cabinet_Item *item);
    EAPI void                elm_cabinet_item_sub_info_disabled_set(Elm_Cabinet_Item *item, Eina_Bool disabled);
 
-   /*Dayselector*/
+   /* Dayselector */
    typedef enum 
      { 
        ELM_DAYSELECTOR_SUN,