| 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 "../../include/pdfwindow/PDFWindow.h" | 7 #include "../../include/pdfwindow/PDFWindow.h" |
| 8 #include "../../include/pdfwindow/PWL_Wnd.h" | 8 #include "../../include/pdfwindow/PWL_Wnd.h" |
| 9 #include "../../include/pdfwindow/PWL_Label.h" | 9 #include "../../include/pdfwindow/PWL_Label.h" |
| 10 #include "../../include/pdfwindow/PWL_Utils.h" | 10 #include "../../include/pdfwindow/PWL_Utils.h" |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 rcClip = GetClientRect(); | 125 rcClip = GetClientRect(); |
| 126 pRange = &wrRange; | 126 pRange = &wrRange; |
| 127 } | 127 } |
| 128 IFX_SystemHandler* pSysHandler = GetSystemHandler(); | 128 IFX_SystemHandler* pSysHandler = GetSystemHandler(); |
| 129 IFX_Edit::DrawEdit(pDevice, pUser2Device, m_pEdit, | 129 IFX_Edit::DrawEdit(pDevice, pUser2Device, m_pEdit, |
| 130 CPWL_Utils::PWLColorToFXColor(GetTextColor(), this->GetTranspare
ncy()), | 130 CPWL_Utils::PWLColorToFXColor(GetTextColor(), this->GetTranspare
ncy()), |
| 131 CPWL_Utils::PWLColorToFXColor(GetTextStrokeColor(), this->GetTra
nsparency()), | 131 CPWL_Utils::PWLColorToFXColor(GetTextStrokeColor(), this->GetTra
nsparency()), |
| 132 rcClip, CPDF_Point(0.0f,0.0f), pRange,pSysHandler, NULL); | 132 rcClip, CPDF_Point(0.0f,0.0f), pRange,pSysHandler, NULL); |
| 133 } | 133 } |
| 134 | 134 |
| 135 void CPWL_Label::SetHorzScale(FX_INT32 nHorzScale) | 135 void CPWL_Label::SetHorzScale(int32_t nHorzScale) |
| 136 { | 136 { |
| 137 m_pEdit->SetHorzScale(nHorzScale); | 137 m_pEdit->SetHorzScale(nHorzScale); |
| 138 } | 138 } |
| 139 | 139 |
| 140 void CPWL_Label::SetCharSpace(FX_FLOAT fCharSpace) | 140 void CPWL_Label::SetCharSpace(FX_FLOAT fCharSpace) |
| 141 { | 141 { |
| 142 m_pEdit->SetCharSpace(fCharSpace); | 142 m_pEdit->SetCharSpace(fCharSpace); |
| 143 } | 143 } |
| 144 | 144 |
| 145 CPDF_Rect CPWL_Label::GetContentRect() const | 145 CPDF_Rect CPWL_Label::GetContentRect() const |
| (...skipping 19 matching lines...) Expand all Loading... |
| 165 } | 165 } |
| 166 | 166 |
| 167 return sRet.GetByteString(); | 167 return sRet.GetByteString(); |
| 168 } | 168 } |
| 169 | 169 |
| 170 CFX_WideString CPWL_Label::GetText() const | 170 CFX_WideString CPWL_Label::GetText() const |
| 171 { | 171 { |
| 172 return m_pEdit->GetText(); | 172 return m_pEdit->GetText(); |
| 173 } | 173 } |
| 174 | 174 |
| 175 void CPWL_Label::SetLimitChar(FX_INT32 nLimitChar) | 175 void CPWL_Label::SetLimitChar(int32_t nLimitChar) |
| 176 { | 176 { |
| 177 m_pEdit->SetLimitChar(nLimitChar); | 177 m_pEdit->SetLimitChar(nLimitChar); |
| 178 } | 178 } |
| 179 | 179 |
| 180 FX_INT32 CPWL_Label::GetTotalWords() | 180 int32_t CPWL_Label::GetTotalWords() |
| 181 { | 181 { |
| 182 if (m_pEdit) | 182 if (m_pEdit) |
| 183 return m_pEdit->GetTotalWords(); | 183 return m_pEdit->GetTotalWords(); |
| 184 | 184 |
| 185 return 0; | 185 return 0; |
| 186 } | 186 } |
| 187 | 187 |
| OLD | NEW |