/aoo42x/main/tools/inc/tools/ |
H A D | color.hxx | 116 ColorData mnColor; member in Color 131 mnColor = RGB_COLORDATA( in Color() 182 { return (mnColor == rColor.mnColor); } in operator ==() 198 mnColor &= 0xFF00FFFF; in SetRed() 199 mnColor |= ((sal_uInt32)nRed)<<16; in SetRed() 204 mnColor &= 0xFFFF00FF; in SetGreen() 205 mnColor |= ((sal_uInt16)nGreen)<<8; in SetGreen() 210 mnColor &= 0xFFFFFF00; in SetBlue() 211 mnColor |= nBlue; in SetBlue() 216 mnColor &= 0x00FFFFFF; in SetTransparency() [all …]
|
/aoo42x/main/basebmp/inc/basebmp/ |
H A D | color.hxx | 36 sal_uInt32 mnColor; member in basebmp::Color 42 Color() : mnColor(0) {} in Color() 43 explicit Color( sal_uInt32 nVal ) : mnColor(nVal) {} in Color() 48 void setRed( sal_uInt8 nRed ) { mnColor &= ~0x00FF0000UL; mnColor |= (sal_uInt32)nRed << 16; } in setRed() 49 void setGreen( sal_uInt8 nGreen ) { mnColor &= ~0x0000FF00UL; mnColor |= (sal_uInt32)nGreen << 8; } in setGreen() 50 void setBlue( sal_uInt8 nBlue ) { mnColor &= ~0x000000FFUL; mnColor |= nBlue; } in setBlue() 54 sal_uInt8 getRed() const { return 0xFF & (sal_uInt8)(mnColor >> 16); } in getRed() 55 sal_uInt8 getGreen() const { return 0xFF & (sal_uInt8)(mnColor >> 8); } in getGreen() 56 sal_uInt8 getBlue() const { return 0xFF & (sal_uInt8)mnColor; } in getBlue() 62 sal_uInt32 toInt32() const { return mnColor; } in toInt32() [all …]
|
/aoo42x/main/tools/source/generic/ |
H A D | color.cxx | 69 mnColor = RGB_COLORDATA( nRed>>8, nGreen>>8, nBlue>>8 ); in Color() 73 mnColor = RGB_COLORDATA( 0, 0, 0 ); in Color() 89 SetRed( (sal_uInt8) VOS_BOUND( (long) COLORDATA_RED( mnColor ) + cLumInc, 0L, 255L ) ); in IncreaseLuminance() 137 SetRed( ~COLORDATA_RED( mnColor ) ); in Invert() 138 SetGreen( ~COLORDATA_GREEN( mnColor ) ); in Invert() 139 SetBlue( ~COLORDATA_BLUE( mnColor ) ); in Invert() 312 rIStm >> mnColor; in Read() 324 rOStm << mnColor; in Write() 431 rColor.mnColor = RGB_COLORDATA( nRed>>8, nGreen>>8, nBlue>>8 ); in operator >>() 471 rColor.mnColor = aColAry[nColorName]; in operator >>() [all …]
|
/aoo42x/main/filter/source/graphicfilter/icgm/ |
H A D | bundles.cxx | 35 mnColor = rSource.mnColor; in operator =() 44 mnColor = nColor; in SetColor() 49 return mnColor; in GetColor()
|
H A D | bundles.hxx | 40 sal_uInt32 mnColor; member in Bundle
|
/aoo42x/main/sdext/source/presenter/ |
H A D | PresenterTheme.cxx | 596 mnColor(0x00000000), in FontDescriptor() 611 mnColor(0x00000000), in FontDescriptor() 621 mnColor = rpDescriptor->mnColor; in FontDescriptor() 904 pDescriptor->mnColor); in ReadFont()
|
H A D | PresenterTheme.hxx | 96 sal_uInt32 mnColor; member in sdext::presenter::PresenterTheme::FontDescriptor
|
H A D | PresenterToolBar.cxx | 2026 PresenterCanvasHelper::SetDeviceColor(aRenderState, mpFont->mnColor); in Paint() 2347 PresenterCanvasHelper::SetDeviceColor(aRenderState, pFont->mnColor); in Paint() 2410 PresenterCanvasHelper::SetDeviceColor(aRenderState, pFont->mnColor); in Paint()
|
H A D | PresenterTextView.cxx | 453 PresenterCanvasHelper::SetDeviceColor(aRenderState, mpFont->mnColor); in Paint() 496 PresenterCanvasHelper::SetDeviceColor(aRenderState, mpFont->mnColor); in Paint()
|
H A D | PresenterButton.cxx | 486 PresenterCanvasHelper::SetDeviceColor(aRenderState, rpFont->mnColor); in RenderButton()
|
H A D | PresenterNotesView.cxx | 110 maSeparatorColor = mpFont->mnColor; in PresenterNotesView()
|
H A D | PresenterSlideSorter.cxx | 360 maSeparatorColor = pFont->mnColor; in PresenterSlideSorter() 1905 PresenterCanvasHelper::SetDeviceColor(aRenderState, mpFont->mnColor); in CreateBitmap()
|
H A D | PresenterHelpView.cxx | 329 PresenterCanvasHelper::SetDeviceColor(aRenderState, mpFont->mnColor); in Paint()
|
H A D | PresenterPaneBorderPainter.cxx | 671 rpStyle->mpFont->mnColor); in PaintTitle()
|
/aoo42x/main/cui/source/dialogs/ |
H A D | colorpicker.cxx | 1578 sal_Int32 mnColor; member in cui::ColorPicker 1613 , mnColor( 0 ) in ColorPicker() 1658 props[0].Value <<= mnColor; in getPropertyValues() 1670 aProps[n].Value >>= mnColor; in setPropertyValues() 1691 ColorPickerDialog aDlg( VCLUnoHelper::GetWindow( mxParent ), mnColor, mnMode ); in execute() 1694 mnColor = aDlg.GetColor(); in execute()
|
/aoo42x/main/oox/source/xls/ |
H A D | stylesbuffer.cxx | 702 mnColor( API_RGB_TRANSPARENT ), in ApiFontData() 1006 maApiData.mnColor = maModel.maColor.getColor( getBaseFilter().getGraphicHelper() ); in finalizeImport() 1148 rPropMap[ PROP_CharColor ] <<= maApiData.mnColor; in writeToPropertyMap() 1888 mnColor( API_RGB_TRANSPARENT ), in ApiSolidFillData() 1897 (rLeft.mnColor == rRight.mnColor) && in operator ==() 2122 maApiData.mnColor = API_RGB_TRANSPARENT; in finalizeImport() 2161 maApiData.mnColor = lclGetMixedColor( nPattColor, nFillColor, nAlpha ); in finalizeImport() 2171 maApiData.mnColor = aIt->second.getColor( rGraphicHelper, API_RGB_WHITE ); in finalizeImport() 2176 maApiData.mnColor = lclGetMixedColor( maApiData.mnColor, nEndColor, 0x40 ); in finalizeImport() 2186 rPropMap[ PROP_CellBackColor ] <<= maApiData.mnColor; in writeToPropertyMap()
|
/aoo42x/main/oox/inc/oox/xls/ |
H A D | stylesbuffer.hxx | 240 sal_Int32 mnColor; /// Font color. member 641 sal_Int32 mnColor; /// Fill color. member
|
/aoo42x/main/filter/source/msfilter/ |
H A D | svdfppt.cxx | 4827 pCharSet->mnColor = nColor; in SetColor() 5385 aSet.mnColor = nVal; in ReadCharProps() 5735 nRetValue = pCharSet->mnColor; in GetAttrib() 6176 nRetValue = pPortion->pCharSet->mnColor; in GetAttrib() 7267 … pCurrent->mnHylinkOrigColor=pCurrent->pCharSet->mnColor; in PPTTextObj()
|
/aoo42x/main/filter/inc/filter/msfilter/ |
H A D | svdfppt.hxx | 862 sal_uInt32 mnColor; member
|