Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: xfa/fwl/basewidget/fwl_listboximp.cpp

Issue 1803723002: Move xfa/src up to xfa/. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « xfa/fwl/basewidget/fwl_listboximp.h ('k') | xfa/fwl/basewidget/fwl_monthcalendarimp.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/src/fwl/basewidget/fwl_listboximp.h" 7 #include "xfa/fwl/basewidget/fwl_listboximp.h"
8 8
9 #include "xfa/fde/tto/fde_textout.h"
10 #include "xfa/fwl/basewidget/fwl_comboboximp.h"
11 #include "xfa/fwl/basewidget/fwl_scrollbarimp.h"
12 #include "xfa/fwl/core/fwl_noteimp.h"
13 #include "xfa/fwl/core/fwl_targetimp.h"
14 #include "xfa/fwl/core/fwl_widgetimp.h"
9 #include "xfa/include/fwl/core/fwl_theme.h" 15 #include "xfa/include/fwl/core/fwl_theme.h"
10 #include "xfa/src/fde/tto/fde_textout.h"
11 #include "xfa/src/fwl/basewidget/fwl_comboboximp.h"
12 #include "xfa/src/fwl/basewidget/fwl_scrollbarimp.h"
13 #include "xfa/src/fwl/core/fwl_noteimp.h"
14 #include "xfa/src/fwl/core/fwl_targetimp.h"
15 #include "xfa/src/fwl/core/fwl_widgetimp.h"
16 16
17 #define FWL_LISTBOX_ItemTextMargin 2 17 #define FWL_LISTBOX_ItemTextMargin 2
18 18
19 // static 19 // static
20 IFWL_ListBox* IFWL_ListBox::Create(const CFWL_WidgetImpProperties& properties, 20 IFWL_ListBox* IFWL_ListBox::Create(const CFWL_WidgetImpProperties& properties,
21 IFWL_Widget* pOuter) { 21 IFWL_Widget* pOuter) {
22 IFWL_ListBox* pListBox = new IFWL_ListBox; 22 IFWL_ListBox* pListBox = new IFWL_ListBox;
23 CFWL_ListBoxImp* pListBoxImpl = new CFWL_ListBoxImp(properties, pOuter); 23 CFWL_ListBoxImp* pListBoxImpl = new CFWL_ListBoxImp(properties, pOuter);
24 pListBox->SetImpl(pListBoxImpl); 24 pListBox->SetImpl(pListBoxImpl);
25 pListBoxImpl->SetInterface(pListBox); 25 pListBoxImpl->SetInterface(pListBox);
(...skipping 1206 matching lines...) Expand 10 before | Expand all | Expand 10 after
1232 pScrollBar->SetTrackPos(fPos); 1232 pScrollBar->SetTrackPos(fPos);
1233 m_pOwner->Repaint(&m_pOwner->m_rtClient); 1233 m_pOwner->Repaint(&m_pOwner->m_rtClient);
1234 } 1234 }
1235 return TRUE; 1235 return TRUE;
1236 } 1236 }
1237 void CFWL_ListBoxImpDelegate::DispatchSelChangedEv() { 1237 void CFWL_ListBoxImpDelegate::DispatchSelChangedEv() {
1238 CFWL_EvtLtbSelChanged ev; 1238 CFWL_EvtLtbSelChanged ev;
1239 ev.m_pSrcTarget = m_pOwner->m_pInterface; 1239 ev.m_pSrcTarget = m_pOwner->m_pInterface;
1240 m_pOwner->DispatchEvent(&ev); 1240 m_pOwner->DispatchEvent(&ev);
1241 } 1241 }
OLDNEW
« no previous file with comments | « xfa/fwl/basewidget/fwl_listboximp.h ('k') | xfa/fwl/basewidget/fwl_monthcalendarimp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698