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

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

Issue 1928963004: Cleanup IFWL_Adapter interfaces. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master Created 4 years, 7 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
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/fwl/basewidget/fwl_caretimp.h" 7 #include "xfa/fwl/basewidget/fwl_caretimp.h"
8 8
9 #include "xfa/fwl/basewidget/ifwl_caret.h" 9 #include "xfa/fwl/basewidget/ifwl_caret.h"
10 #include "xfa/fwl/core/cfwl_themebackground.h" 10 #include "xfa/fwl/core/cfwl_themebackground.h"
11 #include "xfa/fwl/core/fwl_noteimp.h" 11 #include "xfa/fwl/core/fwl_noteimp.h"
12 #include "xfa/fwl/core/fwl_widgetimp.h" 12 #include "xfa/fwl/core/fwl_widgetimp.h"
13 #include "xfa/fwl/core/ifwl_themeprovider.h" 13 #include "xfa/fwl/core/ifwl_themeprovider.h"
14 14
15 // static 15 // static
16 IFWL_Caret* IFWL_Caret::Create(const CFWL_WidgetImpProperties& properties, 16 IFWL_Caret* IFWL_Caret::Create(const CFWL_WidgetImpProperties& properties,
17 IFWL_Widget* pOuter) { 17 IFWL_Widget* pOuter) {
18 IFWL_Caret* pCaret = new IFWL_Caret; 18 IFWL_Caret* pCaret = new IFWL_Caret;
19 CFWL_CaretImp* pCaretImpl = new CFWL_CaretImp(properties, pOuter); 19 CFWL_CaretImp* pCaretImpl = new CFWL_CaretImp(properties, pOuter);
20 pCaret->SetImpl(pCaretImpl); 20 pCaret->SetImpl(pCaretImpl);
21 pCaretImpl->SetInterface(pCaret); 21 pCaretImpl->SetInterface(pCaret);
22 return pCaret; 22 return pCaret;
23 } 23 }
24 IFWL_Caret::IFWL_Caret() {} 24 IFWL_Caret::IFWL_Caret() {}
25 FWL_ERR IFWL_Caret::ShowCaret(FX_BOOL bFlag) { 25 void IFWL_Caret::ShowCaret(FX_BOOL bFlag) {
26 return static_cast<CFWL_CaretImp*>(GetImpl())->ShowCaret(bFlag); 26 static_cast<CFWL_CaretImp*>(GetImpl())->ShowCaret(bFlag);
27 } 27 }
28 FWL_ERR IFWL_Caret::GetFrequency(uint32_t& elapse) { 28 FWL_ERR IFWL_Caret::GetFrequency(uint32_t& elapse) {
29 return static_cast<CFWL_CaretImp*>(GetImpl())->GetFrequency(elapse); 29 return static_cast<CFWL_CaretImp*>(GetImpl())->GetFrequency(elapse);
30 } 30 }
31 FWL_ERR IFWL_Caret::SetFrequency(uint32_t elapse) { 31 FWL_ERR IFWL_Caret::SetFrequency(uint32_t elapse) {
32 return static_cast<CFWL_CaretImp*>(GetImpl())->SetFrequency(elapse); 32 return static_cast<CFWL_CaretImp*>(GetImpl())->SetFrequency(elapse);
33 } 33 }
34 FWL_ERR IFWL_Caret::SetColor(CFX_Color crFill) { 34 FWL_ERR IFWL_Caret::SetColor(CFX_Color crFill) {
35 return static_cast<CFWL_CaretImp*>(GetImpl())->SetColor(crFill); 35 return static_cast<CFWL_CaretImp*>(GetImpl())->SetColor(crFill);
36 } 36 }
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 const CFX_Matrix* pMatrix) { 76 const CFX_Matrix* pMatrix) {
77 if (!pGraphics) 77 if (!pGraphics)
78 return FWL_ERR_Indefinite; 78 return FWL_ERR_Indefinite;
79 if (!m_pProperties->m_pThemeProvider) 79 if (!m_pProperties->m_pThemeProvider)
80 m_pProperties->m_pThemeProvider = GetAvailableTheme(); 80 m_pProperties->m_pThemeProvider = GetAvailableTheme();
81 if (!m_pProperties->m_pThemeProvider) 81 if (!m_pProperties->m_pThemeProvider)
82 return FWL_ERR_Indefinite; 82 return FWL_ERR_Indefinite;
83 DrawCaretBK(pGraphics, m_pProperties->m_pThemeProvider, pMatrix); 83 DrawCaretBK(pGraphics, m_pProperties->m_pThemeProvider, pMatrix);
84 return FWL_ERR_Succeeded; 84 return FWL_ERR_Succeeded;
85 } 85 }
86 FWL_ERR CFWL_CaretImp::ShowCaret(FX_BOOL bFlag) { 86
87 void CFWL_CaretImp::ShowCaret(FX_BOOL bFlag) {
87 if (m_hTimer) { 88 if (m_hTimer) {
88 FWL_StopTimer(m_hTimer); 89 FWL_StopTimer(m_hTimer);
89 m_hTimer = NULL; 90 m_hTimer = nullptr;
90 } 91 }
91 if (bFlag) { 92 if (bFlag)
92 m_hTimer = FWL_StartTimer(m_pTimer, m_dwElapse); 93 m_hTimer = FWL_StartTimer(m_pTimer, m_dwElapse);
93 } 94
94 return SetStates(FWL_WGTSTATE_Invisible, !bFlag); 95 SetStates(FWL_WGTSTATE_Invisible, !bFlag);
95 } 96 }
96 FWL_ERR CFWL_CaretImp::GetFrequency(uint32_t& elapse) { 97 FWL_ERR CFWL_CaretImp::GetFrequency(uint32_t& elapse) {
97 elapse = m_dwElapse; 98 elapse = m_dwElapse;
98 return FWL_ERR_Succeeded; 99 return FWL_ERR_Succeeded;
99 } 100 }
100 FWL_ERR CFWL_CaretImp::SetFrequency(uint32_t elapse) { 101 FWL_ERR CFWL_CaretImp::SetFrequency(uint32_t elapse) {
101 m_dwElapse = elapse; 102 m_dwElapse = elapse;
102 return FWL_ERR_Succeeded; 103 return FWL_ERR_Succeeded;
103 } 104 }
104 FWL_ERR CFWL_CaretImp::SetColor(CFX_Color crFill) { 105 FWL_ERR CFWL_CaretImp::SetColor(CFX_Color crFill) {
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 } 149 }
149 CFWL_CaretImpDelegate::CFWL_CaretImpDelegate(CFWL_CaretImp* pOwner) 150 CFWL_CaretImpDelegate::CFWL_CaretImpDelegate(CFWL_CaretImp* pOwner)
150 : m_pOwner(pOwner) {} 151 : m_pOwner(pOwner) {}
151 int32_t CFWL_CaretImpDelegate::OnProcessMessage(CFWL_Message* pMessage) { 152 int32_t CFWL_CaretImpDelegate::OnProcessMessage(CFWL_Message* pMessage) {
152 return 1; 153 return 1;
153 } 154 }
154 FWL_ERR CFWL_CaretImpDelegate::OnDrawWidget(CFX_Graphics* pGraphics, 155 FWL_ERR CFWL_CaretImpDelegate::OnDrawWidget(CFX_Graphics* pGraphics,
155 const CFX_Matrix* pMatrix) { 156 const CFX_Matrix* pMatrix) {
156 return m_pOwner->DrawWidget(pGraphics, pMatrix); 157 return m_pOwner->DrawWidget(pGraphics, pMatrix);
157 } 158 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698