// 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_FXFA_FXFA_H_ #define XFA_FXFA_FXFA_H_ // Note, values must match fpdf_formfill.h JSPLATFORM_ALERT_BUTTON_* flags. enum class AlertButton { … }; // Note, values must match fpdf_formfill.h JSPLATFORM_ALERT_ICON_* flags. enum class AlertIcon { … }; // Note, values must match fpdf_formfill.h JSPLATFORM_ALERT_RETURN_* flags. enum class AlertReturn { … }; // Note, values must match fpdf_formfill.h FORMTYPE_* flags. enum class FormType { … }; enum class XFA_PrintOpt : uint8_t { … }; enum class XFA_EventError { … }; enum class XFA_WidgetStatus : uint16_t { … }; #endif // XFA_FXFA_FXFA_H_