• Home
  • Raw
  • Download

Lines Matching refs:m_pInterForm

27 					m_pInterForm(pInterForm),  in CPDFSDK_Widget()
31 ASSERT(m_pInterForm != NULL); in CPDFSDK_Widget()
95 CPDF_InterForm* pPDFInterForm = m_pInterForm->GetInterForm(); in GetFieldFlags()
114 ASSERT(m_pInterForm != NULL); in GetFormField()
124 ASSERT(m_pInterForm != NULL); in GetFormControl()
126 CPDF_InterForm* pPDFInterForm = m_pInterForm->GetInterForm(); in GetFormControl()
397 ASSERT(m_pInterForm != NULL); in OnFormat()
399 return m_pInterForm->OnFormat(pFormField, nCommitKey, bFormated); in OnFormat()
408 ASSERT(m_pInterForm != NULL); in ResetFieldAppearance()
410 m_pInterForm->ResetFieldAppearance(pFormField, NULL, bValueChanged); in ResetFieldAppearance()
445 ASSERT(m_pInterForm != NULL); in UpdateField()
446 m_pInterForm->UpdateField(pFormField); in UpdateField()
451 ASSERT(m_pInterForm != NULL); in DrawShadow()
454 if (m_pInterForm->IsNeedHighLight(nFieldType)) in DrawShadow()
460 FX_COLORREF color = m_pInterForm->GetHighlightColor(nFieldType); in DrawShadow()
461 FX_BYTE alpha = m_pInterForm->GetHighlightAlpha(); in DrawShadow()
464 ASSERT(m_pInterForm->GetDocument()); in DrawShadow()
465 CPDFDoc_Environment* pEnv = m_pInterForm->GetDocument()->GetEnv(); in DrawShadow()
644 ASSERT(this->m_pInterForm != NULL); in ResetAppearance_PushButton()
645 CPDFSDK_Document* pDoc = m_pInterForm->GetDocument(); in ResetAppearance_PushButton()
1047 ASSERT(this->m_pInterForm != NULL); in ResetAppearance_ComboBox()
1048 CPDFSDK_Document* pDoc = m_pInterForm->GetDocument(); in ResetAppearance_ComboBox()
1125 ASSERT(this->m_pInterForm != NULL); in ResetAppearance_ListBox()
1126 CPDFSDK_Document* pDoc = m_pInterForm->GetDocument(); in ResetAppearance_ListBox()
1217 ASSERT(this->m_pInterForm != NULL); in ResetAppearance_TextField()
1218 CPDFSDK_Document* pDoc = m_pInterForm->GetDocument(); in ResetAppearance_TextField()
1686 m_pInterForm(NULL), in CPDFSDK_InterForm()
1691 m_pInterForm = new CPDF_InterForm(m_pDocument->GetDocument(), FALSE); in CPDFSDK_InterForm()
1692 ASSERT(m_pInterForm != NULL); in CPDFSDK_InterForm()
1693 m_pInterForm->SetFormNotify(this); in CPDFSDK_InterForm()
1702 ASSERT(m_pInterForm != NULL); in ~CPDFSDK_InterForm()
1703 delete m_pInterForm; in ~CPDFSDK_InterForm()
1704 m_pInterForm = NULL; in ~CPDFSDK_InterForm()
1716 return m_pInterForm; in GetInterForm()
1751 if(!pControl || !m_pInterForm) return NULL; in GetWidget()
1792 ASSERT(m_pInterForm != NULL); in GetWidgets()
1794 for (int i=0,sz=m_pInterForm->CountFields(sFieldName); i<sz; i++) in GetWidgets()
1796 CPDF_FormField* pFormField = m_pInterForm->GetField(i, sFieldName); in GetWidgets()
1949 int nSize = m_pInterForm->CountFieldsInCalculationOrder(); in OnCalculate()
1952 if(CPDF_FormField* pField = m_pInterForm->GetFieldInCalculationOrder(i)) in OnCalculate()
2072 ASSERT(m_pInterForm != NULL); in ResetFieldAppearance()
2221 ASSERT(m_pInterForm != NULL); in DoAction_SubmitForm()
2240 if (m_pInterForm->CheckRequiredFields(&fields, bIncludeOrExclude)) in DoAction_SubmitForm()
2248 if ( m_pInterForm->CheckRequiredFields()) in DoAction_SubmitForm()
2258 if ( m_pInterForm->CheckRequiredFields()) in DoAction_SubmitForm()
2386 ASSERT(m_pInterForm != NULL); in ExportFieldsToFDFFile()
2388 …CFDF_Document* pFDF = m_pInterForm->ExportToFDF(m_pDocument->GetPath(),(CFX_PtrArray&)fields, bInc… in ExportFieldsToFDFFile()
2398 ASSERT(m_pInterForm != NULL); in ExportFieldsToFDFTextBuf()
2400 …CFDF_Document* pFDF = m_pInterForm->ExportToFDF(m_pDocument->GetPath(),(CFX_PtrArray&)fields, bInc… in ExportFieldsToFDFTextBuf()
2424 if(NULL == m_pInterForm) return FALSE; in SubmitForm()
2425 CFDF_Document* pFDFDoc = m_pInterForm->ExportToFDF(wsPDFFilePath); in SubmitForm()
2457 ASSERT(m_pInterForm != NULL); in ExportFormToFDFFile()
2460 CFDF_Document* pFDF = m_pInterForm->ExportToFDF(m_pDocument->GetPath()); in ExportFormToFDFFile()
2472 ASSERT(m_pInterForm != NULL); in ExportFormToFDFTextBuf()
2475 CFDF_Document* pFDF = m_pInterForm->ExportToFDF(m_pDocument->GetPath()); in ExportFormToFDFTextBuf()
2486 ASSERT(m_pInterForm != NULL); in ExportFormToTxtFile()
2491 int nSize = m_pInterForm->CountFields(); in ExportFormToTxtFile()
2497 CPDF_FormField* pField = m_pInterForm->GetField(i); in ExportFormToTxtFile()
2517 ASSERT(m_pInterForm != NULL); in ImportFormFromTxtFile()
2538 ASSERT(m_pInterForm != NULL); in DoAction_ResetForm()
2540 return m_pInterForm->ResetForm(fields, !(dwFlags & 0x01), TRUE); in DoAction_ResetForm()
2544 ASSERT(m_pInterForm != NULL); in DoAction_ResetForm()
2545 return m_pInterForm->ResetForm(TRUE); in DoAction_ResetForm()
2573 ASSERT(m_pInterForm != NULL); in GetFieldFromObjects()
2585 CPDF_FormField* pField = m_pInterForm->GetField(0, csName); in GetFieldFromObjects()
2591 if (m_pInterForm->IsValidFormField(pObject)) in GetFieldFromObjects()