You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
3.0 KiB
114 lines
3.0 KiB
// Copyright 2014 PDFium Authors. All rights reserved. |
|
// Use of this source code is governed by a BSD-style license that can be |
|
// found in the LICENSE file. |
|
|
|
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
|
|
|
#include "xfa/fxfa/app/xfa_ffsignature.h" |
|
|
|
#include "xfa/fxfa/app/xfa_fffield.h" |
|
#include "xfa/fxfa/xfa_ffdoc.h" |
|
#include "xfa/fxfa/xfa_ffpageview.h" |
|
#include "xfa/fxfa/xfa_ffwidget.h" |
|
|
|
CXFA_FFSignature::CXFA_FFSignature(CXFA_WidgetAcc* pDataAcc) |
|
: CXFA_FFField(pDataAcc) {} |
|
|
|
CXFA_FFSignature::~CXFA_FFSignature() {} |
|
|
|
bool CXFA_FFSignature::LoadWidget() { |
|
return CXFA_FFField::LoadWidget(); |
|
} |
|
|
|
void CXFA_FFSignature::RenderWidget(CFX_Graphics* pGS, |
|
CFX_Matrix* pMatrix, |
|
uint32_t dwStatus) { |
|
if (!IsMatchVisibleStatus(dwStatus)) |
|
return; |
|
|
|
CFX_Matrix mtRotate = GetRotateMatrix(); |
|
if (pMatrix) |
|
mtRotate.Concat(*pMatrix); |
|
|
|
CXFA_FFWidget::RenderWidget(pGS, &mtRotate, dwStatus); |
|
|
|
CXFA_Border borderUI = m_pDataAcc->GetUIBorder(); |
|
DrawBorder(pGS, borderUI, m_rtUI, &mtRotate); |
|
RenderCaption(pGS, &mtRotate); |
|
DrawHighlight(pGS, &mtRotate, dwStatus, false); |
|
} |
|
|
|
bool CXFA_FFSignature::OnMouseEnter() { |
|
return false; |
|
} |
|
|
|
bool CXFA_FFSignature::OnMouseExit() { |
|
return false; |
|
} |
|
|
|
bool CXFA_FFSignature::OnLButtonDown(uint32_t dwFlags, |
|
const CFX_PointF& point) { |
|
return false; |
|
} |
|
|
|
bool CXFA_FFSignature::OnLButtonUp(uint32_t dwFlags, const CFX_PointF& point) { |
|
return false; |
|
} |
|
|
|
bool CXFA_FFSignature::OnLButtonDblClk(uint32_t dwFlags, |
|
const CFX_PointF& point) { |
|
return false; |
|
} |
|
|
|
bool CXFA_FFSignature::OnMouseMove(uint32_t dwFlags, const CFX_PointF& point) { |
|
return false; |
|
} |
|
|
|
bool CXFA_FFSignature::OnMouseWheel(uint32_t dwFlags, |
|
int16_t zDelta, |
|
const CFX_PointF& point) { |
|
return false; |
|
} |
|
|
|
bool CXFA_FFSignature::OnRButtonDown(uint32_t dwFlags, |
|
const CFX_PointF& point) { |
|
return false; |
|
} |
|
|
|
bool CXFA_FFSignature::OnRButtonUp(uint32_t dwFlags, const CFX_PointF& point) { |
|
return false; |
|
} |
|
|
|
bool CXFA_FFSignature::OnRButtonDblClk(uint32_t dwFlags, |
|
const CFX_PointF& point) { |
|
return false; |
|
} |
|
|
|
bool CXFA_FFSignature::OnKeyDown(uint32_t dwKeyCode, uint32_t dwFlags) { |
|
return false; |
|
} |
|
|
|
bool CXFA_FFSignature::OnKeyUp(uint32_t dwKeyCode, uint32_t dwFlags) { |
|
return false; |
|
} |
|
|
|
bool CXFA_FFSignature::OnChar(uint32_t dwChar, uint32_t dwFlags) { |
|
return false; |
|
} |
|
|
|
FWL_WidgetHit CXFA_FFSignature::OnHitTest(const CFX_PointF& point) { |
|
if (m_pNormalWidget && |
|
m_pNormalWidget->HitTest(FWLToClient(point)) != FWL_WidgetHit::Unknown) { |
|
return FWL_WidgetHit::Client; |
|
} |
|
|
|
if (!GetRectWithoutRotate().Contains(point)) |
|
return FWL_WidgetHit::Unknown; |
|
if (m_rtCaption.Contains(point)) |
|
return FWL_WidgetHit::Titlebar; |
|
return FWL_WidgetHit::Client; |
|
} |
|
|
|
bool CXFA_FFSignature::OnSetCursor(const CFX_PointF& point) { |
|
return false; |
|
}
|
|
|