Home
last modified time | relevance | path

Searched defs:WW8_SHD (Results 1 – 2 of 2) sorted by relevance

/trunk/main/sw/source/filter/ww8/dump/
H A Dww8struc.hxx478 struct WW8_SHD // struct SHD fehlt in der Beschreibung struct
488 WW8_SHD(){ aBits = 0; } in WW8_SHD() argument
490 sal_uInt8 GetFore() const { return (sal_uInt8)( aBits & 0x1f); } in GetFore()
491 sal_uInt8 GetBack() const { return (sal_uInt8)((aBits >> 5 ) & 0x1f); } in GetBack()
492 …sal_uInt8 GetStyle(sal_Bool bVer67) const { return (sal_uInt8)((aBits >> 10) & ( bVer67?0x1f:0x3f … in GetStyle()
494 sal_uInt16 GetValue() const { return aBits; } in GetValue()
496 void SetValue( sal_uInt16 nVal ){ aBits = nVal; } in SetValue()
497 void SetWWValue( SVBT16 nVal ){ aBits = (sal_uInt16)SVBT16ToShort( nVal ); } in SetWWValue()
499 void SetFore( sal_uInt8 nVal ){ aBits = (aBits & 0xffe0) | (nVal & 0x1f); } in SetFore()
500 void SetBack( sal_uInt8 nVal ){ aBits = (aBits & 0xfc1f) | ((nVal & 0x1f)<<5); } in SetBack()
[all …]
/trunk/main/sw/source/filter/ww8/
H A Dww8struc.hxx505 struct WW8_SHD // struct SHD fehlt in der Beschreibung struct
515 WW8_SHD() : maBits(0) {} in WW8_SHD() argument
517 sal_uInt8 GetFore() const { return (sal_uInt8)( maBits & 0x1f); } in GetFore()
518 sal_uInt8 GetBack() const { return (sal_uInt8)((maBits >> 5 ) & 0x1f); } in GetBack()
519 sal_uInt8 GetStyle(bool bVer67) const in GetStyle()
522 sal_uInt16 GetValue() const { return maBits; } in GetValue()
524 void SetValue(sal_uInt16 nVal) { maBits = nVal; } in SetValue()
525 void SetWWValue(SVBT16 nVal) { maBits = SVBT16ToShort(nVal); } in SetWWValue()
527 void SetFore(sal_uInt8 nVal) in SetFore()
532 void SetBack(sal_uInt8 nVal) in SetBack()
[all …]

Completed in 20 milliseconds