feat: add ImageView (#22738)
This commit is contained in:
parent
af46c1ed8d
commit
341f643b81
7 changed files with 123 additions and 0 deletions
42
shell/browser/api/views/electron_api_image_view.h
Normal file
42
shell/browser/api/views/electron_api_image_view.h
Normal file
|
@ -0,0 +1,42 @@
|
|||
// 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_
|
Loading…
Add table
Add a link
Reference in a new issue