diff options
author | Jiyoun Park <jijibe99@gmail.com> | 2011-10-31 10:46:35 +0000 |
---|---|---|
committer | Jiyoun Park <jijibe99@gmail.com> | 2011-10-31 10:46:35 +0000 |
commit | 8edcfacd3f7386d34144762aced4a6e82d37ddb2 (patch) | |
tree | 08e4923e19d9423ff0f64fe1b6b8a9b2088da26a /legacy/ecore/src/lib/ecore_evas/ecore_evas_wince.c | |
parent | 169ffa5fcdffbb6a0a224bec5cbdec035710bae4 (diff) |
Implement ee's req value to other windowing system.
currently only x windowing system implement this value.
SVN revision: 64554
Diffstat (limited to '')
-rw-r--r-- | legacy/ecore/src/lib/ecore_evas/ecore_evas_wince.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/legacy/ecore/src/lib/ecore_evas/ecore_evas_wince.c b/legacy/ecore/src/lib/ecore_evas/ecore_evas_wince.c index ee8387b2a4..216e85d414 100644 --- a/legacy/ecore/src/lib/ecore_evas/ecore_evas_wince.c +++ b/legacy/ecore/src/lib/ecore_evas/ecore_evas_wince.c | |||
@@ -314,6 +314,8 @@ static void | |||
314 | _ecore_evas_wince_move(Ecore_Evas *ee, int x, int y) | 314 | _ecore_evas_wince_move(Ecore_Evas *ee, int x, int y) |
315 | { | 315 | { |
316 | INF("ecore evas move (%dx%d)", x, y); | 316 | INF("ecore evas move (%dx%d)", x, y); |
317 | ee->req.x = x; | ||
318 | ee->req.y = y; | ||
317 | 319 | ||
318 | if ((x != ee->x) || (y != ee->y)) | 320 | if ((x != ee->x) || (y != ee->y)) |
319 | { | 321 | { |
@@ -328,6 +330,8 @@ static void | |||
328 | _ecore_evas_wince_resize(Ecore_Evas *ee, int width, int height) | 330 | _ecore_evas_wince_resize(Ecore_Evas *ee, int width, int height) |
329 | { | 331 | { |
330 | INF("ecore evas resize (%dx%d)", width, height); | 332 | INF("ecore evas resize (%dx%d)", width, height); |
333 | ee->req.w = width; | ||
334 | ee->req.h = height; | ||
331 | 335 | ||
332 | if ((ee->w != width) || (ee->h != height)) | 336 | if ((ee->w != width) || (ee->h != height)) |
333 | { | 337 | { |
@@ -354,6 +358,10 @@ static void | |||
354 | _ecore_evas_wince_move_resize(Ecore_Evas *ee, int x, int y, int width, int height) | 358 | _ecore_evas_wince_move_resize(Ecore_Evas *ee, int x, int y, int width, int height) |
355 | { | 359 | { |
356 | INF("ecore evas resize (%dx%d %dx%d)", x, y, width, height); | 360 | INF("ecore evas resize (%dx%d %dx%d)", x, y, width, height); |
361 | ee->req.x = x; | ||
362 | ee->req.y = y; | ||
363 | ee->req.w = width; | ||
364 | ee->req.h = height; | ||
357 | 365 | ||
358 | if ((ee->w != width) || (ee->h != height) || (x != ee->x) || (y != ee->y)) | 366 | if ((ee->w != width) || (ee->h != height) || (x != ee->x) || (y != ee->y)) |
359 | { | 367 | { |
@@ -773,6 +781,10 @@ ecore_evas_software_wince_new_internal(int backend, | |||
773 | ee->y = y; | 781 | ee->y = y; |
774 | ee->w = width; | 782 | ee->w = width; |
775 | ee->h = height; | 783 | ee->h = height; |
784 | ee->req.x = ee->x; | ||
785 | ee->req.y = ee->y; | ||
786 | ee->req.w = ee->w; | ||
787 | ee->req.h = ee->h; | ||
776 | 788 | ||
777 | ee->prop.max.w = 32767; | 789 | ee->prop.max.w = 32767; |
778 | ee->prop.max.h = 32767; | 790 | ee->prop.max.h = 32767; |