| OLD | NEW |
| 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 #ifndef CORE_FPDFAPI_FPDF_PAGE_INCLUDE_CPDF_GENERALSTATEDATA_H_ | 7 #ifndef CORE_FPDFAPI_FPDF_PAGE_INCLUDE_CPDF_GENERALSTATEDATA_H_ |
| 8 #define CORE_FPDFAPI_FPDF_PAGE_INCLUDE_CPDF_GENERALSTATEDATA_H_ | 8 #define CORE_FPDFAPI_FPDF_PAGE_INCLUDE_CPDF_GENERALSTATEDATA_H_ |
| 9 | 9 |
| 10 #include "core/fxcrt/include/fx_coordinates.h" | 10 #include "core/fxcrt/include/fx_coordinates.h" |
| 11 #include "core/fxcrt/include/fx_string.h" | 11 #include "core/fxcrt/include/fx_string.h" |
| 12 #include "core/fxcrt/include/fx_system.h" | 12 #include "core/fxcrt/include/fx_system.h" |
| 13 #include "core/include/fxge/fx_dib.h" | 13 #include "core/fxge/include/fx_dib.h" |
| 14 | 14 |
| 15 class CPDF_TransferFunc; | 15 class CPDF_TransferFunc; |
| 16 class CPDF_Object; | 16 class CPDF_Object; |
| 17 | 17 |
| 18 class CPDF_GeneralStateData { | 18 class CPDF_GeneralStateData { |
| 19 public: | 19 public: |
| 20 CPDF_GeneralStateData(); | 20 CPDF_GeneralStateData(); |
| 21 CPDF_GeneralStateData(const CPDF_GeneralStateData& src); | 21 CPDF_GeneralStateData(const CPDF_GeneralStateData& src); |
| 22 ~CPDF_GeneralStateData(); | 22 ~CPDF_GeneralStateData(); |
| 23 | 23 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 40 FX_BOOL m_FillOP; | 40 FX_BOOL m_FillOP; |
| 41 int m_OPMode; | 41 int m_OPMode; |
| 42 CPDF_Object* m_pBG; | 42 CPDF_Object* m_pBG; |
| 43 CPDF_Object* m_pUCR; | 43 CPDF_Object* m_pUCR; |
| 44 CPDF_Object* m_pHT; | 44 CPDF_Object* m_pHT; |
| 45 FX_FLOAT m_Flatness; | 45 FX_FLOAT m_Flatness; |
| 46 FX_FLOAT m_Smoothness; | 46 FX_FLOAT m_Smoothness; |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 #endif // CORE_FPDFAPI_FPDF_PAGE_INCLUDE_CPDF_GENERALSTATEDATA_H_ | 49 #endif // CORE_FPDFAPI_FPDF_PAGE_INCLUDE_CPDF_GENERALSTATEDATA_H_ |
| OLD | NEW |