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 #ifndef _FSDK_BASEANNOT_H_ | 7 #ifndef _FSDK_BASEANNOT_H_ |
8 #define _FSDK_BASEANNOT_H_ | 8 #define _FSDK_BASEANNOT_H_ |
9 | 9 |
10 #if _FX_OS_ == _FX_ANDROID_ | 10 #if _FX_OS_ == _FX_ANDROID_ |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 void ResetDateTime(); | 46 void ResetDateTime(); |
47 | 47 |
48 struct FX_DATETIME | 48 struct FX_DATETIME |
49 { | 49 { |
50 FX_SHORT year; | 50 FX_SHORT year; |
51 FX_BYTE month; | 51 FX_BYTE month; |
52 FX_BYTE day; | 52 FX_BYTE day; |
53 FX_BYTE hour; | 53 FX_BYTE hour; |
54 FX_BYTE minute; | 54 FX_BYTE minute; |
55 FX_BYTE second; | 55 FX_BYTE second; |
56 » » FX_CHAR»» tzHour; | 56 » » FX_INT8 » tzHour; |
57 FX_BYTE tzMinute; | 57 FX_BYTE tzMinute; |
58 }dt; | 58 }dt; |
59 }; | 59 }; |
60 | 60 |
61 class CPDFSDK_Annot | 61 class CPDFSDK_Annot |
62 { | 62 { |
63 public: | 63 public: |
64 CPDFSDK_Annot(CPDF_Annot* pAnnot, CPDFSDK_PageView* pPageView); | 64 CPDFSDK_Annot(CPDF_Annot* pAnnot, CPDFSDK_PageView* pPageView); |
65 virtual ~CPDFSDK_Annot(); | 65 virtual ~CPDFSDK_Annot(); |
66 public: | 66 public: |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 CPDFSDK_PageView* m_pPageView; | 176 CPDFSDK_PageView* m_pPageView; |
177 FX_BOOL m_bSelected; | 177 FX_BOOL m_bSelected; |
178 int m_nTabOrder; | 178 int m_nTabOrder; |
179 | 179 |
180 }; | 180 }; |
181 | 181 |
182 | 182 |
183 | 183 |
184 #endif | 184 #endif |
185 | 185 |
OLD | NEW |