blob: 368d904872d71162babe08a150ff8b79526b3c44 [file] [log] [blame]
kumarashishg826308d2023-06-23 13:21:22 +00001// Copyright 2014 The PDFium Authors
Philip P. Moltmann4d3acf42017-03-20 11:05:52 -07002// 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 XFA_FWL_THEME_CFWL_PICTUREBOXTP_H_
8#define XFA_FWL_THEME_CFWL_PICTUREBOXTP_H_
9
kumarashishg826308d2023-06-23 13:21:22 +000010#include "fxjs/gc/heap.h"
Philip P. Moltmann4d3acf42017-03-20 11:05:52 -070011#include "xfa/fwl/theme/cfwl_widgettp.h"
12
Haibo Huang49cc9302020-04-27 16:14:24 -070013class CFWL_PictureBoxTP final : public CFWL_WidgetTP {
Philip P. Moltmann4d3acf42017-03-20 11:05:52 -070014 public:
kumarashishg826308d2023-06-23 13:21:22 +000015 CONSTRUCT_VIA_MAKE_GARBAGE_COLLECTED;
Philip P. Moltmann4d3acf42017-03-20 11:05:52 -070016 ~CFWL_PictureBoxTP() override;
17
kumarashishg826308d2023-06-23 13:21:22 +000018 // CFWL_WidgetTP:
Haibo Huang49cc9302020-04-27 16:14:24 -070019 void DrawBackground(const CFWL_ThemeBackground& pParams) override;
kumarashishg826308d2023-06-23 13:21:22 +000020
21 private:
22 CFWL_PictureBoxTP();
Philip P. Moltmann4d3acf42017-03-20 11:05:52 -070023};
24
25#endif // XFA_FWL_THEME_CFWL_PICTUREBOXTP_H_