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