Added images and checkboxes to rowHeight(). Split out the text part into textHeight(); we'll be needing it later (when implementing vertical centering).
This commit is contained in:
parent
22d82f6bd0
commit
422b2f183a
|
@ -1,7 +1,7 @@
|
|||
// 4 december 2014
|
||||
|
||||
// TODO find a better place for this
|
||||
static LONG rowHeight(struct table *t, HDC dc, BOOL select)
|
||||
// TODO find a better place for these
|
||||
static LONG textHeight(struct table *t, HDC dc, BOOL select)
|
||||
{
|
||||
BOOL release;
|
||||
HFONT prevfont, newfont;
|
||||
|
@ -26,6 +26,23 @@ static LONG rowHeight(struct table *t, HDC dc, BOOL select)
|
|||
return tm.tmHeight;
|
||||
}
|
||||
|
||||
#define tableImageWidth() GetSystemMetrics(SM_CXSMICON)
|
||||
#define tableImageHeight() GetSystemMetrics(SM_CYSMICON)
|
||||
|
||||
static LONG rowHeight(struct table *t, HDC dc, BOOL select)
|
||||
{
|
||||
LONG height;
|
||||
LONG tmHeight;
|
||||
|
||||
height = tableImageHeight(); // start with this to avoid two function calls
|
||||
tmHeight = textHeight(t, dc, select);
|
||||
if (height < tmHeight)
|
||||
height = tmHeight;
|
||||
if (height < t->checkboxHeight)
|
||||
height = t->checkboxHeight;
|
||||
return height;
|
||||
}
|
||||
|
||||
#define rowht(t) rowHeight(t, NULL, TRUE)
|
||||
|
||||
struct rowcol {
|
||||
|
|
Loading…
Reference in New Issue