35 lines
983 B
C++
35 lines
983 B
C++
// Copyright (c) 2020 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_API_VIEWS_ELECTRON_API_IMAGE_VIEW_H_
|
|
#define ELECTRON_SHELL_BROWSER_API_VIEWS_ELECTRON_API_IMAGE_VIEW_H_
|
|
|
|
#include "gin/handle.h"
|
|
#include "shell/browser/api/electron_api_view.h"
|
|
#include "ui/gfx/image/image.h"
|
|
#include "ui/views/controls/image_view.h"
|
|
|
|
namespace electron::api {
|
|
|
|
class ImageView : public View {
|
|
public:
|
|
static gin_helper::WrappableBase* New(gin_helper::Arguments* args);
|
|
|
|
static void BuildPrototype(v8::Isolate* isolate,
|
|
v8::Local<v8::FunctionTemplate> prototype);
|
|
|
|
void SetImage(const gfx::Image& image);
|
|
|
|
protected:
|
|
ImageView();
|
|
~ImageView() override;
|
|
|
|
views::ImageView* image_view() const {
|
|
return static_cast<views::ImageView*>(view());
|
|
}
|
|
};
|
|
|
|
} // namespace electron::api
|
|
|
|
#endif // ELECTRON_SHELL_BROWSER_API_VIEWS_ELECTRON_API_IMAGE_VIEW_H_
|