FillRect is used in many places for drawing the GUI. But one thing I think many developers miss is that it doesn't fill the right and bottom borders of the rectangle, very much like LineTo doesn't draw the destination point (as per the MSDN docs).
But when handling RECT structures we usually think about the objects, not how the objects are going to be painted on-screen. For example, if we wanted to draw a red rectangle at (10,10) with width of 50 pixels and height of 75 pixels, we do (assuming hdc and hbr is already set correctly):
RECT r; r.left = 10; r.top = 10; r.right = r.left + 50; r.bottom = r.top + 75; FillRect(hdc, &r, hbr);
This _will_ draw it all right, but there are conceptual errors: 1. The rectangle that we have here is not 50x75, but actually 51x76. But FillRect doesn't fill the right and bottom borders, so it appears correctly. 2. If we thought that FillRect fills the whole rectangle, then actually the above code doesn't do what we want; it should actually draw a 51x76 rectangle.
So I think we have to make helper functions:
RECT ToFill(RECT r) { ++r.right; ++r.bottom;
return r; }
RECT ToFillLP(LPRECT lpr) { RECT r = *lpr;
return ToFill(r); }
LPRECT LPToFill(RECT r) { ++r.right; ++r.bottom;
return &r; }
LPRECT LPToFillLP(LPRECT lpr) { RECT r = *lpr;
return LPToFill(r); }
So that: 1. Drawing with FillRect will be correct. 2. We can forget about FillRect's peculiar way of doing things. 3. We can concentrate on the actual rectangles.
So instead of the above code, we do:
RECT r; r.left = 10; r.top = 10; r.right = r.left + 50 - 1; r.bottom = r.top + 75 - 1; FillRect(hdc, LPToFill(r), hbr);
What do you all think?
Anyway, for LineTo we can just add "+ 1" at the arguments, no need for a helper function.
__________________________________ Do you Yahoo!? Take Yahoo! Mail with you! Get it on your mobile phone. http://mobile.yahoo.com/maildemo
Oops, they didn't work... I have to make them inline:
inline RECT ToFill(RECT r) { ++r.right; ++r.bottom;
return r; }
inline LPRECT LPToFill(RECT r) { ++r.right; ++r.bottom;
return &r; }
And I think these two functions suffice. But the question is, why do we have to make them inline? Why do the contents of r get scrambled up if we don't?
_______________________________ Do you Yahoo!? Declare Yourself - Register online to vote today! http://vote.yahoo.com
Le dim 24/10/2004 à 06:00, William Poetra Yoga H a écrit : [snip]
And I think these two functions suffice. But the question is, why do we have to make them inline? Why do the contents of r get scrambled up if we don't?
You're passing a struct by value. If you want the caller to have his structure to be modified, you need to pass it by ref.
Vincent
--- Vincent B�ron vberon@mecano.gme.usherb.ca wrote:
You're passing a struct by value. If you want the caller to have his structure to be modified, you need to pass it by ref.
Vincent
No, I don't want the original structure to be modified. I want to return a structure from the function, a structure different from the original one.
Anyway, I've dropped the idea (of the helper function), but I'm still wondering why I have to make it inline...
__________________________________ Do you Yahoo!? Yahoo! Mail Address AutoComplete - You start. We finish. http://promotions.yahoo.com/new_mail
On Sun, Oct 24, 2004 at 02:20:53AM -0700, William Poetra Yoga H wrote:
FillRect is used in many places for drawing the GUI. But one thing I think many developers miss is that it doesn't fill the right and bottom borders of the rectangle, very much like LineTo doesn't draw the destination point (as per the MSDN docs).
This is OK, the rect functions are consistent with the rest of the GUI functions (I would also add that not including the right and bottom borders is a good thing, but let's not debate that). Anyway, even if the standard APIs were awkward, in Wine we insist on using the standard stuff as much as possible, it's the best we can do long term. For many reasons. So no, adding such helper functions will not fly.
--- "Dimitrie O. Paun" dpaun@rogers.com wrote:
This is OK, the rect functions are consistent with the rest of the GUI functions (I would also add that not including the right and bottom borders is a good thing, but let's not debate that). Anyway, even if the standard APIs were awkward, in Wine we insist on using the standard stuff as much as possible, it's the best we can do long term. For many reasons. So no, adding such helper functions will not fly.
-- Dimi.
Um... OK, so the correct code is to add 1 to the sides, right? I mean, to draw the 50x75 rectangle we would do:
r.left = 10; r.top = 10; r.right = 61; r.bottom = 86;
FillRect(hdc, &r, hbr);
And for everything else when we have an x by y rectangle, we actually mean (x-1) by (y-1), is it OK to assume so? Am I correct?
_______________________________ Do you Yahoo!? Declare Yourself - Register online to vote today! http://vote.yahoo.com
William Poetra Yoga H williampoetra@yahoo.com writes:
Um... OK, so the correct code is to add 1 to the sides, right? I mean, to draw the 50x75 rectangle we would do:
r.left = 10; r.top = 10; r.right = 61; r.bottom = 86;
FillRect(hdc, &r, hbr);
And for everything else when we have an x by y rectangle, we actually mean (x-1) by (y-1), is it OK to assume so? Am I correct?
No, FillRect behaves exactly like every other function in that respect, you should never have to worry about adding/subtracting one. Your example above is going to fill a 51x76 rectangle, not a 50x75 one.
--- Alexandre Julliard julliard@winehq.org wrote:
William Poetra Yoga H williampoetra@yahoo.com writes:
Um... OK, so the correct code is to add 1 to the sides, right? I mean, to
draw
the 50x75 rectangle we would do:
r.left = 10; r.top = 10; r.right = 61; r.bottom = 86;
FillRect(hdc, &r, hbr);
No, FillRect behaves exactly like every other function in that respect, you should never have to worry about adding/subtracting one. Your example above is going to fill a 51x76 rectangle, not a 50x75 one.
Oh, so:
r.left = 10; r.top = 10; r.right = 60; r.bottom = 85; FillRect(hdc, &r, hbr);
And for everything else when we have an x by y rectangle, we actually mean (x-1) by (y-1), is it OK to assume so? Am I correct?
Will fill a 50x75 rectangle, with width of (60-10) and height of (85-10), am I correct here? And, is my second assumption correct, btw? I mean, x = r.right - r.left + 1 y = r.bottom - r.top + 1
_______________________________ Do you Yahoo!? Express yourself with Y! Messenger! Free. Download now. http://messenger.yahoo.com
William Poetra Yoga H williampoetra@yahoo.com writes:
Oh, so:
r.left = 10; r.top = 10; r.right = 60; r.bottom = 85; FillRect(hdc, &r, hbr);
And for everything else when we have an x by y rectangle, we actually mean (x-1) by (y-1), is it OK to assume so? Am I correct?
Will fill a 50x75 rectangle, with width of (60-10) and height of (85-10), am I correct here?
Yes.
And, is my second assumption correct, btw? I mean, x = r.right - r.left + 1 y = r.bottom - r.top + 1
I'm not sure what you mean, it seems you are trying to think too hard about it; just don't worry about doing +1/-1, that should never be an issue, just compute the limits the intuitive way. If you want an x by y rectangle, just set right = left + x and bottom = top + y and everything will behave properly.
--- Alexandre Julliard julliard@winehq.org wrote:
And, is my second assumption correct, btw? I mean, x = r.right - r.left + 1 y = r.bottom - r.top + 1
I'm not sure what you mean, it seems you are trying to think too hard about it; just don't worry about doing +1/-1, that should never be an issue, just compute the limits the intuitive way. If you want an x by y rectangle, just set right = left + x and bottom = top + y and everything will behave properly.
OK, so to fill the whole screen on an 1024x768 display, I'll set right = 1024 and bottom = 768. Thanks :)
__________________________________ Do you Yahoo!? Yahoo! Mail Address AutoComplete - You start. We finish. http://promotions.yahoo.com/new_mail