xref: /aosp_15_r20/external/pdfium/core/fxge/cfx_drawutils.h (revision 3ac0a46f773bac49fa9476ec2b1cf3f8da5ec3a4)
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