]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/gauge.cpp
* Big memory bug fixed in socket/getline fixed.
[wxWidgets.git] / src / gtk1 / gauge.cpp
index 30688eda357ef1d929f6724ccf75c22714f333a7..051b70390b35aa0c261051fa08019e0214bdaa09 100644 (file)
@@ -2,7 +2,7 @@
 // Name:        gauge.cpp
 // Purpose:
 // Author:      Robert Roebling
-// Id:          $id$
+// Id:          $Id$
 // Copyright:   (c) 1998 Robert Roebling
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -12,6 +12,8 @@
 #endif
 
 #include "wx/gauge.h"
+#include "gdk/gdk.h"
+#include "gtk/gtk.h"
 
 //-----------------------------------------------------------------------------
 // wxGauge
@@ -35,6 +37,10 @@ bool wxGauge::Create( wxWindow *parent, wxWindowID id,  int range,
   
   m_widget = gtk_progress_bar_new();
   
+  m_parent->AddChild( this );
+
+  (m_parent->m_insertCallback)( m_parent, this );
+  
   PostCreation();
   
   Show( TRUE );
@@ -68,3 +74,9 @@ int wxGauge::GetValue(void) const
   return m_gaugePos;
 }
 
+void wxGauge::ApplyWidgetStyle()
+{
+  SetWidgetStyle();
+  gtk_widget_set_style( m_widget, m_widgetStyle );
+}
+