chromium/third_party/pdfium/xfa/fwl/theme/cfwl_utils.h

// 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_THEME_CFWL_UTILS_H_
#define XFA_FWL_THEME_CFWL_UTILS_H_

#include <stdint.h>

#include "core/fxge/dib/fx_dib.h"

namespace pdfium {

// Values matter, used for indexing.
enum class FWLTHEME_STATE : uint8_t {};

enum class FWLTHEME_DIRECTION : uint8_t {};

#define FWLTHEME_COLOR_EDGERB1
#define FWLTHEME_COLOR_Background
#define FWLTHEME_COLOR_BKSelected

#define FWLTHEME_CAPACITY_FontSize
#define FWLTHEME_CAPACITY_TextColor
#define FWLTHEME_CAPACITY_TextDisColor

}  // namespace pdfium

// TODO(crbug.com/42271761): Remove.
FWLTHEME_STATE;

#endif  // XFA_FWL_THEME_CFWL_UTILS_H_