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

Side by Side Diff: xfa/fxfa/app/xfa_fftext.cpp

Issue 2354363003: Move CPDFSDK_Environment code to cpp file (Closed)
Patch Set: Review feedback Created 4 years, 3 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/fxfa/app/xfa_fftext.h" 7 #include "xfa/fxfa/app/xfa_fftext.h"
8 8
9 #include "xfa/fwl/core/fwl_widgetdef.h" 9 #include "xfa/fwl/core/fwl_widgetdef.h"
10 #include "xfa/fxfa/app/xfa_ffdraw.h" 10 #include "xfa/fxfa/app/xfa_ffdraw.h"
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 FX_BOOL CXFA_FFText::OnLButtonUp(uint32_t dwFlags, FX_FLOAT fx, FX_FLOAT fy) { 128 FX_BOOL CXFA_FFText::OnLButtonUp(uint32_t dwFlags, FX_FLOAT fx, FX_FLOAT fy) {
129 if (!IsButtonDown()) { 129 if (!IsButtonDown()) {
130 return FALSE; 130 return FALSE;
131 } 131 }
132 SetButtonDown(FALSE); 132 SetButtonDown(FALSE);
133 const FX_WCHAR* wsURLContent = GetLinkURLAtPoint(fx, fy); 133 const FX_WCHAR* wsURLContent = GetLinkURLAtPoint(fx, fy);
134 if (!wsURLContent) { 134 if (!wsURLContent) {
135 return FALSE; 135 return FALSE;
136 } 136 }
137 CXFA_FFDoc* pDoc = GetDoc(); 137 CXFA_FFDoc* pDoc = GetDoc();
138 pDoc->GetDocEnvironment()->GotoURL(pDoc, wsURLContent, FALSE); 138 pDoc->GetDocEnvironment()->GotoURL(pDoc, wsURLContent);
139 return TRUE; 139 return TRUE;
140 } 140 }
141 FWL_WidgetHit CXFA_FFText::OnHitTest(FX_FLOAT fx, FX_FLOAT fy) { 141 FWL_WidgetHit CXFA_FFText::OnHitTest(FX_FLOAT fx, FX_FLOAT fy) {
142 CFX_RectF rtBox; 142 CFX_RectF rtBox;
143 GetRectWithoutRotate(rtBox); 143 GetRectWithoutRotate(rtBox);
144 if (!rtBox.Contains(fx, fy)) 144 if (!rtBox.Contains(fx, fy))
145 return FWL_WidgetHit::Unknown; 145 return FWL_WidgetHit::Unknown;
146 if (!GetLinkURLAtPoint(fx, fy)) 146 if (!GetLinkURLAtPoint(fx, fy))
147 return FWL_WidgetHit::Unknown; 147 return FWL_WidgetHit::Unknown;
148 return FWL_WidgetHit::HyperLink; 148 return FWL_WidgetHit::HyperLink;
(...skipping 18 matching lines...) Expand all
167 } 167 }
168 } 168 }
169 return nullptr; 169 return nullptr;
170 } 170 }
171 void CXFA_FFText::FWLToClient(FX_FLOAT& fx, FX_FLOAT& fy) { 171 void CXFA_FFText::FWLToClient(FX_FLOAT& fx, FX_FLOAT& fy) {
172 CFX_RectF rtWidget; 172 CFX_RectF rtWidget;
173 GetRectWithoutRotate(rtWidget); 173 GetRectWithoutRotate(rtWidget);
174 fx -= rtWidget.left; 174 fx -= rtWidget.left;
175 fy -= rtWidget.top; 175 fy -= rtWidget.top;
176 } 176 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698