HomeSort by relevance Sort by last modified time
    Searched refs:pWnd (Results 1 - 11 of 11) sorted by null

  /external/pdfium/fpdfsdk/formfiller/
cffl_pushbutton.cpp 19 auto* pWnd = new CPWL_PushButton();
20 pWnd->Create(cp);
21 return pWnd;
cffl_checkbox.cpp 22 auto* pWnd = new CPWL_CheckBox();
23 pWnd->Create(cp);
24 pWnd->SetCheck(m_pWidget->IsChecked());
25 return pWnd;
62 CPWL_CheckBox* pWnd = GetCheckBox(pPageView, true);
63 if (pWnd) {
65 pWnd->SetCheck(!pWidget->IsChecked());
84 CPWL_CheckBox* pWnd = GetCheckBox(pPageView, true);
85 if (pWnd) {
87 pWnd->SetCheck(!pWidget->IsChecked())
    [all...]
cffl_radiobutton.cpp 22 auto* pWnd = new CPWL_RadioButton();
23 pWnd->Create(cp);
24 pWnd->SetCheck(m_pWidget->IsChecked());
25 return pWnd;
57 CPWL_RadioButton* pWnd = GetRadioButton(pPageView, true);
58 if (pWnd)
59 pWnd->SetCheck(true);
76 CPWL_RadioButton* pWnd = GetRadioButton(pPageView, true);
77 if (pWnd)
78 pWnd->SetCheck(true)
    [all...]
cffl_textfield.cpp 71 auto* pWnd = new CPWL_Edit();
72 pWnd->AttachFFLData(this);
73 pWnd->Create(cp);
74 pWnd->SetFillerNotify(m_pFormFillEnv->GetInteractiveFormFiller());
80 if (pWnd->HasFlag(PES_CHARARRAY)) {
81 pWnd->SetCharArray(nMaxLen);
82 pWnd->SetAlignFormatV(PEAV_CENTER);
84 pWnd->SetLimitChar(nMaxLen);
88 pWnd->SetText(swValue);
89 return pWnd;
    [all...]
cffl_formfiller.cpp 39 CPWL_Wnd* pWnd = it.second;
40 auto* pData = static_cast<CFFL_PrivateData*>(pWnd->GetAttachedData());
41 pWnd->InvalidateProvider(this);
42 pWnd->Destroy();
43 delete pWnd;
55 if (CPWL_Wnd* pWnd = GetPDFWindow(pPageView, false))
56 rcAnnot = PWLtoFFL(pWnd->GetWindowRect());
76 if (CPWL_Wnd* pWnd = GetPDFWindow(pPageView, false)) {
79 pWnd->DrawAppearance(pDevice, mt);
111 CPWL_Wnd* pWnd = GetPDFWindow(pPageView, true)
    [all...]
cffl_listbox.cpp 41 auto* pWnd = new CPWL_ListBox();
42 pWnd->AttachFFLData(this);
43 pWnd->Create(cp);
44 pWnd->SetFillerNotify(m_pFormFillEnv->GetInteractiveFormFiller());
47 pWnd->AddString(m_pWidget->GetOptionLabel(i));
49 if (pWnd->HasFlag(PLBS_MULTIPLESEL)) {
56 pWnd->SetCaret(i);
59 pWnd->Select(i);
66 pWnd->Select(i);
72 pWnd->SetTopVisibleIndex(m_pWidget->GetTopVisibleIndex())
    [all...]
cffl_combobox.cpp 46 auto* pWnd = new CPWL_ComboBox();
47 pWnd->AttachFFLData(this);
48 pWnd->Create(cp);
52 pWnd->SetFillerNotify(pFormFiller);
62 pWnd->AddString(m_pWidget->GetOptionLabel(i));
65 pWnd->SetSelect(nCurSel);
66 pWnd->SetText(swText);
67 return pWnd;
77 CPWL_ComboBox* pWnd = (CPWL_ComboBox*)GetPDFWindow(pPageView, false);
78 if (!pWnd)
    [all...]
cffl_interactiveformfiller.cpp 913 CPWL_Wnd* pWnd = pFormFiller->ResetPDFWindow(
915 if (!pWnd)
917 privateData = *static_cast<CFFL_PrivateData*>(pWnd->GetAttachedData());
  /external/mdnsresponder/mDNSWindows/ControlPanel/
ControlPanel.cpp 125 CWnd * pWnd;
129 pWnd = (CWnd*) m_uiClass->CreateObject();
131 if ( pWnd )
135 if ( pWnd->IsKindOf( RUNTIME_CLASS( CPropertySheet ) ) )
137 CPropertySheet * pSheet = (CPropertySheet*) pWnd;
145 check( pWnd->IsKindOf( RUNTIME_CLASS( CDialog ) ) );
147 CDialog * pDialog = (CDialog*) pWnd;
152 delete pWnd;
  /external/pdfium/fpdfsdk/pwl/
cpwl_wnd.cpp 51 explicit CPWL_MsgControl(CPWL_Wnd* pWnd) : m_pCreatedWnd(pWnd) {}
54 bool IsWndCreated(const CPWL_Wnd* pWnd) const {
55 return m_pCreatedWnd == pWnd;
58 bool IsWndCaptureMouse(const CPWL_Wnd* pWnd) const {
59 return pWnd && pdfium::ContainsValue(m_aMousePath, pWnd);
62 bool IsMainCaptureKeyboard(const CPWL_Wnd* pWnd) const {
63 return pWnd == m_pMainKeyboardWnd;
66 bool IsWndCaptureKeyboard(const CPWL_Wnd* pWnd) const
    [all...]
cpwl_wnd.h 280 bool IsWndCaptureMouse(const CPWL_Wnd* pWnd) const;
281 bool IsWndCaptureKeyboard(const CPWL_Wnd* pWnd) const;
303 void AddChild(CPWL_Wnd* pWnd);
304 void RemoveChild(CPWL_Wnd* pWnd);

Completed in 299 milliseconds