• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2020 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 CORE_FXGE_CFX_DRAWUTILS_H_
8 #define CORE_FXGE_CFX_DRAWUTILS_H_
9 
10 class CFX_FloatRect;
11 class CFX_Matrix;
12 class CFX_RenderDevice;
13 
14 class CFX_DrawUtils {
15  public:
16   CFX_DrawUtils() = delete;
17   CFX_DrawUtils(const CFX_DrawUtils&) = delete;
18   CFX_DrawUtils& operator=(const CFX_DrawUtils&) = delete;
19 
20   static void DrawFocusRect(CFX_RenderDevice* render_device,
21                             const CFX_Matrix& user_to_device,
22                             const CFX_FloatRect& view_bounding_box);
23 };
24 #endif  // CORE_FXGE_CFX_DRAWUTILS_H_
25