#ifndef _WX_GTK_SPINBUTT_H_
#define _WX_GTK_SPINBUTT_H_
-#ifdef __GNUG__
-#pragma interface
-#endif
-
//-----------------------------------------------------------------------------
// wxSpinButton
//-----------------------------------------------------------------------------
-class wxSpinButton : public wxSpinButtonBase
+class WXDLLIMPEXP_CORE wxSpinButton : public wxSpinButtonBase
{
public:
- wxSpinButton() { }
+ wxSpinButton();
wxSpinButton(wxWindow *parent,
wxWindowID id = -1,
const wxPoint& pos = wxDefaultPosition,
virtual int GetMin() const;
virtual int GetMax() const;
+ static wxVisualAttributes
+ GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
+
// implementation
void OnSize( wxSizeEvent &event );
bool IsOwnGtkWindow( GdkWindow *window );
- void ApplyWidgetStyle();
- GtkAdjustment *m_adjust;
- float m_oldPos;
+ int m_pos;
protected:
virtual wxSize DoGetBestSize() const;