1 // Copyright 2016 The PDFium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 6 7 #ifndef XFA_FWL_FWL_WIDGETHIT_H_ 8 #define XFA_FWL_FWL_WIDGETHIT_H_ 9 10 namespace pdfium { 11 12 enum class FWL_WidgetHit { 13 Unknown = 0, 14 Client, 15 Left, 16 Top, 17 Right, 18 Bottom, 19 LeftTop, 20 RightTop, 21 LeftBottom, 22 RightBottom, 23 Titlebar, 24 MinBox, 25 MaxBox, 26 CloseBox, 27 HScrollBar, 28 VScrollBar, 29 Border, 30 Edge, 31 Edit, 32 HyperLink, 33 UpButton, 34 DownButton 35 }; 36 37 } // namespace pdfium 38 39 // TODO(crbug.com/42271761): Remove. 40 using pdfium::FWL_WidgetHit; 41 42 #endif // XFA_FWL_FWL_WIDGETHIT_H_ 43