| 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 21 matching lines...) Expand all Loading... |
| 32 { | 32 { |
| 33 SetParamByFlag(); | 33 SetParamByFlag(); |
| 34 SetFontSize(GetCreationParam().fFontSize); | 34 SetFontSize(GetCreationParam().fFontSize); |
| 35 | 35 |
| 36 m_pEdit->SetFontMap(GetFontMap()); | 36 m_pEdit->SetFontMap(GetFontMap()); |
| 37 m_pEdit->Initialize(); | 37 m_pEdit->Initialize(); |
| 38 | 38 |
| 39 if (HasFlag(PES_TEXTOVERFLOW)) | 39 if (HasFlag(PES_TEXTOVERFLOW)) |
| 40 { | 40 { |
| 41 SetClipRect(CPDF_Rect(0.0f,0.0f,0.0f,0.0f)); | 41 SetClipRect(CPDF_Rect(0.0f,0.0f,0.0f,0.0f)); |
| 42 » » m_pEdit->SetTextOverflow(TRUE); | 42 » » m_pEdit->SetTextOverflow(true); |
| 43 } | 43 } |
| 44 } | 44 } |
| 45 | 45 |
| 46 void CPWL_Label::SetText(const FX_WCHAR* csText) | 46 void CPWL_Label::SetText(const FX_WCHAR* csText) |
| 47 { | 47 { |
| 48 m_pEdit->SetText(csText); | 48 m_pEdit->SetText(csText); |
| 49 } | 49 } |
| 50 | 50 |
| 51 void CPWL_Label::RePosChildWnd() | 51 void CPWL_Label::RePosChildWnd() |
| 52 { | 52 { |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 } | 178 } |
| 179 | 179 |
| 180 int32_t 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 |