mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-24 07:02:30 +01:00
*** empty log message ***
This commit is contained in:
@@ -698,9 +698,9 @@ WMFont *WMBoldSystemFontOfSize(WMScreen *scrPtr, int size);
|
||||
|
||||
XFontSet WMGetFontFontSet(WMFont *font);
|
||||
|
||||
WMFont * WMGetFontPlain(WMScreen *scr, WMFont *font);
|
||||
WMFont * WMGetFontBold(WMScreen *scr, WMFont *font);
|
||||
WMFont * WMGetFontItalic(WMScreen *scr, WMFont *font);
|
||||
WMFont * WMConvertFontToPlain(WMScreen *scr, WMFont *font);
|
||||
WMFont * WMConvertFontTobold(WMScreen *scr, WMFont *font);
|
||||
WMFont * WMConvertFontToItalic(WMScreen *scr, WMFont *font);
|
||||
WMFont * WMGetFontOfSize(WMScreen *scr, WMFont *font, int size);
|
||||
|
||||
/* ....................................................................... */
|
||||
@@ -1507,7 +1507,7 @@ char * WMGetTextSelected(WMText *tPtr);
|
||||
WMArray * WMGetTextStreamIntoArray(WMText *tPtr);
|
||||
|
||||
/* destroy the array */
|
||||
WMArray* WMGetTextSelectedIntoArray(WMText *tPtr);
|
||||
WMArray* WMGetTextSelectedObjects(WMText *tPtr);
|
||||
|
||||
void WMSetTextSelectionColor(WMText *tPtr, WMColor *color);
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ changeFontProp(char *fname, char *newprop, int which)
|
||||
|
||||
|
||||
WMFont *
|
||||
WMGetFontPlain(WMScreen *scr, WMFont *font)
|
||||
WMConvertFontToPlain(WMScreen *scr, WMFont *font)
|
||||
{
|
||||
if(!scr || !font)
|
||||
return font;
|
||||
@@ -39,7 +39,7 @@ WMGetFontPlain(WMScreen *scr, WMFont *font)
|
||||
}
|
||||
|
||||
WMFont *
|
||||
WMGetFontBold(WMScreen *scr, WMFont *font)
|
||||
WMConvertFontToBold(WMScreen *scr, WMFont *font)
|
||||
{
|
||||
WMFont *newfont=NULL;
|
||||
char fname[256];
|
||||
@@ -58,7 +58,7 @@ WMGetFontBold(WMScreen *scr, WMFont *font)
|
||||
}
|
||||
|
||||
WMFont *
|
||||
WMGetFontItalic(WMScreen *scr, WMFont *font)
|
||||
WMConvertFontToItalic(WMScreen *scr, WMFont *font)
|
||||
{
|
||||
WMFont *newfont=NULL;
|
||||
char fname[256];
|
||||
|
||||
Reference in New Issue
Block a user