Home
last modified time | relevance | path

Searched refs:nColor (Results 1 – 25 of 268) sorted by last modified time

1234567891011

/aoo41x/main/xmloff/source/text/
H A DXMLTextColumnsContext.cxx177 sal_Int32 nColor; member in XMLTextColumnSepContext_Impl
194 sal_Int32 GetColor() const { return nColor; } in GetColor()
210 nColor( 0 ), in XMLTextColumnSepContext_Impl()
243 nColor = (sal_Int32)aColor.GetColor(); in XMLTextColumnSepContext_Impl()
H A DXMLTextColumnsExport.cxx115 sal_Int32 nColor = 0; in exportXML() local
116 aAny >>= nColor; in exportXML()
118 nColor ); in exportXML()
/aoo41x/main/xmloff/source/style/
H A Dxmlnume.cxx122 sal_Int32 nColor = 0; in exportLevelStyle() local
205 rProp.Value >>= nColor; in exportLevelStyle()
634 const Color aColor( nColor ); in exportLevelStyle()
H A Dxmlbahdl.cxx520 sal_Int32 nColor = 0; in exportXML() local
523 if( rValue >>= nColor ) in exportXML()
677 sal_Int32 nColor = 0; in exportXML() local
683 Color aColor( nColor ); in exportXML()
761 sal_Int32 nColor = 0; in importXML() local
762 if( !(rValue >>= nColor) || -1 != nColor ) in importXML()
777 sal_Int32 nColor = 0; in exportXML() local
778 if( (rValue >>= nColor) && -1 != nColor ) in exportXML()
780 Color aColor( nColor ); in exportXML()
820 sal_Int32 nColor = 0; in exportXML() local
[all …]
/aoo41x/main/xmloff/source/draw/
H A Danimexp.cxx418 sal_Int32 nColor = 0; in collect() local
419 xProps->getPropertyValue( mpImpl->msDimColor ) >>= nColor; in collect()
420 aEffect.maDimColor.SetColor( nColor ); in collect()
/aoo41x/main/xmloff/source/chart/
H A DColorPropertySet.cxx99 ColorPropertySet::ColorPropertySet( sal_Int32 nColor, bool bFillColor /* = true */ ) : in ColorPropertySet() argument
102 m_nColor( nColor ), in ColorPropertySet()
110 void ColorPropertySet::setColor( sal_Int32 nColor ) in setColor() argument
112 m_nColor = nColor; in setColor()
H A DColorPropertySet.hxx42 explicit ColorPropertySet( sal_Int32 nColor, bool bFillColor = true );
45 void setColor( sal_Int32 nColor );
/aoo41x/main/writerfilter/source/dmapper/
H A DDomainMapper.cxx2786 sal_Int32 nColor = 0; in sprmWithProps() local
2989 sal_Int32 nColor = 0; in sprmWithProps() local
4777 nColor = 0; in getColorFromIndex()
4783 case 1: nColor=0x000000; break; //black in getColorFromIndex()
4784 case 2: nColor=0x0000ff; break; //blue in getColorFromIndex()
4785 case 3: nColor=0x00ffff; break; //cyan in getColorFromIndex()
4786 case 4: nColor=0x00ff00; break; //green in getColorFromIndex()
4787 case 5: nColor=0xff00ff; break; //magenta in getColorFromIndex()
4788 case 6: nColor=0xff0000; break; //red in getColorFromIndex()
4789 case 7: nColor=0xffff00; break; //yellow in getColorFromIndex()
[all …]
H A DDomainMapperTableHandler.cxx61 sal_Int32 nColor; in lcl_printProperties() local
70 else if ( aMapIter->second >>= nColor ) in lcl_printProperties()
73 dmapper_logger->attribute("number", nColor); in lcl_printProperties()
/aoo41x/main/writerfilter/inc/dmapper/
H A DDomainMapper.hxx141 bool getColorFromIndex(const sal_Int32 nIndex, sal_Int32 &nColor);
/aoo41x/main/winaccessibility/source/UAccCOM/
H A DAccTextBase.cpp180 unsigned long nColor; in get_attributes() local
181 pValue.Value >>= nColor; in get_attributes()
183 swprintf( pBuf, L"%08X", nColor ); in get_attributes()
/aoo41x/main/vcl/win/source/window/
H A Dsalframe.cxx2789 inline Color ImplWinColorToSal( COLORREF nColor ) in ImplWinColorToSal() argument
2791 return Color( GetRValue( nColor ), GetGValue( nColor ), GetBValue( nColor ) ); in ImplWinColorToSal()
/aoo41x/main/vcl/unx/generic/window/
H A Dsalframe.cxx2653 inline Color getColorFromLong( long nColor ) in getColorFromLong() argument
2655 return Color( (nColor & 0xff), (nColor & 0xff00)>>8, (nColor & 0xff0000)>>16); in getColorFromLong()
/aoo41x/main/vcl/unx/gtk/a11y/
H A Datktextattributes.cxx331 sal_Int32 nColor = -1; // AUTOMATIC in get_color_value() local
335 nColor = rAttributeList[nIndex].Value.get<sal_Int32>(); in get_color_value()
343 if( (nColor == -1) && text ) in get_color_value()
353 nColor = pComponent->getBackground(); in get_color_value()
356 nColor = pComponent->getForeground(); in get_color_value()
369 if( nColor != -1 ) in get_color_value()
371 sal_uInt8 blue = nColor & 0xFF; in get_color_value()
372 sal_uInt8 green = (nColor >> 8) & 0xFF; in get_color_value()
373 sal_uInt8 red = (nColor >> 16) & 0xFF; in get_color_value()
389 sal_Int32 nColor = (sal_Int32) blue | ( (sal_Int32) green << 8 ) | ( ( sal_Int32 ) red << 16 ); in String2Color() local
[all …]
/aoo41x/main/vcl/unx/generic/gdi/
H A Dsalbmp.cxx313 const SalColor nColor( rColMap.GetColor( i ) ); in ImplCreateDIB() local
316 rBmpCol.SetRed( SALCOLOR_RED( nColor ) ); in ImplCreateDIB()
317 rBmpCol.SetGreen( SALCOLOR_GREEN( nColor ) ); in ImplCreateDIB()
318 rBmpCol.SetBlue( SALCOLOR_BLUE( nColor ) ); in ImplCreateDIB()
438 const SalColor nColor( rColMap.GetColor( i ) ); in ImplCreateXImage() local
441 rBmpCol.SetRed( SALCOLOR_RED( nColor ) ); in ImplCreateXImage()
442 rBmpCol.SetGreen( SALCOLOR_GREEN( nColor ) ); in ImplCreateXImage()
443 rBmpCol.SetBlue( SALCOLOR_BLUE( nColor ) ); in ImplCreateXImage()
/aoo41x/main/vcl/unx/generic/dtrans/
H A Dbmp.cxx116 inline void X11_writeScanlinePixel( unsigned long nColor, sal_uInt8* pScanline, int depth, int x ) in X11_writeScanlinePixel() argument
122 pScanline[ x/8 ] |= ((nColor & 1) << (x&7)); in X11_writeScanlinePixel()
126 pScanline[ x/2 ] |= ((x&1) ? (nColor & 0x0f) : ((nColor & 0x0f) << 4)); in X11_writeScanlinePixel()
130 pScanline[ x ] = (nColor & 0xff); in X11_writeScanlinePixel()
/aoo41x/main/vcl/os2/source/gdi/
H A Dsalgdi2.cxx579 const ULONG nColor = MAKE_SALCOLOR( SALCOLOR_RED( nMaskColor ), in drawMask() local
590 aAreaBundle.lColor = nColor; in drawMask()
591 aAreaBundle.lBackColor = nColor; in drawMask()
673 LONG nColor = Ft2QueryPel( mhPS, &aPt ); in getPixel() local
675 return MAKE_SALCOLOR( (PM_BYTE) ( nColor >> 16 ), (PM_BYTE) ( nColor >> 8 ), (PM_BYTE) nColor ); in getPixel()
/aoo41x/main/vcl/inc/vcl/
H A Dbmpacc.hxx161 inline const BitmapColor& GetPaletteColor( sal_uInt16 nColor ) const;
205 … inline void SetPaletteColor( sal_uInt16 nColor, const BitmapColor& rBitmapColor );
436 inline const BitmapColor& BitmapReadAccess::GetPaletteColor( sal_uInt16 nColor ) const in GetPaletteColor()
440 return mpBuffer->maPalette[ nColor ]; in GetPaletteColor()
538 inline void BitmapWriteAccess::SetPaletteColor( sal_uInt16 nColor, const BitmapColor& rBitmapColor ) in SetPaletteColor() argument
542 mpBuffer->maPalette[ nColor ] = rBitmapColor; in SetPaletteColor()
/aoo41x/main/vcl/inc/unx/
H A Dsaldisp.hxx150 Pixel GetTCPixel( SalColor nColor ) const;
199 Pixel GetPixel( SalColor nColor ) const;
/aoo41x/main/vcl/aqua/source/gdi/
H A Dsalbmp.cxx307 virtual void WritePixel( ColorData nColor ) in WritePixel() argument
310 *pData++ = COLORDATA_RED( nColor ); in WritePixel()
311 *pData++ = COLORDATA_GREEN( nColor ); in WritePixel()
312 *pData++ = COLORDATA_BLUE( nColor ); in WritePixel()
332 *pData++ = COLORDATA_BLUE( nColor ); in WritePixel()
333 *pData++ = COLORDATA_GREEN( nColor ); in WritePixel()
334 *pData++ = COLORDATA_RED( nColor ); in WritePixel()
387 …const BitmapColor aColor( COLORDATA_RED( nColor ), COLORDATA_GREEN( nColor ), COLORDATA_BLUE( nCol… in WritePixel()
425 …const BitmapColor aColor( COLORDATA_RED( nColor ), COLORDATA_GREEN( nColor ), COLORDATA_BLUE( nCol… in WritePixel()
461 …const BitmapColor aColor( COLORDATA_RED( nColor ), COLORDATA_GREEN( nColor ), COLORDATA_BLUE( nCol… in WritePixel()
[all …]
/aoo41x/main/vbahelper/source/vbahelper/
H A Dvbafontbase.cxx157 sal_Int32 nColor = 0; in getColorIndex() local
159 XLRGBToOORGB( getColor() ) >>= nColor; in getColorIndex()
166 if ( nPaletteColor == nColor ) in getColorIndex()
H A Dvbacolorformat.cxx128 sal_Int32 nColor = getRGB(); in getSchemeColor() local
136 if( nColor == MsoColorIndizes::getColorIndex(i) ) in getSchemeColor()
159 sal_Int32 nColor = MsoColorIndizes::getColorIndex( _schemecolor ); in setSchemeColor() local
161 setRGB( nColor ); in setSchemeColor()
/aoo41x/main/tools/inc/tools/
H A Dcolor.hxx120 Color( ColorData nColor ) { mnColor = nColor; } in Color() argument
146 void SetColor( ColorData nColor ) { mnColor = nColor; } in SetColor() argument
/aoo41x/main/toolkit/workben/
H A Dcontrols.cxx154 static INT32 nColor = 0x001788ab; in MouseButtonDown() local
155 xContModel->setPropertyValue( L"BackgroundColor", UsrAny( nColor ) ); in MouseButtonDown()
156 nColor += 0x00111111; in MouseButtonDown()
157 nColor &= 0xFFFFFF; in MouseButtonDown()
/aoo41x/main/toolkit/test/accessibility/
H A DAccessibleComponentHandler.java64 int nColor; in createChild() local
93 nColor = xComponent.getForeground(); in createChild()
95 + (nColor>>16&0xff) in createChild()
96 + "G" + (nColor>>8&0xff) in createChild()
97 + "B" + (nColor>>0&0xff) in createChild()
98 + "A" + (nColor>>24&0xff), in createChild()
102 nColor = xComponent.getBackground(); in createChild()
104 + (nColor>>16&0xff) in createChild()
105 + "G" + (nColor>>8&0xff) in createChild()
106 + "B" + (nColor>>0&0xff) in createChild()
[all …]

Completed in 222 milliseconds

1234567891011