Lines Matching refs:nUIOptions
144 sal_uInt32 nUIOptions; // UI-Bits member in SwViewOption
466 { return nUIOptions & VIEWOPT_2_VSCROLLBAR ? sal_True : sal_False; } in IsViewVScrollBar()
468 { return nUIOptions & VIEWOPT_2_HSCROLLBAR ? sal_True : sal_False; } in IsViewHScrollBar()
470 { return nUIOptions & VIEWOPT_2_KEEPASPECTRATIO ? sal_True : sal_False; } in IsKeepRatio()
472 { return nUIOptions & VIEWOPT_2_GRFKEEPZOOM ? sal_True : sal_False; } in IsGrfKeepZoom()
474 { return nUIOptions & VIEWOPT_2_CONTENT_TIPS ? sal_True : sal_False; } in IsShowContentTips()
476 { return nUIOptions & VIEWOPT_2_PRTFORMAT ? sal_True : sal_False; } in IsPrtFormat()
478 { return nUIOptions & VIEWOPT_2_SCROLLBAR_TIPS ? sal_True : sal_False; } in IsShowScrollBarTips()
485 { b ? (nUIOptions |= VIEWOPT_2_VSCROLLBAR ) : ( nUIOptions &= ~VIEWOPT_2_VSCROLLBAR); } in SetViewVScrollBar()
487 { b ? (nUIOptions |= VIEWOPT_2_HSCROLLBAR ) : ( nUIOptions &= ~VIEWOPT_2_HSCROLLBAR); } in SetViewHScrollBar()
489 { b ? (nUIOptions |= VIEWOPT_2_KEEPASPECTRATIO ) : ( nUIOptions &= ~VIEWOPT_2_KEEPASPECTRATIO); } in SetKeepRatio()
491 { b ? (nUIOptions |= VIEWOPT_2_GRFKEEPZOOM ) : ( nUIOptions &= ~VIEWOPT_2_GRFKEEPZOOM); } in SetGrfKeepZoom()
493 { b ? (nUIOptions |= VIEWOPT_2_CONTENT_TIPS) : (nUIOptions &= ~VIEWOPT_2_CONTENT_TIPS); } in SetShowContentTips()
495 { b ? (nUIOptions |= VIEWOPT_2_PRTFORMAT) : (nUIOptions &= ~VIEWOPT_2_PRTFORMAT); } in SetPrtFormat()
497 … { b ? (nUIOptions |= VIEWOPT_2_SCROLLBAR_TIPS) : (nUIOptions &= ~VIEWOPT_2_SCROLLBAR_TIPS); } in SetShowScrollBarTips()
508 sal_Bool IsViewAnyRuler() const {return 0 != (nUIOptions & VIEWOPT_2_ANY_RULER);} in IsViewAnyRuler()
510 … { bSet ? (nUIOptions |= VIEWOPT_2_ANY_RULER) : (nUIOptions &= ~VIEWOPT_2_ANY_RULER);} in SetViewAnyRuler()
515 0 != (nUIOptions & VIEWOPT_2_H_RULER) : in IsViewHRuler()
517 … (nUIOptions & (VIEWOPT_2_ANY_RULER|VIEWOPT_2_H_RULER)) == (VIEWOPT_2_ANY_RULER|VIEWOPT_2_H_RULER) in IsViewHRuler()
523 … { b ? (nUIOptions |= VIEWOPT_2_H_RULER ) : ( nUIOptions &= ~VIEWOPT_2_H_RULER);} in SetViewHRuler()
528 0 !=(nUIOptions & VIEWOPT_2_V_RULER) : in IsViewVRuler()
530 (nUIOptions & in IsViewVRuler()
536 … { b ? (nUIOptions |= VIEWOPT_2_V_RULER ) : ( nUIOptions &= ~VIEWOPT_2_V_RULER);} in SetViewVRuler()
540 { return nUIOptions & VIEWOPT_2_SHADOWCRSR ? sal_True : sal_False; } in IsShadowCursor()
542 { b ? (nUIOptions |= VIEWOPT_2_SHADOWCRSR ) : ( nUIOptions &= ~VIEWOPT_2_SHADOWCRSR); } in SetShadowCursor()
546 { return nUIOptions & VIEWOPT_2_V_RULER_RIGHT ? sal_True : sal_False; } in IsVRulerRight()
548 … { b ? (nUIOptions |= VIEWOPT_2_V_RULER_RIGHT ) : ( nUIOptions &= ~VIEWOPT_2_V_RULER_RIGHT); } in SetVRulerRight()
605 nUIOptions = rVOpt.nUIOptions; in SetUIOptions()