antognolli pushed a commit to branch master.

commit 7bb93fddd659efa4bfe2ce1b33f5beef43905b44
Author: Rafael Antognolli <[email protected]>
Date:   Mon Mar 25 14:50:12 2013 -0300

    elementary: Bring back the use of Evas framespace.
    
    Use the evas_output_framespace_* functions to make objects inside the
    framespace to get their respective offsets.
---
 src/lib/elm_win.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c
index ee1aa5b..486c56f 100644
--- a/src/lib/elm_win.c
+++ b/src/lib/elm_win.c
@@ -60,7 +60,6 @@ struct _Elm_Win_Smart_Data
    Evas_Object          *img_obj, *frame_obj;
    Eo                   *layout;
    Eo                   *box;
-   Evas_Coord           fx, fy, fw, fh;
    Evas_Object          *obj; /* The object itself */
 #ifdef HAVE_ELEMENTARY_X
    struct
@@ -611,7 +610,12 @@ _elm_win_resize_job(void *data)
      }
 
    if (sd->frame_obj)
-     evas_object_resize(sd->frame_obj, w, h);
+     {
+        int fw, fh;
+
+        evas_output_framespace_get(sd->evas, NULL, NULL, &fw, &fh);
+        evas_object_resize(sd->frame_obj, w + fw, h + fh);
+     }
 
    evas_object_resize(sd->obj, w, h);
    evas_object_resize(sd->layout, w, h);
@@ -2269,11 +2273,7 @@ _elm_win_frame_add(Elm_Win_Smart_Data *sd,
    short layer;
 
    // FIXME: Don't use hardcoded framespace values, get it from theme
-   sd->fx = 0;
-   sd->fy = 22;
-   sd->fw = 0;
-   sd->fh = 26;
-
+   evas_output_framespace_set(sd->evas, 0, 22, 0, 26);
    sd->frame_obj = edje_object_add(sd->evas);
    layer = evas_object_layer_get(obj);
    evas_object_layer_set(sd->frame_obj, layer + 1);

-- 

------------------------------------------------------------------------------
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire 
the most talented Cisco Certified professionals. Visit the 
Employer Resources Portal
http://www.cisco.com/web/learning/employer_resources/index.html

Reply via email to