1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
/*
SCREENTextStyle.c
AUTHORS:
Allen.Ingling@nyu.edu awi
mario.kleiner.de@gmail.com mk
PLATFORMS:
All.
HISTORY:
11/19/03 awi Wrote it.
10/12/04 awi In useString: changed "SCREEN" to "Screen", and moved commas to inside [].
DESCRIPTION:
Sets the text style for the specified window record.
*/
#include "Screen.h"
static char useString[] ="oldStyle=Screen('TextStyle', windowPtr [,style]);";
// 0 1 2
static char synopsisString[] =
"Get/set the font style for future text draws in this window. Useful values for "
"style follow; they may be OR'd. On different operating systems and text renderers "
"only a subset of these flags is honored. All settings are accepted on all systems, "
"but some of them are silently ignored on some systems.\n"
"0=normal,1=bold,2=italic,4=underline,8=outline,32=condense,64=extend.\n"
"All styles are supported with the default plugin text renderer on all systems.\n"
"Normal, bold, and italic styles are supported on all system specific renderers.\n"
"Underline is supported on OSX and Windows. Outline is supported on Linux.\n"
"Condense and Extend are supported on Linux and OSX.\n"
"You can assign a default font style for new windows via a call to "
"Screen('Preference', 'DefaultFontStyle'). The initial default font style is "
"operating system dependent.\n"
"Not all fonts support all style settings. Unsupported settings for the currently "
"selected font will be silently ignored.";
static char seeAlsoString[] = "";
PsychError SCREENTextStyle(void)
{
psych_bool doSetStyle;
PsychWindowRecordType *windowRecord;
int oldTextStyle, newTextStyle;
#if PSYCH_SYSTEM == PSYCH_OSX
psych_bool foundFont;
PsychFontStructType *fontRecord;
#endif
//all subfunctions should have these two lines.
PsychPushHelp(useString, synopsisString, seeAlsoString);
if(PsychIsGiveHelp()){PsychGiveHelp();return(PsychError_none);};
//check for valid number of arguments
PsychErrorExit(PsychRequireNumInputArgs(1));
PsychErrorExit(PsychCapNumInputArgs(2));
PsychErrorExit(PsychCapNumOutputArgs(1));
//Get the window record
PsychAllocInWindowRecordArg(kPsychUseDefaultArgPosition, TRUE, &windowRecord);
//Save the old text size value and return it.
oldTextStyle=windowRecord->textAttributes.textStyle;
PsychCopyOutDoubleArg(1, FALSE, (double)oldTextStyle);
//Fetch and set the new size if it is specified.
doSetStyle= PsychCopyInIntegerArg(2, FALSE, &newTextStyle);
if (doSetStyle) {
windowRecord->textAttributes.needsRebuild|=(windowRecord->textAttributes.textStyle != newTextStyle) ? TRUE : FALSE;
windowRecord->textAttributes.textStyle=newTextStyle;
#if PSYCH_SYSTEM == PSYCH_OSX
// Need to update font name and number from changed style on OS/X:
foundFont = PsychGetFontRecordFromFontFamilyNameAndFontStyle((char*) windowRecord->textAttributes.textFontName, windowRecord->textAttributes.textStyle & ~4, &fontRecord);
if (foundFont) {
strncpy((char*) windowRecord->textAttributes.textFontName, (const char*) fontRecord->fontFMFamilyName, 255);
windowRecord->textAttributes.textFontNumber= fontRecord->fontNumber;
}
else {
// Failed! Revert to old setting:
windowRecord->textAttributes.textStyle = oldTextStyle;
}
#endif
}
return(PsychError_none);
}
|