]> git.saurik.com Git - wxWidgets.git/commitdiff
wxImageList ctor now takes the same arguments as the MSW version (but it's
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 1 Jul 1998 15:43:03 +0000 (15:43 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 1 Jul 1998 15:43:03 +0000 (15:43 +0000)
still not implemented)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@161 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/generic/imaglist.h
src/generic/imaglist.cpp

index b6e68ef11e0c10ff682dc97e62034c6a57ac922e..2007ffc5c0e903c89c5543d8f9b7c2fa61f741fc 100644 (file)
@@ -46,17 +46,18 @@ class wxImageList: public wxObject
    
   public:
 
    
   public:
 
-    wxImageList(void);
-    ~wxImageList(void);
-    bool Create(void);
-    int GetImageCount(void) const;
+    wxImageList::wxImageList() { }
+    wxImageList(int width, int height, bool mask = TRUE, int initialCount = 1);
+    ~wxImageList();
+    bool Create();
+    int GetImageCount() const;
     int Add( const wxBitmap &bitmap );
     int Add( const wxBitmap &bitmap );
-    bool Replace( const int index, const wxBitmap &bitmap );
-    bool Remove( const int index );
-    bool RemoveAll(void);
-    bool GetSize( const int index, int &width, int &height ) const;
-    bool Draw(const int index, wxDC& dc, const int x, const int y,
-      const int flags = wxIMAGELIST_DRAW_NORMAL, const bool solidBackground = FALSE );
+    bool Replace( int index, const wxBitmap &bitmap );
+    bool Remove( int index );
+    bool RemoveAll();
+    bool GetSize( int index, int &width, int &height ) const;
+    bool Draw(int index, wxDC& dc, int x, int y,
+      int flags = wxIMAGELIST_DRAW_NORMAL, const bool solidBackground = FALSE );
     
   private:
 
     
   private:
 
index 368a72735a259320367b4cb4527137267461c56b..dffb5f530da1c93dd20a1dee2dd515adebc2dd31 100644 (file)
 
 IMPLEMENT_DYNAMIC_CLASS(wxImageList, wxObject)
 
 
 IMPLEMENT_DYNAMIC_CLASS(wxImageList, wxObject)
 
-wxImageList::wxImageList(void)
+wxImageList::wxImageList(int width, int height, bool mask, int initialCount)
 {
   Create();
 };
 
 {
   Create();
 };
 
-wxImageList::~wxImageList(void)
+wxImageList::~wxImageList()
 {
 };
 
 {
 };
 
-int wxImageList::GetImageCount(void) const
+int wxImageList::GetImageCount() const
 {
   return m_images.Number();
 };
 
 {
   return m_images.Number();
 };
 
-bool wxImageList::Create(void)
+bool wxImageList::Create()
 {
   m_images.DeleteContents( TRUE );
   return TRUE;
 {
   m_images.DeleteContents( TRUE );
   return TRUE;
@@ -46,7 +46,7 @@ int wxImageList::Add( const wxBitmap &bitmap )
   return m_images.Number();
 };
 
   return m_images.Number();
 };
 
-bool wxImageList::Replace( const int index, const wxBitmap &bitmap )
+bool wxImageList::Replace( int index, const wxBitmap &bitmap )
 {
   wxNode *node = m_images.Nth( index );
   if (!node) return FALSE;
 {
   wxNode *node = m_images.Nth( index );
   if (!node) return FALSE;
@@ -66,20 +66,20 @@ bool wxImageList::Replace( const int index, const wxBitmap &bitmap )
   return TRUE;
 };
 
   return TRUE;
 };
 
-bool wxImageList::Remove( const int index )
+bool wxImageList::Remove( int index )
 {
   wxNode *node = m_images.Nth( index );
   if (node) m_images.DeleteNode( node );
   return (node != NULL);
 };
 
 {
   wxNode *node = m_images.Nth( index );
   if (node) m_images.DeleteNode( node );
   return (node != NULL);
 };
 
-bool wxImageList::RemoveAll(void)
+bool wxImageList::RemoveAll()
 {
   m_images.Clear();
   return TRUE;
 };
 
 {
   m_images.Clear();
   return TRUE;
 };
 
-bool wxImageList::GetSize( const int index, int &width, int &height ) const
+bool wxImageList::GetSize( int index, int &width, int &height ) const
 {
   wxNode *node = m_images.Nth( index );
   if (node)
 {
   wxNode *node = m_images.Nth( index );
   if (node)
@@ -97,9 +97,9 @@ bool wxImageList::GetSize( const int index, int &width, int &height ) const
   };
 };
 
   };
 };
 
-bool wxImageList::Draw( const int index, wxDC &dc, 
-                        const int x, const int y,
-                        const int WXUNUSED(flags), const bool WXUNUSED(solidBackground) )
+bool wxImageList::Draw( int index, wxDC &dc, 
+                        int x, int y,
+                        int WXUNUSED(flags), const bool WXUNUSED(solidBackground) )
 {
   wxNode *node = m_images.Nth( index );
   if (!node) return FALSE;
 {
   wxNode *node = m_images.Nth( index );
   if (!node) return FALSE;