Home
last modified time | relevance | path

Searched refs:pWnd (Results 1 – 25 of 25) sorted by relevance

/external/pdfium/fpdfsdk/src/formfiller/
DFFL_TextField.cpp83 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 …]
DFFL_CheckBox.cpp21 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 …]
DFFL_RadioButton.cpp21 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 …]
DFFL_FormFiller.cpp28 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 …]
DFFL_ComboBox.cpp47 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 …]
DFFL_ListBox.cpp48 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 …]
DFFL_PushButton.cpp20 CPWL_PushButton* pWnd = new CPWL_PushButton(); in NewPDFWindow() local
21 pWnd->Create(cp); in NewPDFWindow()
23 return pWnd; in NewPDFWindow()
DFFL_IFormFiller.cpp994 CPWL_Wnd* pWnd = pFormFiller->ResetPDFWindow( in OnBeforeKeyStroke() local
996 pData = (CFFL_PrivateData*)pWnd->GetAttachedData(); in OnBeforeKeyStroke()
/external/pdfium/fpdfsdk/src/pdfwindow/
DPWL_Wnd.cpp83 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 …]
DPWL_Note.cpp152 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 …]
DPWL_ScrollBar.cpp758 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 …]
DPWL_IconList.cpp377 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()
DPWL_ListBox.cpp317 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()
DPWL_EditCtrl.cpp74 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()
DPWL_ComboBox.cpp601 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/
Dwinapp.hpp103 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/
DPWL_Wnd.h199 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);
DPWL_Note.h148 void OnNotify(CPWL_Wnd* pWnd,
205 void OnNotify(CPWL_Wnd* pWnd,
261 void OnNotify(CPWL_Wnd* pWnd,
326 void OnNotify(CPWL_Wnd* pWnd,
DPWL_ComboBox.h59 void OnNotify(CPWL_Wnd* pWnd,
DPWL_ListBox.h72 void OnNotify(CPWL_Wnd* pWnd,
DPWL_IconList.h119 void OnNotify(CPWL_Wnd* pWnd,
DPWL_ScrollBar.h106 void OnNotify(CPWL_Wnd* pWnd,
DPWL_EditCtrl.h111 void OnNotify(CPWL_Wnd* pWnd,
/external/pdfium/fpdfsdk/include/formfiller/
DFFL_TextField.h53 void OnSetFocus(CPWL_Wnd* pWnd) override;
54 void OnKillFocus(CPWL_Wnd* pWnd) override;
DFFL_ComboBox.h52 void OnSetFocus(CPWL_Wnd* pWnd) override;
53 void OnKillFocus(CPWL_Wnd* pWnd) override;