diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-07-05 09:28:15 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-07-05 15:31:45 +0000 |
commit | fb00ec2af390ccfe8f5e81f49b9113e044f5e5ad (patch) | |
tree | 9f1c89f504db465251d46d5de4cd9042e2d5c663 /fpdfsdk/pdfwindow/cpwl_wnd.h | |
parent | e5e889eec8b362f5c65fc142660ad745a0d5cf21 (diff) | |
download | pdfium-fb00ec2af390ccfe8f5e81f49b9113e044f5e5ad.tar.xz |
Move PNM_SETSCROLLINFO out of OnNotify
This CL moves the SETSCROLLINFO from a OnNotify message to a method
which is called directly.
Change-Id: I5d793c1c7a54c0fa3bdadffac72aae934cb9da57
Reviewed-on: https://pdfium-review.googlesource.com/7251
Reviewed-by: Nicolás Peña <npm@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/pdfwindow/cpwl_wnd.h')
-rw-r--r-- | fpdfsdk/pdfwindow/cpwl_wnd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fpdfsdk/pdfwindow/cpwl_wnd.h b/fpdfsdk/pdfwindow/cpwl_wnd.h index 39ed4028a9..9ffae162f3 100644 --- a/fpdfsdk/pdfwindow/cpwl_wnd.h +++ b/fpdfsdk/pdfwindow/cpwl_wnd.h @@ -25,6 +25,7 @@ class CPWL_Wnd; class CFX_SystemHandler; class IPVT_FontMap; class IPWL_Provider; +struct PWL_SCROLL_INFO; // window styles #define PWS_CHILD 0x80000000L @@ -73,7 +74,6 @@ class IPWL_Provider; #define PRES_TEXTOVERFLOW 0x0400L // notification messages -#define PNM_SETSCROLLINFO 2 #define PNM_SETSCROLLPOS 3 #define PNM_SCROLLWINDOW 4 #define PNM_LBUTTONDOWN 5 @@ -220,6 +220,7 @@ class CPWL_Wnd : public CPWL_TimerHandler { uint32_t msg, intptr_t wParam = 0, intptr_t lParam = 0); + virtual void SetScrollInfo(const PWL_SCROLL_INFO& info); virtual void SetFocus(); virtual void KillFocus(); virtual void SetCursor(); |