electron/shell/browser/api/views/electron_api_image_view.h

43 lines
1 KiB
C
Raw Normal View History

2020-03-22 10:11:43 +00:00
// 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 SHELL_BROWSER_API_VIEWS_ELECTRON_API_IMAGE_VIEW_H_
#define 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 {
namespace 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());
}
private:
DISALLOW_COPY_AND_ASSIGN(ImageView);
};
} // namespace api
} // namespace electron
#endif // SHELL_BROWSER_API_VIEWS_ELECTRON_API_IMAGE_VIEW_H_