Lines Matching refs:nStyle

730         if ( mpData->pBorders[i].nStyle & RULER_STYLE_INVISIBLE )  in ImplDrawBorders()
765 if ( mpData->pBorders[i].nStyle & RULER_BORDER_VARIABLE ) in ImplDrawBorders()
796 if ( mpData->pBorders[i].nStyle & RULER_BORDER_SIZEABLE ) in ImplDrawBorders()
825 if ( mpData->pBorders[i].nStyle & RULER_BORDER_SNAP ) in ImplDrawBorders()
827 else if ( mpData->pBorders[i].nStyle & RULER_BORDER_MARGIN ) in ImplDrawBorders()
844 void Ruler::ImplDrawIndent( const Polygon& rPoly, sal_uInt16 nStyle ) in ImplDrawIndent() argument
849 sal_uInt16 nIndentStyle = nStyle & RULER_INDENT_STYLE; in ImplDrawIndent()
851 if ( nStyle & RULER_STYLE_INVISIBLE ) in ImplDrawIndent()
854 if ( nStyle & RULER_STYLE_DONTKNOW ) in ImplDrawIndent()
867 if ( !(rStyleSettings.GetOptions() & STYLE_OPTION_MONO) && !(nStyle & RULER_STYLE_DONTKNOW) ) in ImplDrawIndent()
941 if ( mpData->pIndents[j].nStyle & RULER_STYLE_INVISIBLE ) in ImplDrawIndents()
944 sal_uInt16 nStyle = mpData->pIndents[j].nStyle; in ImplDrawIndents() local
945 sal_uInt16 nIndentStyle = nStyle & RULER_INDENT_STYLE; in ImplDrawIndents()
985 ImplDrawIndent( aPoly, nStyle ); in ImplDrawIndents()
1024 const Point& rPos, sal_uInt16 nStyle, WinBits nWinBits ) in ImplDrawRulerTab() argument
1026 if ( nStyle & RULER_STYLE_INVISIBLE ) in ImplDrawRulerTab()
1029 sal_uInt16 nTabStyle = nStyle & RULER_TAB_STYLE; in ImplDrawRulerTab()
1030 sal_Bool bRTL = 0 != (nStyle & RULER_TAB_RTL); in ImplDrawRulerTab()
1102 void Ruler::ImplDrawTab( OutputDevice* pDevice, const Point& rPos, sal_uInt16 nStyle ) in ImplDrawTab() argument
1104 if ( nStyle & RULER_STYLE_INVISIBLE ) in ImplDrawTab()
1108 if ( nStyle & RULER_STYLE_DONTKNOW ) in ImplDrawTab()
1114 nStyle |= RULER_TAB_RTL; in ImplDrawTab()
1115 ImplDrawRulerTab( pDevice, rPos, nStyle, GetStyle()); in ImplDrawTab()
1124 if ( mpData->pTabs[i].nStyle & RULER_STYLE_INVISIBLE ) in ImplDrawTabs()
1132 ImplDrawTab( &maVirDev, Point( n, nTopBottom ), mpData->pTabs[i].nStyle ); in ImplDrawTabs()
1620 sal_uInt16 nStyle; in ImplHitTest() local
1682 nStyle = mpData->pTabs[i-1].nStyle; in ImplHitTest()
1683 if ( !(nStyle & RULER_STYLE_INVISIBLE) ) in ImplHitTest()
1685 nStyle &= RULER_TAB_STYLE; in ImplHitTest()
1688 if ( nStyle != RULER_TAB_DEFAULT ) in ImplHitTest()
1692 if ( nStyle == RULER_TAB_LEFT ) in ImplHitTest()
1697 else if ( nStyle == RULER_TAB_RIGHT ) in ImplHitTest()
1727 nStyle = mpData->pIndents[i-1].nStyle; in ImplHitTest()
1728 if ( (! bRequireStyle || nStyle == nRequiredStyle) && in ImplHitTest()
1729 !(nStyle & RULER_STYLE_INVISIBLE) ) in ImplHitTest()
1731 nStyle &= RULER_INDENT_STYLE; in ImplHitTest()
1734 if ( (nStyle == RULER_INDENT_BOTTOM) ^ (!bIsHori) ) in ImplHitTest()
1789 nStyle = mpData->pBorders[i-1].nStyle; in ImplHitTest()
1790 if ( !(nStyle & RULER_STYLE_INVISIBLE) ) in ImplHitTest()
1795 if ( !(nStyle & RULER_BORDER_SIZEABLE) ) in ImplHitTest()
1797 if ( nStyle & RULER_BORDER_MOVEABLE ) in ImplHitTest()
1829 if ( nStyle & RULER_BORDER_MOVEABLE ) in ImplHitTest()
1874 nStyle = mpData->pTabs[i-1].nStyle; in ImplHitTest()
1875 if ( !(nStyle & RULER_STYLE_INVISIBLE) ) in ImplHitTest()
1877 nStyle &= RULER_TAB_STYLE; in ImplHitTest()
1880 if ( nStyle != RULER_TAB_DEFAULT ) in ImplHitTest()
1884 if ( nStyle == RULER_TAB_LEFT ) in ImplHitTest()
1889 else if ( nStyle == RULER_TAB_RIGHT ) in ImplHitTest()
2845 void Ruler::SetExtraType( RulerExtra eNewExtraType, sal_uInt16 nStyle ) in SetExtraType() argument
2850 mnExtraStyle = nStyle; in SetExtraType()
2909 (pAry1->nStyle != pAry2->nStyle) ) in SetLines()
2986 (pAry1->nStyle != pAry2->nStyle) ) in SetArrows()
3031 (pAry1->nStyle != pAry2->nStyle) ) in SetBorders()
3076 (pAry1->nStyle != pAry2->nStyle) ) in SetIndents()
3120 (pAry1->nStyle != pAry2->nStyle) ) in SetTabs()
3138 void Ruler::SetStyle( WinBits nStyle ) in SetStyle() argument
3140 if ( mnWinStyle != nStyle ) in SetStyle()
3142 mnWinStyle = nStyle; in SetStyle()
3149 void Ruler::DrawTab( OutputDevice* pDevice, const Point& rPos, sal_uInt16 nStyle ) in DrawTab() argument
3153 sal_uInt16 nTabStyle = nStyle & (RULER_TAB_STYLE | RULER_TAB_RTL); in DrawTab()
3159 ImplDrawRulerTab( pDevice, aPos, nTabStyle, nStyle ); in DrawTab()