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

Unified Diff: fpdfsdk/include/pdfwindow/PWL_ListCtrl.h

Issue 1823153002: Move the fpdfsdk/include/pdfwindow/ headers into fpdfsdk/pdfwindow. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « fpdfsdk/include/pdfwindow/PWL_ListBox.h ('k') | fpdfsdk/include/pdfwindow/PWL_Note.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fpdfsdk/include/pdfwindow/PWL_ListCtrl.h
diff --git a/fpdfsdk/include/pdfwindow/PWL_ListCtrl.h b/fpdfsdk/include/pdfwindow/PWL_ListCtrl.h
deleted file mode 100644
index 0345d02dea4948991bdb34883b247c4f5e72b013..0000000000000000000000000000000000000000
--- a/fpdfsdk/include/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_INCLUDE_PDFWINDOW_PWL_LISTCTRL_H_
-#define FPDFSDK_INCLUDE_PDFWINDOW_PWL_LISTCTRL_H_
-
-#include "fpdfsdk/include/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_INCLUDE_PDFWINDOW_PWL_LISTCTRL_H_
« no previous file with comments | « fpdfsdk/include/pdfwindow/PWL_ListBox.h ('k') | fpdfsdk/include/pdfwindow/PWL_Note.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698