Sha256: 30f6ba3dac68d0fedfe84ef1c897cf0185dc5be62d737a28e88f7f784810c575
Contents?: true
Size: 579 Bytes
Versions: 50
Compression:
Stored size: 579 Bytes
Contents
// -*- c++ -*- #pragma once #ifndef __REFLEX_IMAGE_VIEW_H__ #define __REFLEX_IMAGE_VIEW_H__ #include <xot/pimpl.h> #include <rays/image.h> #include <reflex/view.h> namespace Reflex { class ImageView : public View { typedef View Super; public: ImageView (const char* name = NULL); virtual ~ImageView (); virtual void set_image (Image image); virtual Image get_image () const; virtual Bounds content_bounds () const; virtual void on_draw (DrawEvent* e); struct Data; Xot::PImpl<Data> self; };// ImageView }// Reflex #endif//EOH
Version data entries
50 entries across 50 versions & 1 rubygems