diff options
author | Sebastian Geerken <devnull@localhost> | 2015-07-10 23:48:04 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2015-07-10 23:48:04 +0200 |
commit | 78fd2d0793213a71746063e7c930586bd766b8c4 (patch) | |
tree | 6772a9aeb502758e608549572d73417e56fe2a52 | |
parent | 9610fb52086c39ab10c2979c79a98079745137da (diff) |
RTFL messages.
-rw-r--r-- | dw/textblock.cc | 2 | ||||
-rw-r--r-- | dw/tools.cc | 30 |
2 files changed, 28 insertions, 4 deletions
diff --git a/dw/textblock.cc b/dw/textblock.cc index 2086a7f4..7dea2048 100644 --- a/dw/textblock.cc +++ b/dw/textblock.cc @@ -548,7 +548,7 @@ void Textblock::notifySetParent () DBG_OBJ_SET_NUM ("numSizeReferences", numSizeReferences); for (int i = 0; i < numSizeReferences; i++) - DBG_OBJ_ARRSET_NUM ("sizeReferences", i, sizeReferences[i]); + DBG_OBJ_ARRSET_PTR ("sizeReferences", i, sizeReferences[i]); } void Textblock::sizeAllocateImpl (core::Allocation *allocation) diff --git a/dw/tools.cc b/dw/tools.cc index 9a998976..65734900 100644 --- a/dw/tools.cc +++ b/dw/tools.cc @@ -37,6 +37,8 @@ void SizeParams::cleanup () void SizeParams::fill (int numPos, Widget **references, int *x, int *y) { + DBG_OBJ_ENTER0 ("resize", 0, "fill"); + cleanup (); this->numPos = numPos; @@ -52,11 +54,16 @@ void SizeParams::fill (int numPos, Widget **references, int *x, int *y) } debugPrint (); + + DBG_OBJ_LEAVE (); } void SizeParams::forChild (Widget *parent, Widget *child, int xRel, int yRel, SizeParams *childParams) { + DBG_OBJ_ENTER ("resize", 0, "forChild", "%p, %p, %d, %d, %p", + parent, child, xRel, yRel, childParams); + int numChildReferences = child->numSizeRequestReferences (); childParams->numPos = 0; @@ -86,21 +93,38 @@ void SizeParams::forChild (Widget *parent, Widget *child, int xRel, int yRel, } childParams->debugPrint (); + + DBG_OBJ_LEAVE (); } bool SizeParams::findReference (Widget *reference, int *x, int *y) { - for (int i = 0; i < numPos; i++) { + DBG_OBJ_ENTER ("resize", 0, "findReference", "%p", reference); + + bool found = false; + for (int i = 0; i < numPos && !found; i++) { if (reference == references[i]) { if (x) *x = this->x[i]; if (y) *y = this->y[i]; - return true; + found = true; } } - return false; + if (found) { + if (x && y) + DBG_OBJ_LEAVE_VAL ("true, x = %d, y = %d", *x, *y); + else if (x) + DBG_OBJ_LEAVE_VAL ("true, x = %d", *x); + else if (y) + DBG_OBJ_LEAVE_VAL ("true, y = %d", *y); + else + DBG_OBJ_LEAVE_VAL ("%s", "true"); + } else + DBG_OBJ_LEAVE_VAL ("%s", "false"); + + return found; } |