Lines Matching refs:GetNormalWidget
95 CFX_RectF rtWidget = GetNormalWidget()->GetWidgetRect(); in RenderWidget()
98 GetApp()->GetFWLWidgetMgr()->OnDrawWidget(GetNormalWidget(), pGS, mt); in RenderWidget()
123 CFWL_Widget* CXFA_FFField::GetNormalWidget() { in GetNormalWidget() function in CXFA_FFField
127 const CFWL_Widget* CXFA_FFField::GetNormalWidget() const { in GetNormalWidget() function in CXFA_FFField
136 return GetNormalWidget() && CXFA_FFWidget::IsLoaded(); in IsLoaded()
164 static_cast<CFWL_Edit*>(GetNormalWidget())->SetScrollOffset(fScrollOffset); in SetEditScrollOffset()
173 if (GetNormalWidget()) in PerformLayout()
174 GetNormalWidget()->Update(); in PerformLayout()
346 if (GetNormalWidget()) in UpdateFWL()
347 GetNormalWidget()->Update(); in UpdateFWL()
358 if (!GetNormalWidget()) in SetFWLRect()
367 GetNormalWidget()->SetWidgetRect(rtUi); in SetFWLRect()
371 if (!GetNormalWidget()) in OnMouseEnter()
374 CFWL_MessageMouse msg(GetNormalWidget(), in OnMouseEnter()
382 if (!GetNormalWidget()) in OnMouseExit()
385 CFWL_MessageMouse msg(GetNormalWidget(), in OnMouseExit()
393 return GetNormalWidget() in FWLToClient()
394 ? point - GetNormalWidget()->GetWidgetRect().TopLeft() in FWLToClient()
402 if (!GetNormalWidget()) in AcceptsFocusOnButtonDown()
415 CFWL_MessageMouse msg(GetNormalWidget(), in OnLButtonDown()
424 if (!GetNormalWidget()) in OnLButtonUp()
431 CFWL_MessageMouse msg(GetNormalWidget(), in OnLButtonUp()
440 if (!GetNormalWidget()) in OnLButtonDblClk()
443 CFWL_MessageMouse msg(GetNormalWidget(), in OnLButtonDblClk()
452 if (!GetNormalWidget()) in OnMouseMove()
455 CFWL_MessageMouse msg(GetNormalWidget(), in OnMouseMove()
465 if (!GetNormalWidget()) in OnMouseWheel()
468 CFWL_MessageMouseWheel msg(GetNormalWidget(), FWLToClient(point), delta); in OnMouseWheel()
477 CFWL_MessageMouse msg(GetNormalWidget(), in OnRButtonDown()
486 if (!GetNormalWidget()) in OnRButtonUp()
492 CFWL_MessageMouse msg(GetNormalWidget(), in OnRButtonUp()
501 if (!GetNormalWidget()) in OnRButtonDblClk()
504 CFWL_MessageMouse msg(GetNormalWidget(), in OnRButtonDblClk()
515 if (!GetNormalWidget()) in OnSetFocus()
518 CFWL_MessageSetFocus msg(GetNormalWidget()); in OnSetFocus()
527 if (GetNormalWidget()) { in OnKillFocus()
528 CFWL_MessageKillFocus msg(GetNormalWidget()); in OnKillFocus()
538 if (!GetNormalWidget() || !GetDoc()->GetXFADoc()->IsInteractive()) in OnKeyDown()
541 CFWL_MessageKey msg(GetNormalWidget(), CFWL_MessageKey::KeyCommand::kKeyDown, in OnKeyDown()
552 if (!GetNormalWidget()) in OnChar()
557 CFWL_MessageKey msg(GetNormalWidget(), CFWL_MessageKey::KeyCommand::kChar, in OnChar()
564 auto* pNorm = GetNormalWidget(); in HitTest()
575 return GetNormalWidget() && in PtInActiveRect()
576 GetNormalWidget()->GetWidgetRect().Contains(point); in PtInActiveRect()