// Copyright 2014 The PDFium Authors // 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_FWL_WIDGETDEF_H_ #define XFA_FWL_FWL_WIDGETDEF_H_ #include <stdint.h> namespace pdfium { // Same as enum FWL_VKEYCODE in public/fpdf_fwlevent.h, but duplicated here // to keep xfa/fwl standalone. enum XFA_FWL_VKEYCODE { … }; // Derived from FWL_EVENTFLAG in public/fwl_event.h, but not the same // values bit-for-bit, duplicated here to keep XFA standalone. enum class XFA_FWL_KeyFlag : uint8_t { … }; } // namespace pdfium // TODO(crbug.com/42271761): Remove. XFA_FWL_KeyFlag; XFA_FWL_VKEYCODE; #endif // XFA_FWL_FWL_WIDGETDEF_H_