]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/gauge.cpp
Added wxList:Nth check again
[wxWidgets.git] / src / gtk / gauge.cpp
index 8499339d67e761ed6c8f97458f783ca7c9dfd496..eb0f339bb0b63fb6f6139181cff59e9af389632c 100644 (file)
@@ -2,9 +2,8 @@
 // Name:        gauge.cpp
 // Purpose:
 // Author:      Robert Roebling
-// Created:     01/02/97
-// Id:
-// Copyright:   (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
+// Id:          $Id$
+// Copyright:   (c) 1998 Robert Roebling
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -36,6 +35,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 );
@@ -69,3 +72,9 @@ int wxGauge::GetValue(void) const
   return m_gaugePos;
 }
 
+void wxGauge::ApplyWidgetStyle()
+{
+  SetWidgetStyle();
+  gtk_widget_set_style( m_widget, m_widgetStyle );
+}
+