Index: fpdfsdk/include/pdfwindow/PWL_ListCtrl.h |
diff --git a/fpdfsdk/include/pdfwindow/PWL_ListCtrl.h b/fpdfsdk/include/pdfwindow/PWL_ListCtrl.h |
index 8997296f95643a8b5ec57ad9071c513baa746528..8b8b158cfef4b54aa708e781d226c6bebd6c6722 100644 |
--- a/fpdfsdk/include/pdfwindow/PWL_ListCtrl.h |
+++ b/fpdfsdk/include/pdfwindow/PWL_ListCtrl.h |
@@ -1,7 +1,7 @@ |
// Copyright 2014 PDFium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
- |
+ |
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
#ifndef _PWL_LISTCTRL_H_ |
@@ -9,45 +9,44 @@ |
class CPWL_ListCtrl; |
-class CPWL_ListCtrl : public CPWL_Wnd |
-{ |
-public: |
- CPWL_ListCtrl(); |
- virtual ~CPWL_ListCtrl(); |
- |
-public: |
- void SetScrollPos(const CPDF_Point& point); |
- CPDF_Point GetScrollPos() const; |
- CPDF_Rect GetScrollArea() const; |
- |
- void SetItemSpace(FX_FLOAT fSpace); |
- void SetTopSpace(FX_FLOAT fSpace); |
- void SetBottomSpace(FX_FLOAT fSpace); |
- void ResetFace(); |
- void ResetContent(FX_INT32 nStart); |
- FX_INT32 GetItemIndex(CPWL_Wnd* pItem); |
- FX_FLOAT GetContentsHeight(FX_FLOAT fLimitWidth); |
- |
-protected: |
- virtual void RePosChildWnd(); |
- virtual void DrawChildAppearance(CFX_RenderDevice* pDevice, CPDF_Matrix* pUser2Device); |
- |
-public: |
- CPDF_Point InToOut(const CPDF_Point& point) const; |
- CPDF_Point OutToIn(const CPDF_Point& point) const; |
- CPDF_Rect InToOut(const CPDF_Rect& rect) const; |
- CPDF_Rect OutToIn(const CPDF_Rect& rect) const; |
- |
-private: |
- void ResetAll(FX_BOOL bMove,FX_INT32 nStart); |
- |
-private: |
- CPDF_Rect m_rcContent; |
- CPDF_Point m_ptScroll; |
- FX_FLOAT m_fItemSpace; |
- FX_FLOAT m_fTopSpace; |
- FX_FLOAT m_fBottomSpace; |
+class CPWL_ListCtrl : public CPWL_Wnd { |
+ public: |
+ CPWL_ListCtrl(); |
+ virtual ~CPWL_ListCtrl(); |
+ |
+ public: |
+ void SetScrollPos(const CPDF_Point& point); |
+ CPDF_Point GetScrollPos() const; |
+ CPDF_Rect GetScrollArea() const; |
+ |
+ void SetItemSpace(FX_FLOAT fSpace); |
+ void SetTopSpace(FX_FLOAT fSpace); |
+ void SetBottomSpace(FX_FLOAT fSpace); |
+ void ResetFace(); |
+ void ResetContent(FX_INT32 nStart); |
+ FX_INT32 GetItemIndex(CPWL_Wnd* pItem); |
+ FX_FLOAT GetContentsHeight(FX_FLOAT fLimitWidth); |
+ |
+ protected: |
+ virtual void RePosChildWnd(); |
+ virtual void DrawChildAppearance(CFX_RenderDevice* pDevice, |
+ CPDF_Matrix* pUser2Device); |
+ |
+ public: |
+ CPDF_Point InToOut(const CPDF_Point& point) const; |
+ CPDF_Point OutToIn(const CPDF_Point& point) const; |
+ CPDF_Rect InToOut(const CPDF_Rect& rect) const; |
+ CPDF_Rect OutToIn(const CPDF_Rect& rect) const; |
+ |
+ private: |
+ void ResetAll(FX_BOOL bMove, FX_INT32 nStart); |
+ |
+ private: |
+ CPDF_Rect m_rcContent; |
+ CPDF_Point m_ptScroll; |
+ FX_FLOAT m_fItemSpace; |
+ FX_FLOAT m_fTopSpace; |
+ FX_FLOAT m_fBottomSpace; |
}; |
#endif |
- |