Home
last modified time | relevance | path

Searched refs:pBorder (Results 1 – 23 of 23) sorted by relevance

/trunk/main/vcl/source/control/
H A Dspinfld.cxx99 Window *pBorder = pWin->GetWindow( WINDOW_BORDER ); in ImplDrawNativeSpinfield() local
108 Region oldRgn( pBorder->GetClipRegion() ); in ImplDrawNativeSpinfield()
109 pBorder->SetClipRegion( Region( aClipRect ) ); in ImplDrawNativeSpinfield()
116 pBorder->GetNativeControlRegion( CTRL_SPINBOX, PART_ENTIRE_CONTROL, in ImplDrawNativeSpinfield()
126 pBorder->SetClipRegion( oldRgn ); in ImplDrawNativeSpinfield()
709 Window *pBorder = pWin->GetWindow( WINDOW_BORDER ); in ImplCalcButtonAreas() local
717 Rectangle aArea( aPoint, pBorder->GetOutputSizePixel() ); in ImplCalcButtonAreas()
728 aPoint = pBorder->ScreenToOutputPixel( pWin->OutputToScreenPixel( aPoint ) ); in ImplCalcButtonAreas()
773 Window *pBorder = GetWindow( WINDOW_BORDER ); in Resize() local
774 Rectangle aArea( aPoint, pBorder->GetOutputSizePixel() ); in Resize()
[all …]
H A Dedit.cxx1105 if( pBorder == this ) in ImplClearBackground()
1110 if( pBorder == this ) in ImplClearBackground()
1111 pBorder = GetParent(); in ImplClearBackground()
1114 if( pBorder ) in ImplClearBackground()
1144 pBorder->SetClipRegion( aClipRgn ); in ImplClearBackground()
1146 pBorder->Paint( Rectangle() ); in ImplClearBackground()
1148 pBorder->SetClipRegion( oldRgn ); in ImplClearBackground()
1151 pBorder->Paint( Rectangle() ); in ImplClearBackground()
1987 Window *pInvalWin = pWin, *pBorder = pWin; in ImplInvalidateOutermostBorder() local
1988 while( ( pBorder = pInvalWin->GetWindow( WINDOW_BORDER ) ) != pInvalWin && pBorder && in ImplInvalidateOutermostBorder()
[all …]
H A Dcombobox.cxx645 Window *pBorder = GetWindow( WINDOW_BORDER ); in Resize() local
651 Rectangle aArea( aPoint, pBorder->GetOutputSizePixel() ); in Resize()
657 aPoint = pBorder->ScreenToOutputPixel( OutputToScreenPixel( aPoint ) ); in Resize()
H A Dlstbox.cxx691 Window *pBorder = GetWindow( WINDOW_BORDER ); in Resize() local
697 Rectangle aArea( aPoint, pBorder->GetOutputSizePixel() ); in Resize()
703 aPoint = pBorder->ScreenToOutputPixel( OutputToScreenPixel( aPoint ) ); in Resize()
H A Dbutton.cxx1718 Window *pBorder = GetParent()->GetWindow( WINDOW_BORDER ); in PreNotify() local
1724 … aClipRect.SetPos(pBorder->ScreenToOutputPixel(OutputToScreenPixel(aClipRect.TopLeft()))); in PreNotify()
1725 pBorder->Invalidate( aClipRect ); in PreNotify()
1729 pBorder->Invalidate( INVALIDATE_NOERASE ); in PreNotify()
1730 pBorder->Update(); in PreNotify()
/trunk/main/svx/source/table/
H A Dcell.cxx1030 if( pBorder == NULL ) in setPropertyValue()
1039 aBoxInfo.SetValid(VALID_TOP, pBorder->IsTopLineValid); in setPropertyValue()
1043 aBoxInfo.SetValid(VALID_BOTTOM, pBorder->IsBottomLineValid); in setPropertyValue()
1045 bSet = SvxBoxItem::LineToSvxLine(pBorder->LeftLine, aLine, false); in setPropertyValue()
1047 aBoxInfo.SetValid(VALID_LEFT, pBorder->IsLeftLineValid); in setPropertyValue()
1049 bSet = SvxBoxItem::LineToSvxLine(pBorder->RightLine, aLine, false); in setPropertyValue()
1051 aBoxInfo.SetValid(VALID_RIGHT, pBorder->IsRightLineValid); in setPropertyValue()
1055 aBoxInfo.SetValid(VALID_HORI, pBorder->IsHorizontalLineValid); in setPropertyValue()
1059 aBoxInfo.SetValid(VALID_VERT, pBorder->IsVerticalLineValid); in setPropertyValue()
1061 aBox.SetDistance(pBorder->Distance, false); in setPropertyValue()
[all …]
/trunk/main/sc/source/ui/view/
H A Dprintfun.cxx634 rParam.pBorder = NULL; in lcl_FillHFParam()
657 if (rParam.pBorder) in lcl_FillHFParam()
778 if (rParam.pBorder) in UpdateHFHeight()
781 lcl_LineTotal(rParam.pBorder->GetLeft()) + in UpdateHFHeight()
805 if (rParam.pBorder) in UpdateHFHeight()
1771 if ( rParam.pBorder ) in PrintHF()
1773 …long nLeft = lcl_LineTotal( rParam.pBorder->GetLeft() ) + rParam.pBorder->GetDistance(BOX_LINE_LEF… in PrintHF()
1774 long nTop = lcl_LineTotal( rParam.pBorder->GetTop() ) + rParam.pBorder->GetDistance(BOX_LINE_TOP); in PrintHF()
1777 …aPaperSize.Width() -= nLeft + lcl_LineTotal( rParam.pBorder->GetRight() ) + rParam.pBorder->GetDis… in PrintHF()
1778 …aPaperSize.Height() -= nTop + lcl_LineTotal( rParam.pBorder->GetBottom() ) + rParam.pBorder->GetDi… in PrintHF()
[all …]
/trunk/main/sc/source/filter/html/
H A Dhtmlexp.cxx856 SvxBoxItem* pBorder = (SvxBoxItem*) pDoc->GetAttr( nCol, nRow, nTab, ATTR_BORDER ); in WriteCell() local
857 …if ( pBorder && (pBorder->GetTop() || pBorder->GetBottom() || pBorder->GetLeft() || pBorder->GetRi… in WriteCell()
862 BorderToStyle( aStrTD, "top", pBorder->GetTop(), bInsertSemicolon ); in WriteCell()
863 BorderToStyle( aStrTD, "bottom", pBorder->GetBottom(), bInsertSemicolon ); in WriteCell()
864 BorderToStyle( aStrTD, "left", pBorder->GetLeft(), bInsertSemicolon ); in WriteCell()
865 BorderToStyle( aStrTD, "right", pBorder->GetRight(), bInsertSemicolon ); in WriteCell()
/trunk/main/svx/source/inc/
H A Dfrmselimpl.hxx241 …inline bool operator()( const FrameBorder* pBorder ) const { return pBorder->GetState() == FRAMEST… in operator ()()
247 inline bool operator()( const FrameBorder* pBorder ) const { return pBorder->IsSelected(); } in operator ()()
/trunk/main/svx/inc/svx/
H A Dframelink.hxx124 …inline explicit Style( const SvxBorderLine* pBorder, double fScale = 1.0, sal_uInt16 nMaxWidth… in Style() argument
125 meRefMode( REFMODE_CENTERED ) { Set( pBorder, fScale, nMaxWidth ); } in Style()
147 …void Set( const SvxBorderLine* pBorder, double fScale = 1.0, sal_uInt16 nMaxWidth =…
H A Dpagectrl.hxx46 SvxBoxItem* pBorder; member in SvxPageWindow
/trunk/main/svx/source/dialog/
H A Dpagectrl.cxx55 pBorder(0), in SvxPageWindow()
428 delete pBorder; in SetBorder()
429 pBorder = new SvxBoxItem(rNew); in SetBorder()
H A Dframelink.cxx1276 void Style::Set( const SvxBorderLine* pBorder, double fScale, sal_uInt16 nMaxWidth, bool bUseDots ) in Set() argument
1278 if( pBorder ) in Set()
1279 Set( *pBorder, fScale, nMaxWidth, bUseDots ); in Set()
/trunk/main/sc/source/filter/xml/
H A Dxmlstyle.cxx197 XMLPropertyState* pBorder = NULL; in ContextFilter() local
249 case CTF_SC_ALLBORDER: pBorder = propertie; break; in ContextFilter()
313 if( pBorder ) in ContextFilter()
341 pBorder->mnIndex = -1; in ContextFilter()
342 pBorder->maValue.clear(); in ContextFilter()
347 pBorder->mnIndex = -1; in ContextFilter()
348 pBorder->maValue.clear(); in ContextFilter()
/trunk/main/sd/source/ui/view/
H A Ddrviews9.cxx532 SFX_REQUEST_ARG (rReq, pBorder, SfxUInt32Item, ID_VAL_BORDER, sal_False); in AttrExec()
540 CHECK_RANGE (0, (sal_Int32)pBorder->GetValue (), 100) && in AttrExec()
563 aGradient.SetBorder ((short) pBorder->GetValue ()); in AttrExec()
580 (short) pCenterY->GetValue (), (short) pBorder->GetValue (), in AttrExec()
/trunk/main/sw/source/core/unocore/
H A Dunotbl.cxx3021 const table::TableBorder* pBorder = in setPropertyValue() local
3024 && pBorder) in setPropertyValue()
3064 sal_Bool bSet = lcl_LineToSvxLine(pBorder->TopLine, aLine); in setPropertyValue()
3066 aBoxInfo.SetValid(VALID_TOP, pBorder->IsTopLineValid); in setPropertyValue()
3068 bSet = lcl_LineToSvxLine(pBorder->BottomLine, aLine); in setPropertyValue()
3072 bSet = lcl_LineToSvxLine(pBorder->LeftLine, aLine); in setPropertyValue()
3074 aBoxInfo.SetValid(VALID_LEFT, pBorder->IsLeftLineValid); in setPropertyValue()
3076 bSet = lcl_LineToSvxLine(pBorder->RightLine, aLine); in setPropertyValue()
3078 aBoxInfo.SetValid(VALID_RIGHT, pBorder->IsRightLineValid); in setPropertyValue()
3080 bSet = lcl_LineToSvxLine(pBorder->HorizontalLine, aLine); in setPropertyValue()
[all …]
/trunk/main/vcl/source/window/
H A Ddockmgr.cxx194 Window *pBorder = GetWindow( WINDOW_BORDER ); in IMPL_LINK() local
195 if( pBorder != this ) in IMPL_LINK()
198 Rectangle aBorderRect( aPt, pBorder->GetSizePixel() ); in IMPL_LINK()
206 PointerState aBorderState = pBorder->GetPointerState(); in IMPL_LINK()
/trunk/main/vcl/unx/gtk/gdi/
H A Dsalnativewidgets-gtk.cxx1103 GtkBorder* pBorder; in NWPaintGTKButton() local
1118 "default_border", &pBorder, in NWPaintGTKButton()
1122 if ( pBorder ) in NWPaintGTKButton()
1124 NW_gtk_border_set_from_border( aDefBorder, pBorder ); in NWPaintGTKButton()
1125 gtk_border_free( pBorder ); in NWPaintGTKButton()
1212 GtkBorder * pBorder; in NWGetButtonArea() local
1222 "default_border", &pBorder, in NWGetButtonArea()
1226 if ( pBorder ) in NWGetButtonArea()
1228 NW_gtk_border_set_from_border( aDefBorder, pBorder ); in NWGetButtonArea()
1229 gtk_border_free( pBorder ); in NWGetButtonArea()
/trunk/main/sc/source/ui/miscdlgs/
H A Dautofmt.cxx880 inline void lclSetStyleFromBorder( svx::frame::Style& rStyle, const SvxBorderLine* pBorder ) in lclSetStyleFromBorder() argument
882 rStyle.Set( pBorder, 1.0 / TWIPS_PER_POINT, 5 ); in lclSetStyleFromBorder()
/trunk/main/sw/source/ui/table/
H A Dtautofmt.cxx949 inline void lclSetStyleFromBorder( svx::frame::Style& rStyle, const SvxBorderLine* pBorder ) in lclSetStyleFromBorder() argument
951 rStyle.Set( pBorder, 0.05, 5 ); in lclSetStyleFromBorder()
/trunk/main/sc/source/filter/excel/
H A Dxistyle.cxx1195 …const XclImpCellBorder* pBorder = mbBorderUsed ? &maBorder : (pParentXF ? &pParentXF->maBorder : 0… in CreatePattern() local
1196 …if( pAlign && pBorder && (0 < pAlign->mnRotation) && (pAlign->mnRotation <= 180) && pBorder->HasAn… in CreatePattern()
/trunk/main/sc/source/ui/inc/
H A Dprintfun.hxx73 const SvxBoxItem* pBorder; member
/trunk/main/oox/source/xls/
H A Dstylesbuffer.cxx2434 if( const Border* pBorder = rStyles.getBorder( nBorderId ).get() ) in finalizeImport() local
2435 … if( (pAlignment->getApiData().mnRotation != 0) && pBorder->getApiData().hasAnyOuterBorder() ) in finalizeImport()
3469 if( Border* pBorder = maBorders.get( nBorderId ).get() ) in writeBorderToPropertyMap() local
3470 pBorder->writeToPropertyMap( rPropMap ); in writeBorderToPropertyMap()

Completed in 290 milliseconds