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

Side by Side Diff: xfa/fwl/core/cfwl_caret.cpp

Issue 2524173002: Merge IFWL and CFWL classes. (Closed)
Patch Set: make chrome build happy Created 4 years 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/core/cfwl_caret.h" 7 #include "xfa/fwl/core/cfwl_caret.h"
8 8
9 #include <utility> 9 #include <utility>
10 10
11 #include "third_party/base/ptr_util.h" 11 #include "third_party/base/ptr_util.h"
12 #include "xfa/fwl/core/cfwl_notedriver.h" 12 #include "xfa/fwl/core/cfwl_notedriver.h"
13 #include "xfa/fwl/core/cfwl_themebackground.h" 13 #include "xfa/fwl/core/cfwl_themebackground.h"
14 #include "xfa/fwl/core/cfwl_timerinfo.h" 14 #include "xfa/fwl/core/cfwl_timerinfo.h"
15 #include "xfa/fwl/core/cfwl_widgetproperties.h" 15 #include "xfa/fwl/core/cfwl_widgetproperties.h"
16 #include "xfa/fwl/core/ifwl_themeprovider.h" 16 #include "xfa/fwl/core/ifwl_themeprovider.h"
17 17
18 namespace { 18 namespace {
19 19
20 const uint32_t kFrequency = 400; 20 const uint32_t kFrequency = 400;
21 21
22 } // namespace 22 } // namespace
23 23
24 CFWL_Caret::CFWL_Caret(const CFWL_App* app, 24 CFWL_Caret::CFWL_Caret(const CFWL_App* app,
25 std::unique_ptr<CFWL_WidgetProperties> properties, 25 std::unique_ptr<CFWL_WidgetProperties> properties,
26 IFWL_Widget* pOuter) 26 CFWL_Widget* pOuter)
27 : IFWL_Widget(app, std::move(properties), pOuter), 27 : CFWL_Widget(app, std::move(properties), pOuter),
28 m_pTimer(new CFWL_Caret::Timer(this)), 28 m_pTimer(new CFWL_Caret::Timer(this)),
29 m_pTimerInfo(nullptr) { 29 m_pTimerInfo(nullptr) {
30 SetStates(FWL_STATE_CAT_HightLight); 30 SetStates(FWL_STATE_CAT_HightLight);
31 } 31 }
32 32
33 CFWL_Caret::~CFWL_Caret() { 33 CFWL_Caret::~CFWL_Caret() {
34 if (m_pTimerInfo) { 34 if (m_pTimerInfo) {
35 m_pTimerInfo->StopTimer(); 35 m_pTimerInfo->StopTimer();
36 m_pTimerInfo = nullptr; 36 m_pTimerInfo = nullptr;
37 } 37 }
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 void CFWL_Caret::Timer::Run(CFWL_TimerInfo* pTimerInfo) { 99 void CFWL_Caret::Timer::Run(CFWL_TimerInfo* pTimerInfo) {
100 CFWL_Caret* pCaret = static_cast<CFWL_Caret*>(m_pWidget); 100 CFWL_Caret* pCaret = static_cast<CFWL_Caret*>(m_pWidget);
101 pCaret->SetStates(FWL_STATE_CAT_HightLight, 101 pCaret->SetStates(FWL_STATE_CAT_HightLight,
102 !(pCaret->GetStates() & FWL_STATE_CAT_HightLight)); 102 !(pCaret->GetStates() & FWL_STATE_CAT_HightLight));
103 103
104 CFX_RectF rt; 104 CFX_RectF rt;
105 pCaret->GetWidgetRect(rt); 105 pCaret->GetWidgetRect(rt);
106 rt.Set(0, 0, rt.width + 1, rt.height); 106 rt.Set(0, 0, rt.width + 1, rt.height);
107 pCaret->Repaint(&rt); 107 pCaret->Repaint(&rt);
108 } 108 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698