summaryrefslogtreecommitdiff
path: root/xfa/fwl/core/fwl_widgethit.h
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-09-29 17:41:42 -0700
committerCommit bot <commit-bot@chromium.org>2016-09-29 17:41:42 -0700
commit202ad7238489934ba0c64760de5f95782b36a213 (patch)
tree629937d0f0777fd4198e361bc6526bec44f5eb81 /xfa/fwl/core/fwl_widgethit.h
parent435546810a7c48f09889c00600ad344850b71f95 (diff)
downloadpdfium-202ad7238489934ba0c64760de5f95782b36a213.tar.xz
Move xfa/{fwl,fxbarcode,fxgraphics}/include up to parent
BUG=pdfium:611 Review-Url: https://codereview.chromium.org/2383583002
Diffstat (limited to 'xfa/fwl/core/fwl_widgethit.h')
-rw-r--r--xfa/fwl/core/fwl_widgethit.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/xfa/fwl/core/fwl_widgethit.h b/xfa/fwl/core/fwl_widgethit.h
new file mode 100644
index 0000000000..3adecfe49e
--- /dev/null
+++ b/xfa/fwl/core/fwl_widgethit.h
@@ -0,0 +1,35 @@
+// Copyright 2016 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 XFA_FWL_CORE_FWL_WIDGETHIT_H_
+#define XFA_FWL_CORE_FWL_WIDGETHIT_H_
+
+enum class FWL_WidgetHit {
+ Unknown = 0,
+ Client,
+ Left,
+ Top,
+ Right,
+ Bottom,
+ LeftTop,
+ RightTop,
+ LeftBottom,
+ RightBottom,
+ Titlebar,
+ MinBox,
+ MaxBox,
+ CloseBox,
+ HScrollBar,
+ VScrollBar,
+ Border,
+ Edge,
+ Edit,
+ HyperLink,
+ UpButton,
+ DownButton
+};
+
+#endif // XFA_FWL_CORE_FWL_WIDGETHIT_H_