Home
last modified time | relevance | path

Searched refs:RGB_COLORDATA (Results 1 – 19 of 19) sorted by relevance

/trunk/main/tools/inc/tools/ !
H A Dcolor.hxx52 #define RGB_COLORDATA( r,g,b ) ((ColorData)(((sal_uInt32)((sal_uInt8)(b))))|(((sal_uInt32)((sa… macro
60 #define COL_BLACK RGB_COLORDATA( 0x00, 0x00, 0x00 )
61 #define COL_BLUE RGB_COLORDATA( 0x00, 0x00, 0x80 )
62 #define COL_GREEN RGB_COLORDATA( 0x00, 0x80, 0x00 )
63 #define COL_CYAN RGB_COLORDATA( 0x00, 0x80, 0x80 )
64 #define COL_RED RGB_COLORDATA( 0x80, 0x00, 0x00 )
65 #define COL_MAGENTA RGB_COLORDATA( 0x80, 0x00, 0x80 )
66 #define COL_BROWN RGB_COLORDATA( 0x80, 0x80, 0x00 )
67 #define COL_GRAY RGB_COLORDATA( 0x80, 0x80, 0x80 )
68 #define COL_LIGHTGRAY RGB_COLORDATA( 0xC0, 0xC0, 0xC0 )
[all …]
/trunk/main/sd/source/core/ !
H A Ddrawdoc4.cxx677 …tring( RTL_CONSTASCII_USTRINGPARAM("blue1") ), aDefaultCellStyleName, RGB_COLORDATA(153,204,255))); in CreateDefaultCellStyles()
678 …UString( RTL_CONSTASCII_USTRINGPARAM("blue2") ), aDefaultCellStyleName, RGB_COLORDATA(0,153,255))); in CreateDefaultCellStyles()
679 …UString( RTL_CONSTASCII_USTRINGPARAM("blue3") ), aDefaultCellStyleName, RGB_COLORDATA(0,102,204))); in CreateDefaultCellStyles()
685 …UString( RTL_CONSTASCII_USTRINGPARAM("bw1") ), aDefaultCellStyleName, RGB_COLORDATA(255,255,255))); in CreateDefaultCellStyles()
686 …UString( RTL_CONSTASCII_USTRINGPARAM("bw2") ), aDefaultCellStyleName, RGB_COLORDATA(230,230,230))); in CreateDefaultCellStyles()
687 …ool, OUString( RTL_CONSTASCII_USTRINGPARAM("bw3") ), aDefaultCellStyleName, RGB_COLORDATA(0,0,0))); in CreateDefaultCellStyles()
693 …ing( RTL_CONSTASCII_USTRINGPARAM("orange1") ), aDefaultCellStyleName, RGB_COLORDATA(255,204,153))); in CreateDefaultCellStyles()
694 …ing( RTL_CONSTASCII_USTRINGPARAM("orange2") ), aDefaultCellStyleName, RGB_COLORDATA(255,153,102))); in CreateDefaultCellStyles()
695 …ring( RTL_CONSTASCII_USTRINGPARAM("orange3") ), aDefaultCellStyleName, RGB_COLORDATA(255,102,51))); in CreateDefaultCellStyles()
701 …ng( RTL_CONSTASCII_USTRINGPARAM("turquise1") ), aDefaultCellStyleName, RGB_COLORDATA(71,184,184))); in CreateDefaultCellStyles()
[all …]
/trunk/main/cui/source/options/ !
H A Dcfgchart.cxx106 RGB_COLORDATA( 0x00, 0x45, 0x86 ), in useDefault()
107 RGB_COLORDATA( 0xff, 0x42, 0x0e ), in useDefault()
108 RGB_COLORDATA( 0xff, 0xd3, 0x20 ), in useDefault()
109 RGB_COLORDATA( 0x57, 0x9d, 0x1c ), in useDefault()
110 RGB_COLORDATA( 0x7e, 0x00, 0x21 ), in useDefault()
111 RGB_COLORDATA( 0x83, 0xca, 0xff ), in useDefault()
112 RGB_COLORDATA( 0x31, 0x40, 0x04 ), in useDefault()
113 RGB_COLORDATA( 0xae, 0xcf, 0x00 ), in useDefault()
114 RGB_COLORDATA( 0x4b, 0x1f, 0x6f ), in useDefault()
115 RGB_COLORDATA( 0xff, 0x95, 0x0e ), in useDefault()
[all …]
/trunk/main/tools/source/generic/ !
H A Dcolor.cxx69 mnColor = RGB_COLORDATA( nRed>>8, nGreen>>8, nBlue>>8 ); in Color()
73 mnColor = RGB_COLORDATA( 0, 0, 0 ); in Color()
257 return RGB_COLORDATA( cR, cG, cB ); in HSBtoRGB()
273 return RGB_COLORDATA( nRed, nGreen, nBlue ); in CMYKtoRGB()
431 rColor.mnColor = RGB_COLORDATA( nRed>>8, nGreen>>8, nBlue>>8 ); in operator >>()
/trunk/main/svx/inc/svx/ !
H A Dxdef.hxx35 #define COL_DEFAULT_SHAPE_FILLING RGB_COLORDATA( 0xCF, 0xE7, 0xF5 )
36 #define COL_DEFAULT_SHAPE_STROKE RGB_COLORDATA( 128, 128, 128 )
/trunk/main/sw/source/core/crsr/ !
H A Dviscrs.cxx205 case 0: aCol = RGB_COLORDATA( nVal, nVal, 0xFF ); break; in Paint()
206 case 1: aCol = RGB_COLORDATA( 0xFF, 0xc8, nVal ); break; in Paint()
207 case 2: aCol = RGB_COLORDATA( nVal, 0xFF, nVal ); break; in Paint()
208 case 3: aCol = RGB_COLORDATA( 0xFF, nVal, nVal ); break; in Paint()
/trunk/main/vcl/aqua/source/gdi/ !
H A Dsalbmp.cxx303 const ColorData c = RGB_COLORDATA( pData[1], pData[2], pData[3] ); in ReadPixel()
326 const ColorData c = RGB_COLORDATA( pData[2], pData[1], pData[0] ); in ReadPixel()
355 …const ColorData c = RGB_COLORDATA( (*pData & 0x7c00) >> 7, (*pData & 0x03e0) >> 2 , (*pData & 0x00… in ReadPixel()
/trunk/main/sw/inc/ !
H A DPostItMgr.hxx68 #define COL_NOTES_SIDEPANE_ARROW_ENABLED RGB_COLORDATA(0,0,0)
69 #define COL_NOTES_SIDEPANE_ARROW_DISABLED RGB_COLORDATA(172,168,153)
/trunk/main/svtools/workben/toolpanel/ !
H A Dtoolpaneltest.cxx757 …ToolPanel( new ColoredPanel( m_aToolPanelDeck.GetPanelWindowAnchor(), RGB_COLORDATA( 255, 255, 0 )… in PanelDemoMainWindow()
758 …ToolPanel( new ColoredPanel( m_aToolPanelDeck.GetPanelWindowAnchor(), RGB_COLORDATA( 0, 0, 128 ), … in PanelDemoMainWindow()
/trunk/main/editeng/source/items/ !
H A Ditemtype.cxx156 RGB_COLORDATA( rCol.GetRed(), rCol.GetGreen(), rCol.GetBlue() ); in GetColorString()
/trunk/main/sw/source/core/doc/ !
H A Dtblafmt.cxx905 aBrushItem.SetColor( RGB_COLORDATA( 0x4d, 0x4d, 0x4d ) ); in SwTableAutoFmtTbl()
911 aBrushItem.SetColor( RGB_COLORDATA( 0xcc, 0xcc, 0xcc ) ); in SwTableAutoFmtTbl()
/trunk/main/svtools/source/config/ !
H A Dcolorcfg.cxx555 aRet.nColor = RGB_COLORDATA(153, 153, 153); in GetColorValue()
/trunk/main/sc/source/filter/excel/ !
H A Dxichart.cxx2381 aAmbientColor.SetColor( RGB_COLORDATA( 204, 204, 204 ) ); in Convert()
2383 aLightColor.SetColor( RGB_COLORDATA( 102, 102, 102 ) ); in Convert()
2398 aAmbientColor.SetColor( RGB_COLORDATA( 179, 179, 179 ) ); in Convert()
2400 aLightColor.SetColor( RGB_COLORDATA( 76, 76, 76 ) ); in Convert()
H A Dxltools.cxx723 rColor.SetColor( RGB_COLORDATA( nR, nG, nB ) ); in operator >>()
H A Dxechart.cxx727 Color aColor( RGB_COLORDATA( in RegisterColor()
/trunk/main/vcl/source/app/ !
H A Dsettings.cxx434 maEdgeBlendingTopLeftColor = RGB_COLORDATA(0xC0, 0xC0, 0xC0); in ImplStyleData()
435 maEdgeBlendingBottomRightColor = RGB_COLORDATA(0x40, 0x40, 0x40); in ImplStyleData()
/trunk/main/filter/inc/filter/msfilter/ !
H A Dmsdffimp.hxx102 #define COL_DEFAULT RGB_COLORDATA( 0xFA, 0xFB, 0xFC )
/trunk/main/sw/source/core/layout/ !
H A Dpaintfrm.cxx95 #define COL_NOTES_SIDEPANE RGB_COLORDATA(230,230,230)
96 #define COL_NOTES_SIDEPANE_BORDER RGB_COLORDATA(200,200,200)
97 #define COL_NOTES_SIDEPANE_SCROLLAREA RGB_COLORDATA(230,230,220)
/trunk/main/sw/source/filter/ww8/ !
H A Dww8par6.cxx4809 aColor.SetColor( RGB_COLORDATA( nRed/1000, nGreen/1000, in SetShade()