1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-05 15:55:56 +01:00

- Made scrolling of text in dialog panel smoother

- Added WMGetPanelFont()
This commit is contained in:
dan
2001-02-26 14:51:17 +00:00
parent c720860ed3
commit 1a1775bae0
3 changed files with 49 additions and 13 deletions

View File

@@ -1037,6 +1037,8 @@ void WMSetLabelRelief(WMLabel *lPtr, WMReliefType relief);
void WMSetLabelText(WMLabel *lPtr, char *text);
WMFont* WMGetLabelFont(WMLabel *lPtr);
void WMSetLabelFont(WMLabel *lPtr, WMFont *font);
void WMSetLabelTextColor(WMLabel *lPtr, WMColor *color);

View File

@@ -153,6 +153,13 @@ WMSetLabelText(WMLabel *lPtr, char *text)
}
WMFont*
WMGetLabelFont(WMLabel *lPtr)
{
return lPtr->font;
}
void
WMSetLabelFont(WMLabel *lPtr, WMFont *font)
{