diff options
author | dsinclair <dsinclair@chromium.org> | 2016-06-16 14:59:56 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-16 14:59:56 -0700 |
commit | d931476503bc3ed2f0f6dda1ca2c18ef03bb1511 (patch) | |
tree | 60841dbd33ec9b876361ebb3cece9558d689cbd5 /fpdfsdk/pdfwindow/PWL_ListCtrl.h | |
parent | 5944f5f3b57c7b2a723484186c9f66b7adafda42 (diff) | |
download | pdfium-d931476503bc3ed2f0f6dda1ca2c18ef03bb1511.tar.xz |
Remove unused code.
This cl removes code that exists but is never called. This includes:
* cfwl_formtp
* cfwl_widgetdelegate
* cfwl_scrollbar
* cfwl_theme
* cfwl_tooltip
* PWL_Label
* PWL_ListCtrl
* PWL_Signature
* PWL_IconList
* BC_ResultPoint
* BC_CommonPerspectiveTransform
* BC_CommonBitSource
* BC_PDF417Codeword
* fx_codec_flate.h (the .cpp file still exists)
Review-Url: https://codereview.chromium.org/2071953002
Diffstat (limited to 'fpdfsdk/pdfwindow/PWL_ListCtrl.h')
-rw-r--r-- | fpdfsdk/pdfwindow/PWL_ListCtrl.h | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/fpdfsdk/pdfwindow/PWL_ListCtrl.h b/fpdfsdk/pdfwindow/PWL_ListCtrl.h deleted file mode 100644 index 844801978c..0000000000 --- a/fpdfsdk/pdfwindow/PWL_ListCtrl.h +++ /dev/null @@ -1,48 +0,0 @@ -// 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 FPDFSDK_PDFWINDOW_PWL_LISTCTRL_H_ -#define FPDFSDK_PDFWINDOW_PWL_LISTCTRL_H_ - -#include "fpdfsdk/pdfwindow/PWL_Wnd.h" - -class CPWL_ListCtrl : public CPWL_Wnd { - public: - CPWL_ListCtrl(); - ~CPWL_ListCtrl() override; - - void SetScrollPos(const CFX_FloatPoint& point); - CFX_FloatPoint GetScrollPos() const; - CFX_FloatRect GetScrollArea() const; - void SetItemSpace(FX_FLOAT fSpace); - void SetTopSpace(FX_FLOAT fSpace); - void SetBottomSpace(FX_FLOAT fSpace); - void ResetFace(); - void ResetContent(int32_t nStart); - int32_t GetItemIndex(CPWL_Wnd* pItem); - FX_FLOAT GetContentsHeight(FX_FLOAT fLimitWidth); - CFX_FloatPoint InToOut(const CFX_FloatPoint& point) const; - CFX_FloatPoint OutToIn(const CFX_FloatPoint& point) const; - CFX_FloatRect InToOut(const CFX_FloatRect& rect) const; - CFX_FloatRect OutToIn(const CFX_FloatRect& rect) const; - - protected: - // CPWL_Wnd - void RePosChildWnd() override; - void DrawChildAppearance(CFX_RenderDevice* pDevice, - CFX_Matrix* pUser2Device) override; - - private: - void ResetAll(FX_BOOL bMove, int32_t nStart); - - CFX_FloatRect m_rcContent; - CFX_FloatPoint m_ptScroll; - FX_FLOAT m_fItemSpace; - FX_FLOAT m_fTopSpace; - FX_FLOAT m_fBottomSpace; -}; - -#endif // FPDFSDK_PDFWINDOW_PWL_LISTCTRL_H_ |