/external/pdfium/xfa/fwl/ |
D | cfwl_checkbox.cpp | 77 int32_t dwStates = GetPartStates(); in DrawWidget() local 82 param.m_dwStates = dwStates; in DrawWidget() 97 textParam.m_dwStates = dwStates; in DrawWidget() 149 int32_t dwStates = CFWL_PartState_Normal; in GetPartStates() local 152 dwStates = CFWL_PartState_Neutral; in GetPartStates() 155 dwStates = CFWL_PartState_Checked; in GetPartStates() 158 dwStates |= CFWL_PartState_Disabled; in GetPartStates() 160 dwStates |= CFWL_PartState_Hovered; in GetPartStates() 162 dwStates |= CFWL_PartState_Pressed; in GetPartStates() 164 dwStates |= CFWL_PartState_Normal; in GetPartStates() [all …]
|
D | cfwl_pushbutton.cpp | 33 void CFWL_PushButton::SetStates(uint32_t dwStates) { in SetStates() argument 34 if (dwStates & FWL_WGTSTATE_Disabled) { in SetStates() 38 CFWL_Widget::SetStates(dwStates); in SetStates() 82 uint32_t dwStates = CFWL_PartState_Normal; in GetPartStates() local 84 dwStates |= CFWL_PartState_Focused; in GetPartStates() 86 dwStates = CFWL_PartState_Disabled; in GetPartStates() 88 dwStates |= CFWL_PartState_Pressed; in GetPartStates() 90 dwStates |= CFWL_PartState_Hovered; in GetPartStates() 91 return dwStates; in GetPartStates()
|
D | cfwl_listitem.h | 22 void SetStates(uint32_t dwStates) { m_dwStates = dwStates; } in SetStates() argument
|
D | cfwl_monthcalendar.cpp | 284 if (pDataInfo->dwStates & FWL_ITEMSTATE_MCD_Selected) { in DrawDatesInBK() 286 if (pDataInfo->dwStates & FWL_ITEMSTATE_MCD_Flag) { in DrawDatesInBK() 291 } else if (pDataInfo->dwStates & FWL_ITEMSTATE_MCD_Flag) { in DrawDatesInBK() 366 params.m_dwStates = pDataInfo->dwStates; in DrawDatesIn() 581 uint32_t dwStates = 0; in ResetDateItem() local 583 dwStates |= FWL_ITEMSTATE_MCD_Flag; in ResetDateItem() 585 dwStates |= FWL_ITEMSTATE_MCD_Selected; in ResetDateItem() 589 i + 1, iDayOfWeek, dwStates, rtDate, WideString::Format(L"%d", i + 1))); in ResetDateItem() 644 m_arrDates[iSelDay - 1]->dwStates &= ~FWL_ITEMSTATE_MCD_Selected; in RemoveSelDay() 656 m_arrDates[iDay - 1]->dwStates |= FWL_ITEMSTATE_MCD_Selected; in AddSelDay() [all …]
|
D | cfwl_combobox.cpp | 232 void CFWL_ComboBox::SetStates(uint32_t dwStates) { in SetStates() argument 234 m_pEdit->SetStates(dwStates); in SetStates() 236 m_pListBox->SetStates(dwStates); in SetStates() 237 CFWL_Widget::SetStates(dwStates); in SetStates() 240 void CFWL_ComboBox::RemoveStates(uint32_t dwStates) { in RemoveStates() argument 242 m_pEdit->RemoveStates(dwStates); in RemoveStates() 244 m_pListBox->RemoveStates(dwStates); in RemoveStates() 245 CFWL_Widget::RemoveStates(dwStates); in RemoveStates()
|
D | cfwl_widget.cpp | 132 void CFWL_Widget::SetStates(uint32_t dwStates) { in SetStates() argument 133 m_pProperties->m_dwStates |= dwStates; in SetStates() 134 if (!(dwStates & FWL_WGTSTATE_Invisible)) in SetStates() 150 void CFWL_Widget::RemoveStates(uint32_t dwStates) { in RemoveStates() argument 151 m_pProperties->m_dwStates &= ~dwStates; in RemoveStates()
|
D | cfwl_combobox.h | 51 void SetStates(uint32_t dwStates) override; 52 void RemoveStates(uint32_t dwStates) override;
|
D | cfwl_widget.h | 62 virtual void SetStates(uint32_t dwStates); 63 virtual void RemoveStates(uint32_t dwStates);
|
D | cfwl_pushbutton.h | 29 void SetStates(uint32_t dwStates) override;
|
D | cfwl_edit.h | 60 void SetStates(uint32_t dwStates) override;
|
D | cfwl_monthcalendar.h | 87 uint32_t dwStates; member
|
D | cfwl_edit.cpp | 126 void CFWL_Edit::SetStates(uint32_t dwStates) { in SetStates() argument 131 CFWL_Widget::SetStates(dwStates); in SetStates() 439 uint32_t dwStates = (m_pProperties->m_dwStates & FWL_WGTSTATE_Disabled); in DrawTextBk() local 440 if (dwStates) in DrawTextBk()
|
/external/pdfium/xfa/fwl/theme/ |
D | cfwl_pushbuttontp.cpp | 114 int32_t CFWL_PushButtonTP::GetColorID(uint32_t dwStates) const { in GetColorID() 116 if (dwStates & CFWL_PartState_Disabled) in GetColorID() 118 if (dwStates & CFWL_PartState_Default) { in GetColorID() 121 if (dwStates & CFWL_PartState_Hovered) in GetColorID() 123 if (dwStates & CFWL_PartState_Pressed) in GetColorID()
|
D | cfwl_datetimepickertp.cpp | 36 uint32_t dwStates = pParams->m_dwStates; in DrawDropDownButton() local 37 dwStates &= 0x03; in DrawDropDownButton() 39 switch (eState & dwStates) { in DrawDropDownButton()
|
D | cfwl_listboxtp.cpp | 58 uint32_t dwStates, in DrawListBoxItem() argument 62 if (dwStates & CFWL_PartState_Selected) { in DrawListBoxItem() 75 if (dwStates & CFWL_PartState_Focused && pData) in DrawListBoxItem()
|
D | cfwl_comboboxtp.cpp | 64 uint32_t dwStates, in DrawStrethHandler() argument 75 uint32_t dwStates, in DrawDropDownButton() argument 78 switch (dwStates) { in DrawDropDownButton()
|
D | cfwl_comboboxtp.h | 22 uint32_t dwStates, 25 uint32_t dwStates,
|
D | cfwl_listboxtp.h | 22 uint32_t dwStates,
|
D | cfwl_carettp.h | 22 uint32_t dwStates,
|
D | cfwl_pushbuttontp.h | 38 int32_t GetColorID(uint32_t dwStates) const;
|
D | cfwl_carettp.cpp | 38 uint32_t dwStates, in DrawCaretBK() argument
|