Index: fpdfsdk/src/formfiller/FFL_IFormFiller.cpp |
diff --git a/fpdfsdk/src/formfiller/FFL_IFormFiller.cpp b/fpdfsdk/src/formfiller/FFL_IFormFiller.cpp |
index 62090a5c08b8ee998c63e8d5ab9450061b2b86c3..078dd13c00fc0f1ea6d7a0f4d0c4e763aa1b8d70 100644 |
--- a/fpdfsdk/src/formfiller/FFL_IFormFiller.cpp |
+++ b/fpdfsdk/src/formfiller/FFL_IFormFiller.cpp |
@@ -443,19 +443,6 @@ FX_BOOL CFFL_IFormFiller::OnRButtonUp(CPDFSDK_PageView* pPageView, CPDFSDK_Annot |
return FALSE; |
} |
-FX_BOOL CFFL_IFormFiller::OnRButtonDblClk(CPDFSDK_PageView* pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) |
-{ |
- ASSERT(pAnnot != NULL); |
- ASSERT(pAnnot->GetPDFAnnot()->GetSubType() == "Widget"); |
- |
- if (CFFL_FormFiller* pFormFiller = GetFormFiller(pAnnot, FALSE)) |
- { |
- return pFormFiller->OnRButtonDblClk(pPageView, pAnnot, nFlags, point); |
- } |
- |
- return FALSE; |
-} |
- |
FX_BOOL CFFL_IFormFiller::OnKeyDown(CPDFSDK_Annot* pAnnot, FX_UINT nKeyCode, FX_UINT nFlags) |
{ |
ASSERT(pAnnot != NULL); |
@@ -484,28 +471,6 @@ FX_BOOL CFFL_IFormFiller::OnChar(CPDFSDK_Annot* pAnnot, FX_UINT nChar, FX_UINT n |
return FALSE; |
} |
-void CFFL_IFormFiller::OnDeSelected(CPDFSDK_Annot* pAnnot) |
-{ |
- ASSERT(pAnnot != NULL); |
- ASSERT(pAnnot->GetPDFAnnot()->GetSubType() == "Widget"); |
- |
- if (CFFL_FormFiller* pFormFiller = GetFormFiller(pAnnot, FALSE)) |
- { |
- pFormFiller->OnDeSelected(pAnnot); |
- } |
-} |
- |
-void CFFL_IFormFiller::OnSelected(CPDFSDK_Annot* pAnnot) |
-{ |
- ASSERT(pAnnot != NULL); |
- ASSERT(pAnnot->GetPDFAnnot()->GetSubType() == "Widget"); |
- |
- if (CFFL_FormFiller* pFormFiller = GetFormFiller(pAnnot, FALSE)) |
- { |
- pFormFiller->OnSelected(pAnnot); |
- } |
-} |
- |
FX_BOOL CFFL_IFormFiller::OnSetFocus(CPDFSDK_Annot* pAnnot,FX_UINT nFlag) |
{ |
if(!pAnnot) return FALSE; |
@@ -699,11 +664,6 @@ void CFFL_IFormFiller::UnRegisterFormFiller(CPDFSDK_Annot* pAnnot) |
m_Maps.erase(it); |
} |
-void CFFL_IFormFiller::SetFocusAnnotTab(CPDFSDK_Annot* pWidget, FX_BOOL bSameField, FX_BOOL bNext) |
-{ |
- |
-} |
- |
void CFFL_IFormFiller::QueryWherePopup(void* pPrivateData, FX_FLOAT fPopupMin,FX_FLOAT fPopupMax, int32_t & nRet, FX_FLOAT & fPopupRet) |
{ |
ASSERT(pPrivateData != NULL); |
@@ -795,44 +755,6 @@ void CFFL_IFormFiller::QueryWherePopup(void* pPrivateData, FX_FLOAT fPopupMin,FX |
fPopupRet = fFactHeight; |
} |
-void CFFL_IFormFiller::OnSetWindowRect(void* pPrivateData, const CPDF_Rect & rcWindow) |
-{ |
- ASSERT(pPrivateData != NULL); |
- |
- CFFL_PrivateData* pData = (CFFL_PrivateData*)pPrivateData; |
- |
- if (CFFL_FormFiller* pFormFiller = GetFormFiller(pData->pWidget, TRUE)) |
- { |
- |
- CPDF_Rect rcOld = pFormFiller->PWLtoFFL(pFormFiller->GetWindowRect(pData->pPageView)); |
- CPDF_Rect rcNew = pFormFiller->PWLtoFFL(rcWindow); |
- pFormFiller->SetWindowRect(pData->pPageView, rcWindow); |
- |
- CPDF_Rect unRect = rcOld; |
- unRect.Union(rcNew); |
- //FX_RECT rcRect = unRect.GetOutterRect(); |
- unRect.left = (FX_FLOAT)(unRect.left - 0.5); |
- unRect.right = (FX_FLOAT)(unRect.right + 0.5); |
- unRect.top = (FX_FLOAT)(unRect.top + 0.5); |
- unRect.bottom = (FX_FLOAT)(unRect.bottom -0.5); |
- m_pApp->FFI_Invalidate(pData->pWidget->GetPDFPage(), unRect.left, unRect.top, unRect.right, unRect.bottom); |
- } |
-} |
- |
-void CFFL_IFormFiller::OnKeyStroke(FX_BOOL bEditOrList, void* pPrivateData, int32_t nKeyCode, CFX_WideString& strChange, |
- const CFX_WideString& strChangeEx, FX_BOOL bKeyDown, |
- FX_BOOL & bRC, FX_BOOL & bExit) |
-{ |
- ASSERT(pPrivateData != NULL); |
- CFFL_PrivateData* pData = (CFFL_PrivateData*)pPrivateData; |
- ASSERT(pData->pWidget != NULL); |
- |
- CFFL_FormFiller* pFormFiller = GetFormFiller(pData->pWidget, FALSE); |
- ASSERT(pFormFiller != NULL); |
- |
- pFormFiller->OnKeyStroke(bKeyDown); |
-} |
- |
void CFFL_IFormFiller::OnKeyStrokeCommit(CPDFSDK_Widget* pWidget, CPDFSDK_PageView* pPageView, FX_BOOL& bRC, FX_BOOL& bExit, FX_DWORD nFlag) |
{ |
if (!m_bNotifying) |
@@ -844,10 +766,6 @@ void CFFL_IFormFiller::OnKeyStrokeCommit(CPDFSDK_Widget* pWidget, CPDFSDK_PageVi |
pWidget->ClearAppModified(); |
ASSERT(pPageView != NULL); |
-// CReader_DocView* pDocView = pPageView->GetDocView(); |
-// ASSERT(pDocView != NULL); |
- |
- |
PDFSDK_FieldAction fa; |
fa.bModifier = m_pApp->FFI_IsCTRLKeyDown(nFlag); |
@@ -977,54 +895,6 @@ FX_BOOL CFFL_IFormFiller::IsValidAnnot(CPDFSDK_PageView* pPageView, CPDFSDK_Anno |
return FALSE; |
} |
-void CFFL_IFormFiller::BeforeUndo(CPDFSDK_Document* pDocument) |
-{ |
- |
-} |
- |
-void CFFL_IFormFiller::BeforeRedo(CPDFSDK_Document* pDocument) |
-{ |
- BeforeUndo(pDocument); |
-} |
- |
-void CFFL_IFormFiller::AfterUndo(CPDFSDK_Document* pDocument) |
-{ |
-} |
- |
-void CFFL_IFormFiller::AfterRedo(CPDFSDK_Document* pDocument) |
-{ |
-} |
- |
-FX_BOOL CFFL_IFormFiller::CanCopy(CPDFSDK_Document* pDocument) |
-{ |
- |
- return FALSE; |
-} |
- |
-FX_BOOL CFFL_IFormFiller::CanCut(CPDFSDK_Document* pDocument) |
-{ |
- |
- return FALSE; |
-} |
- |
-FX_BOOL CFFL_IFormFiller::CanPaste(CPDFSDK_Document* pDocument) |
-{ |
- |
- return FALSE; |
-} |
- |
-void CFFL_IFormFiller::DoCopy(CPDFSDK_Document* pDocument) |
-{ |
-} |
- |
-void CFFL_IFormFiller::DoCut(CPDFSDK_Document* pDocument) |
-{ |
-} |
- |
-void CFFL_IFormFiller::DoPaste(CPDFSDK_Document* pDocument) |
-{ |
- |
-} |
void CFFL_IFormFiller::OnBeforeKeyStroke(FX_BOOL bEditOrList, void* pPrivateData, int32_t nKeyCode, |
CFX_WideString & strChange, const CFX_WideString& strChangeEx, |
int nSelStart, int nSelEnd, |