/external/pdfium/fpdfsdk/src/formfiller/ |
D | FFL_TextField.cpp | 83 CPWL_Edit* pWnd = new CPWL_Edit(); in NewPDFWindow() local 84 pWnd->AttachFFLData(this); in NewPDFWindow() 85 pWnd->Create(cp); in NewPDFWindow() 88 pWnd->SetFillerNotify(pIFormFiller); in NewPDFWindow() 94 if (pWnd->HasFlag(PES_CHARARRAY)) { in NewPDFWindow() 95 pWnd->SetCharArray(nMaxLen); in NewPDFWindow() 96 pWnd->SetAlignFormatV(PEAV_CENTER); in NewPDFWindow() 98 pWnd->SetLimitChar(nMaxLen); in NewPDFWindow() 102 pWnd->SetText(swValue.c_str()); in NewPDFWindow() 103 return pWnd; in NewPDFWindow() [all …]
|
D | FFL_CheckBox.cpp | 21 CPWL_CheckBox* pWnd = new CPWL_CheckBox(); in NewPDFWindow() local 22 pWnd->Create(cp); in NewPDFWindow() 23 pWnd->SetCheck(m_pWidget->IsChecked()); in NewPDFWindow() 24 return pWnd; in NewPDFWindow() 62 if (CPWL_CheckBox* pWnd = (CPWL_CheckBox*)GetPDFWindow(pPageView, TRUE)) in OnChar() local 63 pWnd->SetCheck(!pWnd->IsChecked()); in OnChar() 80 if (CPWL_CheckBox* pWnd = (CPWL_CheckBox*)GetPDFWindow(pPageView, TRUE)) { in OnLButtonUp() local 82 pWnd->SetCheck(!pWidget->IsChecked()); in OnLButtonUp() 93 CPWL_CheckBox* pWnd = (CPWL_CheckBox*)GetPDFWindow(pPageView, FALSE); in IsDataChanged() local 94 return pWnd && pWnd->IsChecked() != m_pWidget->IsChecked(); in IsDataChanged() [all …]
|
D | FFL_RadioButton.cpp | 21 CPWL_RadioButton* pWnd = new CPWL_RadioButton(); in NewPDFWindow() local 22 pWnd->Create(cp); in NewPDFWindow() 24 pWnd->SetCheck(m_pWidget->IsChecked()); in NewPDFWindow() 26 return pWnd; in NewPDFWindow() 63 if (CPWL_RadioButton* pWnd = in OnChar() local 65 pWnd->SetCheck(TRUE); in OnChar() 81 if (CPWL_RadioButton* pWnd = in OnLButtonUp() local 83 pWnd->SetCheck(TRUE); in OnLButtonUp() 93 if (CPWL_RadioButton* pWnd = in IsDataChanged() local 95 return pWnd->IsChecked() != m_pWidget->IsChecked(); in IsDataChanged() [all …]
|
D | FFL_FormFiller.cpp | 28 CPWL_Wnd* pWnd = it.second; in ~CFFL_FormFiller() local 29 CFFL_PrivateData* pData = (CFFL_PrivateData*)pWnd->GetAttachedData(); in ~CFFL_FormFiller() 30 pWnd->InvalidateProvider(this); in ~CFFL_FormFiller() 31 pWnd->Destroy(); in ~CFFL_FormFiller() 32 delete pWnd; in ~CFFL_FormFiller() 40 if (CPWL_Wnd* pWnd = GetPDFWindow(pPageView, FALSE)) { in SetWindowRect() local 41 pWnd->Move(CPDF_Rect(rcWindow), TRUE, FALSE); in SetWindowRect() 46 if (CPWL_Wnd* pWnd = GetPDFWindow(pPageView, FALSE)) { in GetWindowRect() local 47 return pWnd->GetWindowRect(); in GetWindowRect() 60 if (CPWL_Wnd* pWnd = GetPDFWindow(pPageView, FALSE)) { in GetViewBBox() local [all …]
|
D | FFL_ComboBox.cpp | 47 CPWL_ComboBox* pWnd = new CPWL_ComboBox(); in NewPDFWindow() local 48 pWnd->AttachFFLData(this); in NewPDFWindow() 49 pWnd->Create(cp); in NewPDFWindow() 52 pWnd->SetFillerNotify(pFormFiller); in NewPDFWindow() 62 pWnd->AddString(m_pWidget->GetOptionLabel(i).c_str()); in NewPDFWindow() 65 pWnd->SetSelect(nCurSel); in NewPDFWindow() 66 pWnd->SetText(swText.c_str()); in NewPDFWindow() 67 return pWnd; in NewPDFWindow() 77 CPWL_ComboBox* pWnd = (CPWL_ComboBox*)GetPDFWindow(pPageView, FALSE); in IsDataChanged() local 78 if (!pWnd) in IsDataChanged() [all …]
|
D | FFL_ListBox.cpp | 48 CPWL_ListBox* pWnd = new CPWL_ListBox(); in NewPDFWindow() local 49 pWnd->AttachFFLData(this); in NewPDFWindow() 50 pWnd->Create(cp); in NewPDFWindow() 53 pWnd->SetFillerNotify(pIFormFiller); in NewPDFWindow() 56 pWnd->AddString(m_pWidget->GetOptionLabel(i).c_str()); in NewPDFWindow() 58 if (pWnd->HasFlag(PLBS_MULTIPLESEL)) { in NewPDFWindow() 65 pWnd->SetCaret(i); in NewPDFWindow() 68 pWnd->Select(i); in NewPDFWindow() 75 pWnd->Select(i); in NewPDFWindow() 81 pWnd->SetTopVisibleIndex(m_pWidget->GetTopVisibleIndex()); in NewPDFWindow() [all …]
|
D | FFL_PushButton.cpp | 20 CPWL_PushButton* pWnd = new CPWL_PushButton(); in NewPDFWindow() local 21 pWnd->Create(cp); in NewPDFWindow() 23 return pWnd; in NewPDFWindow()
|
D | FFL_IFormFiller.cpp | 994 CPWL_Wnd* pWnd = pFormFiller->ResetPDFWindow( in OnBeforeKeyStroke() local 996 pData = (CFFL_PrivateData*)pWnd->GetAttachedData(); in OnBeforeKeyStroke()
|
/external/pdfium/fpdfsdk/src/pdfwindow/ |
D | PWL_Wnd.cpp | 83 explicit CPWL_MsgControl(CPWL_Wnd* pWnd) { in CPWL_MsgControl() argument 84 m_pCreatedWnd = pWnd; in CPWL_MsgControl() 99 FX_BOOL IsWndCreated(const CPWL_Wnd* pWnd) const { in IsWndCreated() 100 return m_pCreatedWnd == pWnd; in IsWndCreated() 103 FX_BOOL IsMainCaptureMouse(const CPWL_Wnd* pWnd) const { in IsMainCaptureMouse() 104 return pWnd == m_pMainMouseWnd; in IsMainCaptureMouse() 107 FX_BOOL IsWndCaptureMouse(const CPWL_Wnd* pWnd) const { in IsWndCaptureMouse() 108 if (pWnd) { in IsWndCaptureMouse() 110 if (m_aMousePath.GetAt(i) == pWnd) in IsWndCaptureMouse() 118 FX_BOOL IsMainCaptureKeyboard(const CPWL_Wnd* pWnd) const { in IsMainCaptureKeyboard() [all …]
|
D | PWL_Note.cpp | 152 void CPWL_Note_Edit::OnNotify(CPWL_Wnd* pWnd, in OnNotify() argument 177 CPWL_Edit::OnNotify(pWnd, msg, wParam, lParam); in OnNotify() 466 void CPWL_Note_Contents::OnNotify(CPWL_Wnd* pWnd, in OnNotify() argument 472 int32_t nIndex = GetItemIndex(pWnd); in OnNotify() 524 CPWL_Wnd::OnNotify(pWnd, msg, wParam, lParam); in OnNotify() 869 if (const CPWL_Wnd* pWnd = GetFocused()) { in GetFocusedNoteItem() local 870 if (pWnd->GetClassName() == "CPWL_Edit") { in GetFocusedNoteItem() 871 if (CPWL_Wnd* pParent = pWnd->GetParentWindow()) { in GetFocusedNoteItem() 933 void CPWL_NoteItem::OnNotify(CPWL_Wnd* pWnd, in OnNotify() argument 964 CPWL_Wnd::OnNotify(pWnd, msg, wParam, lParam); in OnNotify() [all …]
|
D | PWL_ScrollBar.cpp | 758 void CPWL_ScrollBar::OnNotify(CPWL_Wnd* pWnd, in OnNotify() argument 762 CPWL_Wnd::OnNotify(pWnd, msg, wParam, lParam); in OnNotify() 766 if (pWnd == m_pMinButton) { in OnNotify() 770 if (pWnd == m_pMaxButton) { in OnNotify() 774 if (pWnd == m_pPosButton) { in OnNotify() 779 if (pWnd == m_pMinButton) { in OnNotify() 783 if (pWnd == m_pMaxButton) { in OnNotify() 787 if (pWnd == m_pPosButton) { in OnNotify() 792 if (pWnd == m_pMinButton) { in OnNotify() 796 if (pWnd == m_pMaxButton) { in OnNotify() [all …]
|
D | PWL_IconList.cpp | 377 void CPWL_IconList::OnNotify(CPWL_Wnd* pWnd, in OnNotify() argument 381 CPWL_Wnd::OnNotify(pWnd, msg, wParam, lParam); in OnNotify() 404 pScrollBar->OnNotify(pWnd, PNM_SETSCROLLINFO, wParam, lParam); in OnNotify() 417 pScrollBar->OnNotify(pWnd, PNM_SETSCROLLPOS, wParam, lParam); in OnNotify()
|
D | PWL_ListBox.cpp | 317 void CPWL_ListBox::OnNotify(CPWL_Wnd* pWnd, in OnNotify() argument 321 CPWL_Wnd::OnNotify(pWnd, msg, wParam, lParam); in OnNotify() 330 pChild->OnNotify(pWnd, PNM_SETSCROLLINFO, wParam, lParam); in OnNotify() 339 pChild->OnNotify(pWnd, PNM_SETSCROLLPOS, wParam, lParam); in OnNotify()
|
D | PWL_EditCtrl.cpp | 74 void CPWL_EditCtrl::OnNotify(CPWL_Wnd* pWnd, in OnNotify() argument 78 CPWL_Wnd::OnNotify(pWnd, msg, wParam, lParam); in OnNotify() 85 pChild->OnNotify(pWnd, PNM_SETSCROLLINFO, wParam, lParam); in OnNotify() 94 pChild->OnNotify(pWnd, PNM_SETSCROLLPOS, wParam, lParam); in OnNotify()
|
D | PWL_ComboBox.cpp | 601 void CPWL_ComboBox::OnNotify(CPWL_Wnd* pWnd, in OnNotify() argument 607 if (pWnd == m_pButton) { in OnNotify() 614 if (pWnd == m_pList) { in OnNotify() 624 CPWL_Wnd::OnNotify(pWnd, msg, wParam, lParam); in OnNotify()
|
/external/opencv3/samples/directx/ |
D | winapp.hpp | 103 WinApp* pWnd; in StaticWndProc() local 108 pWnd = static_cast<WinApp*>(pCreateStruct->lpCreateParams); in StaticWndProc() 109 ::SetWindowLongPtr(hWnd, GWLP_USERDATA, reinterpret_cast<LONG_PTR>(pWnd)); in StaticWndProc() 112 pWnd = GetObjectFromWindow(hWnd); in StaticWndProc() 114 if (pWnd) in StaticWndProc() 115 return pWnd->WndProc(hWnd, message, wParam, lParam); in StaticWndProc()
|
/external/pdfium/fpdfsdk/include/pdfwindow/ |
D | PWL_Wnd.h | 199 virtual void OnSetFocus(CPWL_Wnd* pWnd) = 0; 200 virtual void OnKillFocus(CPWL_Wnd* pWnd) = 0; 320 virtual void OnNotify(CPWL_Wnd* pWnd, 430 FX_BOOL IsWndCaptureMouse(const CPWL_Wnd* pWnd) const; 431 FX_BOOL IsWndCaptureKeyboard(const CPWL_Wnd* pWnd) const; 440 void AddChild(CPWL_Wnd* pWnd); 441 void RemoveChild(CPWL_Wnd* pWnd);
|
D | PWL_Note.h | 148 void OnNotify(CPWL_Wnd* pWnd, 205 void OnNotify(CPWL_Wnd* pWnd, 261 void OnNotify(CPWL_Wnd* pWnd, 326 void OnNotify(CPWL_Wnd* pWnd,
|
D | PWL_ComboBox.h | 59 void OnNotify(CPWL_Wnd* pWnd,
|
D | PWL_ListBox.h | 72 void OnNotify(CPWL_Wnd* pWnd,
|
D | PWL_IconList.h | 119 void OnNotify(CPWL_Wnd* pWnd,
|
D | PWL_ScrollBar.h | 106 void OnNotify(CPWL_Wnd* pWnd,
|
D | PWL_EditCtrl.h | 111 void OnNotify(CPWL_Wnd* pWnd,
|
/external/pdfium/fpdfsdk/include/formfiller/ |
D | FFL_TextField.h | 53 void OnSetFocus(CPWL_Wnd* pWnd) override; 54 void OnKillFocus(CPWL_Wnd* pWnd) override;
|
D | FFL_ComboBox.h | 52 void OnSetFocus(CPWL_Wnd* pWnd) override; 53 void OnKillFocus(CPWL_Wnd* pWnd) override;
|