projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Solaris compilation patches
[wxWidgets.git]
/
src
/
gtk1
/
gauge.cpp
diff --git
a/src/gtk1/gauge.cpp
b/src/gtk1/gauge.cpp
index 8499339d67e761ed6c8f97458f783ca7c9dfd496..051b70390b35aa0c261051fa08019e0214bdaa09 100644
(file)
--- a/
src/gtk1/gauge.cpp
+++ b/
src/gtk1/gauge.cpp
@@
-2,9
+2,8
@@
// Name: gauge.cpp
// Purpose:
// Author: Robert Roebling
// 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
/////////////////////////////////////////////////////////////////////////////
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
@@
-13,6
+12,8
@@
#endif
#include "wx/gauge.h"
#endif
#include "wx/gauge.h"
+#include "gdk/gdk.h"
+#include "gtk/gtk.h"
//-----------------------------------------------------------------------------
// wxGauge
//-----------------------------------------------------------------------------
// wxGauge
@@
-36,6
+37,10
@@
bool wxGauge::Create( wxWindow *parent, wxWindowID id, int range,
m_widget = gtk_progress_bar_new();
m_widget = gtk_progress_bar_new();
+ m_parent->AddChild( this );
+
+ (m_parent->m_insertCallback)( m_parent, this );
+
PostCreation();
Show( TRUE );
PostCreation();
Show( TRUE );
@@
-69,3
+74,9
@@
int wxGauge::GetValue(void) const
return m_gaugePos;
}
return m_gaugePos;
}
+void wxGauge::ApplyWidgetStyle()
+{
+ SetWidgetStyle();
+ gtk_widget_set_style( m_widget, m_widgetStyle );
+}
+