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_ffimageedit.h" | 7 #include "xfa/fxfa/app/xfa_ffimageedit.h" |
8 | 8 |
9 #include "xfa/fwl/core/cfwl_message.h" | 9 #include "xfa/fwl/core/cfwl_message.h" |
10 #include "xfa/fwl/core/ifwl_app.h" | 10 #include "xfa/fwl/core/ifwl_app.h" |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
99 ms.m_fy = fy; | 99 ms.m_fy = fy; |
100 ms.m_pDstTarget = m_pNormalWidget->m_pIface; | 100 ms.m_pDstTarget = m_pNormalWidget->m_pIface; |
101 FWLToClient(ms.m_fx, ms.m_fy); | 101 FWLToClient(ms.m_fx, ms.m_fy); |
102 TranslateFWLMessage(&ms); | 102 TranslateFWLMessage(&ms); |
103 IXFA_AppProvider* pAppProvider = GetAppProvider(); | 103 IXFA_AppProvider* pAppProvider = GetAppProvider(); |
104 if (!pAppProvider) { | 104 if (!pAppProvider) { |
105 return TRUE; | 105 return TRUE; |
106 } | 106 } |
107 CFX_WideString wsTitle; | 107 CFX_WideString wsTitle; |
108 CFX_WideString wsFilter; | 108 CFX_WideString wsFilter; |
109 pAppProvider->LoadString(XFA_IDS_ImageFilter, wsFilter); | 109 pAppProvider->LoadString(XFA_IDS_ImageFilter, wsFilter); |
dsinclair
2016/04/26 00:05:40
This can also be removed I think. I believe LoadSt
Tom Sepez
2016/04/26 16:13:02
Done.
| |
110 CFX_WideStringArray wsPathArray; | |
111 pAppProvider->ShowFileDialog(wsTitle.AsStringC(), wsFilter.AsStringC(), | |
112 wsPathArray); | |
113 int32_t iSize = wsPathArray.GetSize(); | |
114 if (iSize < 1) { | |
115 return TRUE; | |
Tom Sepez
2016/04/25 22:59:09
This is always hit .
| |
116 } | |
117 CFX_WideString wsFilePath = wsPathArray[0]; | |
118 FX_STRSIZE nLen = wsFilePath.GetLength(); | |
119 FX_STRSIZE nIndex = nLen - 1; | |
120 while (nIndex > 0 && wsFilePath[nIndex] != '.') { | |
121 nIndex--; | |
122 } | |
123 if (nIndex <= 0) { | |
124 return TRUE; | |
125 } | |
126 CFX_WideString wsContentType(L"image/"); | |
127 wsContentType += wsFilePath.Right(nLen - nIndex - 1); | |
128 wsContentType.MakeLower(); | |
129 FXCODEC_IMAGE_TYPE eImageType = XFA_GetImageType(wsContentType); | |
130 if (eImageType == FXCODEC_IMAGE_UNKNOWN) { | |
131 return TRUE; | |
132 } | |
133 CFX_WideString wsImage; | |
134 IFX_FileRead* pFileRead = FX_CreateFileRead(wsFilePath.c_str()); | |
135 if (pFileRead) { | |
136 int32_t nDataSize = pFileRead->GetSize(); | |
137 if (nDataSize > 0) { | |
138 CFX_ByteString bsBuf; | |
139 FX_CHAR* pImageBuffer = bsBuf.GetBuffer(nDataSize); | |
140 pFileRead->ReadBlock(pImageBuffer, 0, nDataSize); | |
141 bsBuf.ReleaseBuffer(); | |
142 if (!bsBuf.IsEmpty()) { | |
143 FX_CHAR* pData = XFA_Base64Encode(bsBuf.raw_str(), nDataSize); | |
144 wsImage = CFX_WideString::FromLocal(pData); | |
145 FX_Free(pData); | |
146 } | |
147 } | |
148 m_pDataAcc->SetImageEditImage(NULL); | |
149 pFileRead->Release(); | |
150 } | |
151 m_pDataAcc->SetImageEdit(wsContentType.AsStringC(), CFX_WideStringC(), | |
152 wsImage.AsStringC()); | |
153 m_pDataAcc->LoadImageEditImage(); | |
154 AddInvalidateRect(); | |
155 m_pDocView->SetChangeMark(); | |
156 return TRUE; | 110 return TRUE; |
157 } | 111 } |
158 void CXFA_FFImageEdit::SetFWLRect() { | 112 void CXFA_FFImageEdit::SetFWLRect() { |
159 if (!m_pNormalWidget) { | 113 if (!m_pNormalWidget) { |
160 return; | 114 return; |
161 } | 115 } |
162 CFX_RectF rtUIMargin; | 116 CFX_RectF rtUIMargin; |
163 m_pDataAcc->GetUIMargin(rtUIMargin); | 117 m_pDataAcc->GetUIMargin(rtUIMargin); |
164 CFX_RectF rtImage(m_rtUI); | 118 CFX_RectF rtImage(m_rtUI); |
165 rtImage.Deflate(rtUIMargin.left, rtUIMargin.top, rtUIMargin.width, | 119 rtImage.Deflate(rtUIMargin.left, rtUIMargin.top, rtUIMargin.width, |
(...skipping 12 matching lines...) Expand all Loading... | |
178 return m_pOldDelegate->OnProcessMessage(pMessage); | 132 return m_pOldDelegate->OnProcessMessage(pMessage); |
179 } | 133 } |
180 FWL_ERR CXFA_FFImageEdit::OnProcessEvent(CFWL_Event* pEvent) { | 134 FWL_ERR CXFA_FFImageEdit::OnProcessEvent(CFWL_Event* pEvent) { |
181 CXFA_FFField::OnProcessEvent(pEvent); | 135 CXFA_FFField::OnProcessEvent(pEvent); |
182 return m_pOldDelegate->OnProcessEvent(pEvent); | 136 return m_pOldDelegate->OnProcessEvent(pEvent); |
183 } | 137 } |
184 FWL_ERR CXFA_FFImageEdit::OnDrawWidget(CFX_Graphics* pGraphics, | 138 FWL_ERR CXFA_FFImageEdit::OnDrawWidget(CFX_Graphics* pGraphics, |
185 const CFX_Matrix* pMatrix) { | 139 const CFX_Matrix* pMatrix) { |
186 return m_pOldDelegate->OnDrawWidget(pGraphics, pMatrix); | 140 return m_pOldDelegate->OnDrawWidget(pGraphics, pMatrix); |
187 } | 141 } |
OLD | NEW |