Searched refs:dwStates (Results 1 – 21 of 21) sorted by relevance
/external/pdfium/xfa/fwl/ |
D | cfwl_checkbox.cpp | 70 int32_t dwStates = GetPartStates(); in DrawWidget() local 75 param.m_dwStates = dwStates; in DrawWidget() 91 textParam.m_dwStates = dwStates; in DrawWidget() 141 int32_t dwStates = CFWL_PartState_Normal; in GetPartStates() local 144 dwStates = CFWL_PartState_Neutral; in GetPartStates() 147 dwStates = CFWL_PartState_Checked; in GetPartStates() 150 dwStates |= CFWL_PartState_Disabled; in GetPartStates() 152 dwStates |= CFWL_PartState_Hovered; in GetPartStates() 154 dwStates |= CFWL_PartState_Pressed; in GetPartStates() 156 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_combobox.cpp | 160 void CFWL_ComboBox::SetStates(uint32_t dwStates) { in SetStates() argument 162 m_pEdit->SetStates(dwStates); in SetStates() 164 m_pListBox->SetStates(dwStates); in SetStates() 165 CFWL_Widget::SetStates(dwStates); in SetStates() 168 void CFWL_ComboBox::RemoveStates(uint32_t dwStates) { in RemoveStates() argument 170 m_pEdit->RemoveStates(dwStates); in RemoveStates() 172 m_pListBox->RemoveStates(dwStates); in RemoveStates() 173 CFWL_Widget::RemoveStates(dwStates); in RemoveStates()
|
D | cfwl_monthcalendar.cpp | 261 if (pDataInfo->dwStates & FWL_ITEMSTATE_MCD_Selected) { in DrawDatesInBK() 263 if (pDataInfo->dwStates & FWL_ITEMSTATE_MCD_Flag) { in DrawDatesInBK() 268 } else if (pDataInfo->dwStates & FWL_ITEMSTATE_MCD_Flag) { in DrawDatesInBK() 343 params.m_dwStates = pDataInfo->dwStates; in DrawDatesIn() 551 uint32_t dwStates = 0; in ResetDateItem() local 553 dwStates |= FWL_ITEMSTATE_MCD_Flag; in ResetDateItem() 555 dwStates |= FWL_ITEMSTATE_MCD_Selected; in ResetDateItem() 559 i + 1, iDayOfWeek, dwStates, rtDate, WideString::Format(L"%d", i + 1))); in ResetDateItem() 614 m_arrDates[iSelDay - 1]->dwStates &= ~FWL_ITEMSTATE_MCD_Selected; in RemoveSelDay() 626 m_arrDates[iDay - 1]->dwStates |= FWL_ITEMSTATE_MCD_Selected; in AddSelDay() [all …]
|
D | cfwl_widget.cpp | 116 void CFWL_Widget::SetStates(uint32_t dwStates) { in SetStates() argument 117 m_pProperties->m_dwStates |= dwStates; in SetStates() 134 void CFWL_Widget::RemoveStates(uint32_t dwStates) { in RemoveStates() argument 135 m_pProperties->m_dwStates &= ~dwStates; in RemoveStates()
|
D | cfwl_combobox.h | 47 void SetStates(uint32_t dwStates) override; 48 void RemoveStates(uint32_t dwStates) override;
|
D | cfwl_widget.h | 80 virtual void SetStates(uint32_t dwStates); 81 virtual void RemoveStates(uint32_t dwStates);
|
D | cfwl_pushbutton.h | 27 void SetStates(uint32_t dwStates) override;
|
D | cfwl_edit.h | 59 void SetStates(uint32_t dwStates) override;
|
D | cfwl_monthcalendar.h | 86 uint32_t dwStates; member
|
D | cfwl_edit.cpp | 97 void CFWL_Edit::SetStates(uint32_t dwStates) { in SetStates() argument 102 CFWL_Widget::SetStates(dwStates); in SetStates() 348 uint32_t dwStates = (m_pProperties->m_dwStates & FWL_WGTSTATE_Disabled); in DrawTextBk() local 349 if (dwStates) in DrawTextBk()
|
/external/pdfium/xfa/fwl/theme/ |
D | cfwl_datetimepickertp.cpp | 33 uint32_t dwStates = pParams.m_dwStates; in DrawDropDownButton() local 34 dwStates &= 0x03; in DrawDropDownButton() 36 switch (eState & dwStates) { in DrawDropDownButton()
|
D | cfwl_pushbuttontp.cpp | 112 int32_t CFWL_PushButtonTP::GetColorID(uint32_t dwStates) const { in GetColorID() 114 if (dwStates & CFWL_PartState_Disabled) in GetColorID() 116 if (dwStates & CFWL_PartState_Default) { in GetColorID() 119 if (dwStates & CFWL_PartState_Hovered) in GetColorID() 121 if (dwStates & CFWL_PartState_Pressed) in GetColorID()
|
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 | 58 uint32_t dwStates, in DrawDropDownButton() argument 61 switch (dwStates) { in DrawDropDownButton()
|
D | cfwl_comboboxtp.h | 22 uint32_t dwStates,
|
D | cfwl_carettp.h | 22 uint32_t dwStates,
|
D | cfwl_listboxtp.h | 22 uint32_t dwStates,
|
D | cfwl_pushbuttontp.h | 37 int32_t GetColorID(uint32_t dwStates) const;
|
D | cfwl_carettp.cpp | 36 uint32_t dwStates, in DrawCaretBK() argument
|