Esempio n. 1
0
TER ChangeTransactor::doApply ()
{
    if (mTxn.getTxnType () == ttFEATURE)
        return applyFeature ();

    if (mTxn.getTxnType () == ttFEE)
        return applyFee ();

    return temUNKNOWN;
}
Esempio n. 2
0
void XtgScanner::setSubscript()
{
	applyFeature(CharStyle::SUBSCRIPT);
}
Esempio n. 3
0
void XtgScanner::setSuperscript()
{
	applyFeature(CharStyle::SUPERSCRIPT);
}
Esempio n. 4
0
void XtgScanner::setSmallCaps()
{
	applyFeature(CharStyle::SMALLCAPS);
}
Esempio n. 5
0
void XtgScanner::setStrikethrough()
{
	applyFeature(CharStyle::STRIKETHROUGH);
}
Esempio n. 6
0
void XtgScanner::setUnderline()
{
	applyFeature(CharStyle::UNDERLINE);
}
Esempio n. 7
0
void XtgScanner::setOutline()
{
	applyFeature(CharStyle::OUTLINE);
}
Esempio n. 8
0
void XtgScanner::setShadow()
{
	applyFeature(CharStyle::SHADOWED);
}
Esempio n. 9
0
void XtgScanner::setSuperior()
{
	styleEffects &= ~ScStyle_Subscript;
	applyFeature(ScStyle_Superscript);
}
Esempio n. 10
0
void XtgScanner::setSmallCaps()
{
	styleEffects &= ~ScStyle_AllCaps;
	applyFeature(ScStyle_SmallCaps);
}
Esempio n. 11
0
void XtgScanner::setStrikethrough()
{
	applyFeature(ScStyle_Strikethrough);
}
Esempio n. 12
0
void XtgScanner::setWordUnder()
{
	styleEffects &= ~ScStyle_Underline;
	applyFeature(ScStyle_UnderlineWords);
}
Esempio n. 13
0
void XtgScanner::setUnderline()
{
	styleEffects &= ~ScStyle_UnderlineWords;
	applyFeature(ScStyle_Underline);
}
Esempio n. 14
0
void XtgScanner::setOutline()
{
	applyFeature(ScStyle_Outline);
}
Esempio n. 15
0
void XtgScanner::setShadow()
{
	applyFeature(ScStyle_Shadowed);
}