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

Unified Diff: xfa/fwl/core/fwl_formimp.h

Issue 2001203002: Correctly implement GetPartState() function (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/core/fwl_formimp.h
diff --git a/xfa/fwl/core/fwl_formimp.h b/xfa/fwl/core/fwl_formimp.h
index 9d2d394d0369733e07ff67faf7fdb9747459f830..181324a14c9b80603bef803dbc18257d58928c82 100644
--- a/xfa/fwl/core/fwl_formimp.h
+++ b/xfa/fwl/core/fwl_formimp.h
@@ -48,7 +48,13 @@ class CFWL_SysBtn {
: m_dwState &= ~FWL_SYSBUTTONSTATE_Disabled;
}
int32_t GetPartState() {
dsinclair 2016/05/24 00:28:53 Can we update the return to be CFWL_PartState whil
Wei Li 2016/05/24 00:43:22 I am not sure about this. From the way how PartSta
dsinclair 2016/05/24 02:20:36 PartState shouldn't be a set of enums anymore unle
- return (IsDisabled() ? CFWL_PartState_Disabled : (m_dwState + 1));
+ if (IsDisabled())
+ return CFWL_PartState_Disabled;
+ if (m_dwState & FWL_SYSBUTTONSTATE_Pressed)
+ return CFWL_PartState_Pressed;
+ if (m_dwState & FWL_SYSBUTTONSTATE_Hover)
+ return FWL_SYSBUTTONSTATE_Hover;
dsinclair 2016/05/24 00:28:53 CFWL_PartState_Hovered?
Wei Li 2016/05/24 00:43:22 oops, fixed.
+ return CFWL_PartState_Normal;
}
CFX_RectF m_rtBtn;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698