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

Side by Side Diff: fpdfsdk/cpdfsdk_annothandlermgr.cpp

Issue 2334323005: Rename dictionary set and get methods (Closed)
Patch Set: 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
« no previous file with comments | « fpdfsdk/cba_annotiterator.cpp ('k') | fpdfsdk/cpdfsdk_baannot.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 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 "fpdfsdk/include/cpdfsdk_annothandlermgr.h" 7 #include "fpdfsdk/include/cpdfsdk_annothandlermgr.h"
8 8
9 #include "core/fpdfdoc/include/cpdf_annot.h" 9 #include "core/fpdfdoc/include/cpdf_annot.h"
10 #include "fpdfsdk/include/cba_annotiterator.h" 10 #include "fpdfsdk/include/cba_annotiterator.h"
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 void CPDFSDK_AnnotHandlerMgr::ReleaseAnnot(CPDFSDK_Annot* pAnnot) { 56 void CPDFSDK_AnnotHandlerMgr::ReleaseAnnot(CPDFSDK_Annot* pAnnot) {
57 IPDFSDK_AnnotHandler* pAnnotHandler = GetAnnotHandler(pAnnot); 57 IPDFSDK_AnnotHandler* pAnnotHandler = GetAnnotHandler(pAnnot);
58 pAnnotHandler->OnRelease(pAnnot); 58 pAnnotHandler->OnRelease(pAnnot);
59 pAnnotHandler->ReleaseAnnot(pAnnot); 59 pAnnotHandler->ReleaseAnnot(pAnnot);
60 } 60 }
61 61
62 void CPDFSDK_AnnotHandlerMgr::Annot_OnCreate(CPDFSDK_Annot* pAnnot) { 62 void CPDFSDK_AnnotHandlerMgr::Annot_OnCreate(CPDFSDK_Annot* pAnnot) {
63 CPDF_Annot* pPDFAnnot = pAnnot->GetPDFAnnot(); 63 CPDF_Annot* pPDFAnnot = pAnnot->GetPDFAnnot();
64 64
65 CPDFSDK_DateTime curTime; 65 CPDFSDK_DateTime curTime;
66 pPDFAnnot->GetAnnotDict()->SetAtString("M", curTime.ToPDFDateTimeString()); 66 pPDFAnnot->GetAnnotDict()->SetStringFor("M", curTime.ToPDFDateTimeString());
67 pPDFAnnot->GetAnnotDict()->SetAtNumber("F", 0); 67 pPDFAnnot->GetAnnotDict()->SetNumberFor("F", 0);
68 68
69 GetAnnotHandler(pAnnot)->OnCreate(pAnnot); 69 GetAnnotHandler(pAnnot)->OnCreate(pAnnot);
70 } 70 }
71 71
72 void CPDFSDK_AnnotHandlerMgr::Annot_OnLoad(CPDFSDK_Annot* pAnnot) { 72 void CPDFSDK_AnnotHandlerMgr::Annot_OnLoad(CPDFSDK_Annot* pAnnot) {
73 ASSERT(pAnnot); 73 ASSERT(pAnnot);
74 GetAnnotHandler(pAnnot)->OnLoad(pAnnot); 74 GetAnnotHandler(pAnnot)->OnLoad(pAnnot);
75 } 75 }
76 76
77 IPDFSDK_AnnotHandler* CPDFSDK_AnnotHandlerMgr::GetAnnotHandler( 77 IPDFSDK_AnnotHandler* CPDFSDK_AnnotHandlerMgr::GetAnnotHandler(
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 bNext ? pWidgetIterator->MoveToNext() : pWidgetIterator->MoveToPrevious(); 299 bNext ? pWidgetIterator->MoveToNext() : pWidgetIterator->MoveToPrevious();
300 if (!hNextFocus && pSDKAnnot) 300 if (!hNextFocus && pSDKAnnot)
301 hNextFocus = pWidgetIterator->MoveToFirst(); 301 hNextFocus = pWidgetIterator->MoveToFirst();
302 302
303 return pPageView->GetAnnotByXFAWidget(hNextFocus); 303 return pPageView->GetAnnotByXFAWidget(hNextFocus);
304 #else // PDF_ENABLE_XFA 304 #else // PDF_ENABLE_XFA
305 CBA_AnnotIterator ai(pSDKAnnot->GetPageView(), CPDF_Annot::Subtype::WIDGET); 305 CBA_AnnotIterator ai(pSDKAnnot->GetPageView(), CPDF_Annot::Subtype::WIDGET);
306 return bNext ? ai.GetNextAnnot(pSDKAnnot) : ai.GetPrevAnnot(pSDKAnnot); 306 return bNext ? ai.GetNextAnnot(pSDKAnnot) : ai.GetPrevAnnot(pSDKAnnot);
307 #endif // PDF_ENABLE_XFA 307 #endif // PDF_ENABLE_XFA
308 } 308 }
OLDNEW
« no previous file with comments | « fpdfsdk/cba_annotiterator.cpp ('k') | fpdfsdk/cpdfsdk_baannot.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698