]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/image.h
Fixes to wxMotif scrolling and colours (wxTreeCtrl/wxListCtrl now seem to work
[wxWidgets.git] / include / wx / image.h
index dc93c603c6a730790c2d326a0cbeb8faecffd2e2..fe15103b2a0b9fbea3a06f0809d12cb545b14561 100644 (file)
@@ -127,6 +127,12 @@ public:
   
   wxImage Scale( int width, int height );
   
+  // these routines are slow but safe  
+  void SetRGB( int x, int y, unsigned char r, unsigned char g, unsigned char b );
+  unsigned char GetRed( int x, int y );
+  unsigned char GetGreen( int x, int y );
+  unsigned char GetBlue( int x, int y );
+  
   virtual bool LoadFile( const wxString& name, long type = wxBITMAP_TYPE_PNG );
   virtual bool SaveFile( const wxString& name, int type );