HomeSort by relevance Sort by last modified time
    Searched refs:wsCaption (Results 1 - 25 of 28) sorted by null

1 2

  /external/pdfium/xfa/include/fwl/lightwidget/
checkbox.h 19 FWL_ERR GetCaption(CFX_WideString& wsCaption);
20 FWL_ERR SetCaption(const CFX_WideStringC& wsCaption);
31 virtual FWL_ERR GetCaption(IFWL_Widget* pWidget, CFX_WideString& wsCaption);
pushbutton.h 18 FWL_ERR GetCaption(CFX_WideString& wsCaption);
19 FWL_ERR SetCaption(const CFX_WideStringC& wsCaption);
29 FWL_ERR GetCaption(IFWL_Widget* pWidget, CFX_WideString& wsCaption);
tooltipctrl.h 18 FWL_ERR GetCaption(CFX_WideString& wsCaption);
19 FWL_ERR SetCaption(const CFX_WideStringC& wsCaption);
38 FWL_ERR GetCaption(IFWL_Widget* pWidget, CFX_WideString& wsCaption);
datetimepicker.h 49 virtual FWL_ERR GetCaption(IFWL_Widget* pWidget, CFX_WideString& wsCaption);
picturebox.h 44 virtual FWL_ERR GetCaption(IFWL_Widget* pWidget, CFX_WideString& wsCaption);
barcode.h 83 virtual FWL_ERR GetCaption(IFWL_Widget* pWidget, CFX_WideString& wsCaption);
combobox.h 72 CFX_WideString& wsCaption) {
listbox.h 49 virtual FWL_ERR GetCaption(IFWL_Widget* pWidget, CFX_WideString& wsCaption);
  /external/pdfium/xfa/src/fwl/src/lightwidget/
pushbutton.cpp 30 FWL_ERR CFWL_PushButton::GetCaption(CFX_WideString& wsCaption) {
31 wsCaption = m_buttonData.m_wsCaption;
34 FWL_ERR CFWL_PushButton::SetCaption(const CFX_WideStringC& wsCaption) {
35 m_buttonData.m_wsCaption = wsCaption;
49 CFX_WideString& wsCaption) {
50 wsCaption = m_wsCaption;
checkbox.cpp 30 FWL_ERR CFWL_CheckBox::SetCaption(const CFX_WideStringC& wsCaption) {
31 m_checkboxData.m_wsCaption = wsCaption;
49 CFX_WideString& wsCaption) {
50 wsCaption = m_wsCaption;
tooltipctrl.cpp 36 FWL_ERR CFWL_ToolTip::GetCaption(CFX_WideString& wsCaption) {
37 wsCaption = m_tooltipData.m_wsCaption;
40 FWL_ERR CFWL_ToolTip::SetCaption(const CFX_WideStringC& wsCaption) {
41 m_tooltipData.m_wsCaption = wsCaption;
91 CFX_WideString& wsCaption) {
92 wsCaption = m_wsCaption;
barcode.cpp 43 CFX_WideString& wsCaption) {
datetimepicker.cpp 76 CFX_WideString& wsCaption) {
77 wsCaption = m_wsData;
picturebox.cpp 85 CFX_WideString& wsCaption) {
listbox.cpp 206 CFX_WideString& wsCaption) {
207 wsCaption = m_wsData;
  /external/pdfium/xfa/include/fwl/basewidget/
fwl_tooltipctrl.h 26 CFX_WideString& wsCaption) = 0;
  /external/pdfium/xfa/src/fwl/src/basewidget/
fwl_tooltipctrlimp.cpp 82 CFX_WideString wsCaption;
86 pData->GetCaption(m_pInterface, wsCaption);
88 int32_t iLen = wsCaption.GetLength();
90 CFX_SizeF sz = CalcTextSize(wsCaption, m_pProperties->m_pThemeProvider);
169 CFX_WideString wsCaption;
170 m_pProperties->m_pDataProvider->GetCaption(m_pInterface, wsCaption);
171 if (wsCaption.IsEmpty()) {
183 param.m_wsText = wsCaption;
fwl_checkboximp.cpp 73 CFX_WideString wsCaption;
74 m_pProperties->m_pDataProvider->GetCaption(m_pInterface, wsCaption);
75 if (wsCaption.GetLength() > 0) {
77 wsCaption, m_pProperties->m_pThemeProvider,
142 CFX_WideString wsCaption;
143 m_pProperties->m_pDataProvider->GetCaption(m_pInterface, wsCaption);
144 int32_t iLen = wsCaption.GetLength();
156 textParam.m_wsText = wsCaption;
242 CFX_WideString wsCaption;
243 m_pProperties->m_pDataProvider->GetCaption(m_pInterface, wsCaption);
    [all...]
fwl_pushbuttonimp.cpp 62 CFX_WideString wsCaption;
66 pData->GetCaption(m_pInterface, wsCaption);
68 int32_t iLen = wsCaption.GetLength();
70 CFX_SizeF sz = CalcTextSize(wsCaption, m_pProperties->m_pThemeProvider);
127 CFX_WideString wsCaption;
129 pData->GetCaption(m_pInterface, wsCaption);
133 if (!wsCaption.IsEmpty()) {
134 CalcTextRect(wsCaption, pTheme, 0, m_iTTOAlign, rtText);
314 CFX_WideString wsCaption;
315 m_pProperties->m_pDataProvider->GetCaption(m_pInterface, wsCaption);
    [all...]
  /external/pdfium/xfa/include/fwl/adapter/
fwl_adapterwidgetmgr.h 35 const CFX_WideStringC& wsCaption) = 0;
fwl_sdadapterimp.h 50 const CFX_WideStringC& wsCaption);
  /external/pdfium/xfa/include/fwl/core/
fwl_widget.h 23 CFX_WideString& wsCaption) = 0;
  /external/pdfium/xfa/src/fwl/src/core/
fwl_sdadapterimp.cpp 74 const CFX_WideStringC& wsCaption) {
fwl_noteimp.cpp 803 FWL_ERR GetCaption(IFWL_Widget* pWidget, CFX_WideString& wsCaption);
822 CFX_WideString& wsCaption) {
823 wsCaption = m_wsCaption;
998 CFX_WideString wsCaption;
999 pCurTarget->GetCaption(wsCaption);
1000 if (!wsCaption.IsEmpty()) {
1001 m_ToolTipDp->m_wsCaption = wsCaption;
    [all...]
  /external/pdfium/xfa/src/fwl/src/basewidget/include/
fwl_datetimepickerimp.h 195 CFX_WideString& wsCaption) {

Completed in 1078 milliseconds

1 2