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

Side by Side Diff: xfa/fwl/lightwidget/caret.cpp

Issue 1827923002: Move xfa/include/fwl/{core,basewidget} to xfa/fwl/{core,basewidget}. (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/lightwidget/app.cpp ('k') | xfa/fwl/lightwidget/checkbox.cpp » ('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/include/fwl/lightwidget/caret.h" 7 #include "xfa/include/fwl/lightwidget/caret.h"
8 8
9 #include <memory> 9 #include <memory>
10 10
11 #include "xfa/fwl/basewidget/ifwl_caret.h"
11 #include "xfa/fwl/core/fwl_targetimp.h" 12 #include "xfa/fwl/core/fwl_targetimp.h"
12 #include "xfa/fxgraphics/cfx_color.h" 13 #include "xfa/fxgraphics/cfx_color.h"
13 #include "xfa/include/fwl/basewidget/fwl_caret.h"
14 #include "xfa/include/fwl/lightwidget/edit.h" 14 #include "xfa/include/fwl/lightwidget/edit.h"
15 15
16 CFWL_Caret* CFWL_Caret::Create() { 16 CFWL_Caret* CFWL_Caret::Create() {
17 return new CFWL_Caret; 17 return new CFWL_Caret;
18 } 18 }
19 FWL_ERR CFWL_Caret::Initialize(const CFWL_WidgetProperties* pProperties) { 19 FWL_ERR CFWL_Caret::Initialize(const CFWL_WidgetProperties* pProperties) {
20 if (m_pIface) 20 if (m_pIface)
21 return FWL_ERR_Indefinite; 21 return FWL_ERR_Indefinite;
22 if (pProperties) { 22 if (pProperties) {
23 *m_pProperties = *pProperties; 23 *m_pProperties = *pProperties;
(...skipping 15 matching lines...) Expand all
39 return static_cast<IFWL_Caret*>(m_pIface)->GetFrequency(elapse); 39 return static_cast<IFWL_Caret*>(m_pIface)->GetFrequency(elapse);
40 } 40 }
41 FWL_ERR CFWL_Caret::SetFrequency(FX_DWORD elapse) { 41 FWL_ERR CFWL_Caret::SetFrequency(FX_DWORD elapse) {
42 return static_cast<IFWL_Caret*>(m_pIface)->SetFrequency(elapse); 42 return static_cast<IFWL_Caret*>(m_pIface)->SetFrequency(elapse);
43 } 43 }
44 FWL_ERR CFWL_Caret::SetColor(CFX_Color crFill) { 44 FWL_ERR CFWL_Caret::SetColor(CFX_Color crFill) {
45 return static_cast<IFWL_Caret*>(m_pIface)->SetColor(crFill); 45 return static_cast<IFWL_Caret*>(m_pIface)->SetColor(crFill);
46 } 46 }
47 CFWL_Caret::CFWL_Caret() {} 47 CFWL_Caret::CFWL_Caret() {}
48 CFWL_Caret::~CFWL_Caret() {} 48 CFWL_Caret::~CFWL_Caret() {}
OLDNEW
« no previous file with comments | « xfa/fwl/lightwidget/app.cpp ('k') | xfa/fwl/lightwidget/checkbox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698