]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/statbmp.cpp
multi line static controls now calculate their width and height correctly
[wxWidgets.git] / src / gtk1 / statbmp.cpp
index 69b6b571d6918c2f49b469ca845f4ca621391d0b..ad12ed7cf20e36f4544ee1a55c23ab656aa91903 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Robert Roebling
 // Id:          $Id$
 // Copyright:   (c) 1998 Robert Roebling
 // Author:      Robert Roebling
 // Id:          $Id$
 // Copyright:   (c) 1998 Robert Roebling
-// Licence:    wxWindows licence
+// Licence:           wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifdef __GNUG__
 /////////////////////////////////////////////////////////////////////////////
 
 #ifdef __GNUG__
 
 #include "wx/statbmp.h"
 
 
 #include "wx/statbmp.h"
 
+#if wxUSE_STATBMP
+
+#include "gdk/gdk.h"
+#include "gtk/gtk.h"
+
 //-----------------------------------------------------------------------------
 // wxStaticBitmap
 //-----------------------------------------------------------------------------
 //-----------------------------------------------------------------------------
 // wxStaticBitmap
 //-----------------------------------------------------------------------------
@@ -57,9 +62,7 @@ bool wxStaticBitmap::Create( wxWindow *parent, wxWindowID id, const wxBitmap &bi
         m_widget = gtk_label_new( "Bitmap" );
     }
   
         m_widget = gtk_label_new( "Bitmap" );
     }
   
-    m_parent->AddChild( this );
-
-    (m_parent->m_insertCallback)( m_parent, this );
+    m_parent->DoAddChild( this );
   
     PostCreation();
   
   
     PostCreation();
   
@@ -79,3 +82,14 @@ void wxStaticBitmap::SetBitmap( const wxBitmap &bitmap )
         gtk_pixmap_set( GTK_PIXMAP(m_widget), m_bitmap.GetPixmap(), mask );
     }
 }
         gtk_pixmap_set( GTK_PIXMAP(m_widget), m_bitmap.GetPixmap(), mask );
     }
 }
+
+wxIcon& wxStaticBitmap::GetIcon()
+{
+    wxIcon *icon = wxDynamicCast(&m_bitmap, wxIcon);
+    
+    if (!icon) return wxNullIcon;
+    
+    return *icon;
+}
+
+#endif