Home
last modified time | relevance | path

Searched refs:rBorder (Results 1 – 21 of 21) sorted by relevance

/trunk/main/svx/source/dialog/
H A Dframelink.cxx311 { return rBorder.Prim() ? (lclGetBeg( rBorder ) + 256 * (rBorder.Prim() - 1)) : 0; } in lclGetPrimEnd()
319 { return rBorder.Secn() ? (lclGetEnd( rBorder ) - 256 * (rBorder.Secn() - 1)) : 0; } in lclGetSecnBeg()
327 { return rBorder.Secn() ? (lclGetBeg( rBorder ) + 256 * rBorder.Prim()) : 0; } in lclGetDistBeg()
335 { return rBorder.Secn() ? (lclGetEnd( rBorder ) - 256 * rBorder.Secn()) : 0; } in lclGetDistEnd()
343 { return rBorder.Prim() ? (lclGetBeg( rBorder ) - 256) : 0; } in lclGetBeforeBeg()
352 { return rBorder.Prim() ? (lclGetEnd( rBorder ) + 256) : 0; } in lclGetBehindEnd()
918 lclGetBeg( rBorder ), lclGetPrimEnd( rBorder ), rBorder.Dotted() ); in lclDrawHorFrameBorder()
921 lclGetSecnBeg( rBorder ), lclGetEnd( rBorder ), rBorder.Dotted() ); in lclDrawHorFrameBorder()
973 lclGetBeg( rBorder ), lclGetPrimEnd( rBorder ), rBorder.Dotted() ); in lclDrawVerFrameBorder()
976 lclGetSecnBeg( rBorder ), lclGetEnd( rBorder ), rBorder.Dotted() ); in lclDrawVerFrameBorder()
[all …]
H A Dfrmsel.cxx566 switch( rBorder.GetType() ) in DrawArrows()
582 switch( rBorder.GetType() ) in DrawArrows()
715 SetBorderCoreStyle( rBorder, &maCurrStyle ); in SetBorderState()
717 rBorder.SetState( eState ); in SetBorderState()
726 rBorder.SetCoreStyle( pStyle ); in SetBorderCoreStyle()
733 switch( rBorder.GetState() ) in ToggleBorderState()
740 SetBorderState( rBorder, FRAMESTATE_SHOW ); in ToggleBorderState()
753 rBorder.Select( bSelect ); in SelectBorder()
754 DrawArrows( rBorder ); in SelectBorder()
1036 if( rBorder.IsEnabled() ) in GetClickBoundRect()
[all …]
/trunk/main/tools/inc/tools/
H A Dsvborder.hxx50 Left() = rBorder.Left(); in operator =()
51 Top() = rBorder.Top(); in operator =()
52 Right() = rBorder.Right(); in operator =()
58 Left() += rBorder.Left(); in operator +=()
59 Top() += rBorder.Top(); in operator +=()
60 Right() += rBorder.Right(); in operator +=()
61 Bottom() += rBorder.Bottom(); in operator +=()
66 Left() -= rBorder.Left(); in operator -=()
67 Top() -= rBorder.Top(); in operator -=()
68 Right() -= rBorder.Right(); in operator -=()
[all …]
/trunk/main/tools/source/generic/
H A Dsvborder.cxx48 Rectangle & operator += ( Rectangle & rRect, const SvBorder & rBorder ) in operator +=() argument
52 aS.Width() += rBorder.Left() + rBorder.Right(); in operator +=()
53 aS.Height() += rBorder.Top() + rBorder.Bottom(); in operator +=()
55 rRect.Left() -= rBorder.Left(); in operator +=()
56 rRect.Top() -= rBorder.Top(); in operator +=()
61 Rectangle & operator -= ( Rectangle & rRect, const SvBorder & rBorder ) in operator -=() argument
65 aS.Width() -= rBorder.Left() + rBorder.Right(); in operator -=()
66 aS.Height() -= rBorder.Top() + rBorder.Bottom(); in operator -=()
68 rRect.Left() += rBorder.Left(); in operator -=()
69 rRect.Top() += rBorder.Top(); in operator -=()
/trunk/main/svx/inc/svx/
H A Dframelink.hxx121 …inline explicit Style( const SvxBorderLine& rBorder, double fScale = 1.0, sal_uInt16 nMaxWidth… in Style() argument
122 meRefMode( REFMODE_CENTERED ) { Set( rBorder, fScale, nMaxWidth ); } in Style()
145 …void Set( const SvxBorderLine& rBorder, double fScale = 1.0, sal_uInt16 nMaxWidth =…
487 const Style& rBorder, /// Style of the processed frame border.
519 const Style& rBorder, /// Style of the processed frame border.
546 const Style& rBorder, /// Style of the frame border to draw.
604 const Style& rBorder, /// Style of the processed frame border.
636 const Style& rBorder, /// Style of the processed frame border.
663 const Style& rBorder, /// Style of the frame border to draw.
682 const Style& rBorder, /// Style of the frame border to draw.
/trunk/main/writerfilter/source/dmapper/
H A DDomainMapperTableHandler.cxx297 void lcl_debug_TableBorder(table::TableBorder & rBorder) in lcl_debug_TableBorder() argument
300 lcl_debug_BorderLine(rBorder.TopLine); in lcl_debug_TableBorder()
301 dmapper_logger->attribute("IsTopLineValid", rBorder.IsTopLineValid); in lcl_debug_TableBorder()
302 lcl_debug_BorderLine(rBorder.BottomLine); in lcl_debug_TableBorder()
304 lcl_debug_BorderLine(rBorder.LeftLine); in lcl_debug_TableBorder()
305 dmapper_logger->attribute("IsLeftLineValid", rBorder.IsLeftLineValid); in lcl_debug_TableBorder()
306 lcl_debug_BorderLine(rBorder.RightLine); in lcl_debug_TableBorder()
308 lcl_debug_BorderLine(rBorder.VerticalLine); in lcl_debug_TableBorder()
310 lcl_debug_BorderLine(rBorder.HorizontalLine); in lcl_debug_TableBorder()
312 dmapper_logger->attribute("Distance", rBorder.Distance); in lcl_debug_TableBorder()
[all …]
/trunk/main/sfx2/source/view/
H A Dframe.cxx794 void SfxFrame::SetToolSpaceBorderPixel_Impl( const SvBorder& rBorder ) in SetToolSpaceBorderPixel_Impl() argument
796 pImp->aBorder = rBorder; in SetToolSpaceBorderPixel_Impl()
800 Point aPos ( rBorder.Left(), rBorder.Top() ); in SetToolSpaceBorderPixel_Impl()
802 long nDeltaX = rBorder.Left() + rBorder.Right(); in SetToolSpaceBorderPixel_Impl()
808 long nDeltaY = rBorder.Top() + rBorder.Bottom(); in SetToolSpaceBorderPixel_Impl()
816 … sal_Bool bHasTools = rBorder.Left() != rBorder.Right() || rBorder.Top() != rBorder.Bottom(); in SetToolSpaceBorderPixel_Impl()
H A Dviewfrm.cxx1308 const SvBorder& rBorder in SetBorderPixelImpl() argument
1312 pImp->aBorder = rBorder; in SetBorderPixelImpl()
1319 aSize.Width() += rBorder.Left() + rBorder.Right(); in SetBorderPixelImpl()
1320 aSize.Height() += rBorder.Top() + rBorder.Bottom(); in SetBorderPixelImpl()
1337 aEditArea.Left() += rBorder.Left(); in SetBorderPixelImpl()
1338 aEditArea.Right() -= rBorder.Right(); in SetBorderPixelImpl()
1339 aEditArea.Top() += rBorder.Top(); in SetBorderPixelImpl()
1340 aEditArea.Bottom() -= rBorder.Bottom(); in SetBorderPixelImpl()
H A Dviewsh.cxx1243 void SfxViewShell::SetBorderPixel( const SvBorder &rBorder ) in SetBorderPixel() argument
1250 GetViewFrame()->SetBorderPixelImpl( this, rBorder ); in SetBorderPixel()
/trunk/main/svx/source/inc/
H A Dfrmselimpl.hxx183 void DrawArrows( const FrameBorder& rBorder );
210 void SetBorderState( FrameBorder& rBorder, FrameBorderState eState );
212 void SetBorderCoreStyle( FrameBorder& rBorder, const SvxBorderLine* pStyle );
214 void SetBorderColor( FrameBorder& rBorder, const Color& rColor );
217 void ToggleBorderState( FrameBorder& rBorder );
222 void SelectBorder( FrameBorder& rBorder, bool bSelect );
/trunk/main/sc/source/filter/excel/
H A Dxestyle.cxx2319 inline explicit XclExpBorderPred( const XclExpCellBorder& rBorder ) : mrBorder( rBorder ) {} in XclExpBorderPred()
2326 mrBorder.mnLeftColor == rBorder.mnLeftColor && in operator ()()
2327 mrBorder.mnRightColor == rBorder.mnRightColor && in operator ()()
2328 mrBorder.mnTopColor == rBorder.mnTopColor && in operator ()()
2330 mrBorder.mnDiagColor == rBorder.mnDiagColor && in operator ()()
2331 mrBorder.mnLeftLine == rBorder.mnLeftLine && in operator ()()
2332 mrBorder.mnRightLine == rBorder.mnRightLine && in operator ()()
2333 mrBorder.mnTopLine == rBorder.mnTopLine && in operator ()()
2334 mrBorder.mnBottomLine == rBorder.mnBottomLine && in operator ()()
2335 mrBorder.mnDiagLine == rBorder.mnDiagLine && in operator ()()
[all …]
/trunk/main/sc/source/ui/view/
H A Dtabview.cxx951 void ScTabView::GetBorderSize( SvBorder& rBorder, const Size& /* rSize */ ) in GetBorderSize() argument
960 rBorder = SvBorder(); in GetBorderSize()
964 rBorder.Right() += aVScrollBottom.GetSizePixel().Width(); in GetBorderSize()
965 rBorder.Bottom() += aHScrollLeft.GetSizePixel().Height(); in GetBorderSize()
970 rBorder.Left() += pRowOutline[SC_SPLIT_BOTTOM]->GetDepthSize(); in GetBorderSize()
972 rBorder.Top() += pColOutline[SC_SPLIT_LEFT]->GetDepthSize(); in GetBorderSize()
976 rBorder.Left() += pRowBar[SC_SPLIT_BOTTOM]->GetSizePixel().Width(); in GetBorderSize()
977 rBorder.Top() += pColBar[SC_SPLIT_LEFT]->GetSizePixel().Height(); in GetBorderSize()
981 ::std::swap( rBorder.Left(), rBorder.Right() ); in GetBorderSize()
H A Dhdrcont.cxx608 SCCOLROW ScHeaderControl::GetMousePos( const MouseEvent& rMEvt, sal_Bool& rBorder ) in GetMousePos() argument
648 rBorder = bFound; in GetMousePos()
/trunk/main/editeng/source/rtf/
H A Drtfitem.cxx1433 const SvxBorderLine& rBorder ) in SetBorderLine() argument
1440 rItem.SetLine( &rBorder, BOX_LINE_TOP ); in SetBorderLine()
1445 rItem.SetLine( &rBorder, BOX_LINE_BOTTOM ); in SetBorderLine()
1450 rItem.SetLine( &rBorder, BOX_LINE_LEFT ); in SetBorderLine()
1455 rItem.SetLine( &rBorder, BOX_LINE_RIGHT ); in SetBorderLine()
/trunk/main/sc/source/ui/unoobj/
H A Dcellsuno.cxx961 rInner.SetValid( VALID_TOP, rBorder.IsTopLineValid ); in FillBoxItems()
963 rInner.SetValid( VALID_LEFT, rBorder.IsLeftLineValid ); in FillBoxItems()
964 rInner.SetValid( VALID_RIGHT, rBorder.IsRightLineValid ); in FillBoxItems()
967 rInner.SetValid( VALID_DISTANCE, rBorder.IsDistanceValid ); in FillBoxItems()
995 rBorder.Distance = rOuter.GetDistance(); in FillTableBorder()
996 rBorder.IsTopLineValid = rInner.IsValid(VALID_TOP); in FillTableBorder()
997 rBorder.IsBottomLineValid = rInner.IsValid(VALID_BOTTOM); in FillTableBorder()
998 rBorder.IsLeftLineValid = rInner.IsValid(VALID_LEFT); in FillTableBorder()
999 rBorder.IsRightLineValid = rInner.IsValid(VALID_RIGHT); in FillTableBorder()
1001 rBorder.IsVerticalLineValid = rInner.IsValid(VALID_VERT); in FillTableBorder()
[all …]
/trunk/main/sc/source/ui/inc/
H A Dhdrcont.hxx75 SCCOLROW GetMousePos( const MouseEvent& rMEvt, sal_Bool& rBorder );
H A Dtabview.hxx207 void GetBorderSize( SvBorder& rBorder, const Size& rSize );
/trunk/main/sw/source/ui/docvw/
H A DPostItMgr.cxx995 const Rectangle rBorder = mpEditWin->LogicToPixel( aBorder); in LayoutByPage() local
996 long lTopBorder = rBorder.Top() + 5; in LayoutByPage()
997 long lBottomBorder = rBorder.Bottom() - 5; in LayoutByPage()
/trunk/main/sfx2/inc/sfx2/
H A Dviewfrm.hxx171 …DLLPRIVATE virtual sal_Bool SetBorderPixelImpl( const SfxViewShell *pSh, const SvBorder &rBorder );
H A Dviewsh.hxx233 void SetBorderPixel( const SvBorder &rBorder );
/trunk/main/sc/inc/
H A Dcellsuno.hxx138 …s( SvxBoxItem& rOuter, SvxBoxInfoItem& rInner, const com::sun::star::table::TableBorder& rBorder );
140 static void FillTableBorder( com::sun::star::table::TableBorder& rBorder,

Completed in 189 milliseconds