OLD | NEW |
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 Loading... |
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->GetDocProvider()->GotoURL(pDoc, wsURLContent, FALSE); | 138 pDoc->GetDocEnvironment()->GotoURL(pDoc, wsURLContent, FALSE); |
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 Loading... |
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 } |
OLD | NEW |