39 lines
		
	
	
	
		
			1,011 B
			
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			1,011 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 {
 | 
						|
 | 
						|
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());
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
}  // namespace api
 | 
						|
 | 
						|
}  // namespace electron
 | 
						|
 | 
						|
#endif  // ELECTRON_SHELL_BROWSER_API_VIEWS_ELECTRON_API_IMAGE_VIEW_H_
 |