#endif
#include "wx/spinbutt.h"
+
+#ifdef wxUSE_SPINBTN
+
#include "wx/utils.h"
#include <math.h>
{
if (g_isIdle) wxapp_install_idle_handler();
- if (!win->HasVMT()) return;
+ if (!win->m_hasVMT) return;
if (g_blockEventsOnDrag) return;
float diff = win->m_adjust->value - win->m_oldPos;
m_needParent = TRUE;
wxSize new_size = size;
- new_size.x = 16;
+ new_size.x = 15;
if (new_size.y == -1)
new_size.y = 30;
(GtkSignalFunc) gtk_spinbutt_callback,
(gpointer) this );
- m_parent->AddChild( this );
-
- (m_parent->m_insertCallback)( m_parent, this );
+ m_parent->DoAddChild( this );
PostCreation();
{
wxCHECK_RET( (m_widget != NULL), _T("invalid spin button") );
- m_width = 16;
+ m_width = 15;
gtk_widget_set_usize( m_widget, m_width, m_height );
}
wxScrollEvent(commandType, id)
{
}
+
+#endif
\ No newline at end of file