| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #include "xfa/fwl/basewidget/fwl_listboximp.h" | 7 #include "xfa/fwl/basewidget/fwl_listboximp.h" |
| 8 | 8 |
| 9 #include "xfa/fde/tto/fde_textout.h" | 9 #include "xfa/fde/tto/fde_textout.h" |
| 10 #include "xfa/fwl/basewidget/fwl_comboboximp.h" | 10 #include "xfa/fwl/basewidget/fwl_comboboximp.h" |
| 11 #include "xfa/fwl/basewidget/fwl_scrollbarimp.h" | 11 #include "xfa/fwl/basewidget/fwl_scrollbarimp.h" |
| 12 #include "xfa/fwl/core/cfwl_message.h" | 12 #include "xfa/fwl/core/cfwl_message.h" |
| 13 #include "xfa/fwl/core/cfwl_themebackground.h" | 13 #include "xfa/fwl/core/cfwl_themebackground.h" |
| 14 #include "xfa/fwl/core/cfwl_themepart.h" | 14 #include "xfa/fwl/core/cfwl_themepart.h" |
| 15 #include "xfa/fwl/core/cfwl_themetext.h" | 15 #include "xfa/fwl/core/cfwl_themetext.h" |
| 16 #include "xfa/fwl/core/fwl_noteimp.h" | 16 #include "xfa/fwl/core/fwl_noteimp.h" |
| 17 #include "xfa/fwl/core/fwl_targetimp.h" | |
| 18 #include "xfa/fwl/core/fwl_widgetimp.h" | 17 #include "xfa/fwl/core/fwl_widgetimp.h" |
| 19 #include "xfa/fwl/core/ifwl_themeprovider.h" | 18 #include "xfa/fwl/core/ifwl_themeprovider.h" |
| 20 | 19 |
| 21 #define FWL_LISTBOX_ItemTextMargin 2 | 20 #define FWL_LISTBOX_ItemTextMargin 2 |
| 22 | 21 |
| 23 // static | 22 // static |
| 24 IFWL_ListBox* IFWL_ListBox::Create(const CFWL_WidgetImpProperties& properties, | 23 IFWL_ListBox* IFWL_ListBox::Create(const CFWL_WidgetImpProperties& properties, |
| 25 IFWL_Widget* pOuter) { | 24 IFWL_Widget* pOuter) { |
| 26 IFWL_ListBox* pListBox = new IFWL_ListBox; | 25 IFWL_ListBox* pListBox = new IFWL_ListBox; |
| 27 CFWL_ListBoxImp* pListBoxImpl = new CFWL_ListBoxImp(properties, pOuter); | 26 CFWL_ListBoxImp* pListBoxImpl = new CFWL_ListBoxImp(properties, pOuter); |
| (...skipping 1218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1246 pScrollBar->SetTrackPos(fPos); | 1245 pScrollBar->SetTrackPos(fPos); |
| 1247 m_pOwner->Repaint(&m_pOwner->m_rtClient); | 1246 m_pOwner->Repaint(&m_pOwner->m_rtClient); |
| 1248 } | 1247 } |
| 1249 return TRUE; | 1248 return TRUE; |
| 1250 } | 1249 } |
| 1251 void CFWL_ListBoxImpDelegate::DispatchSelChangedEv() { | 1250 void CFWL_ListBoxImpDelegate::DispatchSelChangedEv() { |
| 1252 CFWL_EvtLtbSelChanged ev; | 1251 CFWL_EvtLtbSelChanged ev; |
| 1253 ev.m_pSrcTarget = m_pOwner->m_pInterface; | 1252 ev.m_pSrcTarget = m_pOwner->m_pInterface; |
| 1254 m_pOwner->DispatchEvent(&ev); | 1253 m_pOwner->DispatchEvent(&ev); |
| 1255 } | 1254 } |
| OLD | NEW |