/////////////////////////////////////////////////////////////////////////////
-// Program: wxWindows Widgets Sample
+// Program: wxWidgets Widgets Sample
// Name: spinbtn.cpp
// Purpose: Part of the widgets sample showing wxSpinButton
// Author: Vadim Zeitlin
#pragma hdrstop
#endif
+#if wxUSE_SPINBTN
+
// for all others, include the necessary headers
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/sizer.h"
#include "widgets.h"
-#if wxUSE_SPINBTN
+
#include "icons/spinbtn.xpm"
// ----------------------------------------------------------------------------
class SpinBtnWidgetsPage : public WidgetsPage
{
public:
- SpinBtnWidgetsPage(wxNotebook *notebook, wxImageList *imaglist);
- virtual ~SpinBtnWidgetsPage();
+ SpinBtnWidgetsPage(wxBookCtrlBase *book, wxImageList *imaglist);
+ virtual ~SpinBtnWidgetsPage(){};
+
+ virtual wxControl *GetWidget() const { return m_spinbtn; }
+ virtual wxControl *GetWidget2() const { return m_spinctrl; }
+ virtual void RecreateWidget() { CreateSpin(); }
protected:
// event handlers
IMPLEMENT_WIDGETS_PAGE(SpinBtnWidgetsPage, _T("Spin"));
-SpinBtnWidgetsPage::SpinBtnWidgetsPage(wxNotebook *notebook,
+SpinBtnWidgetsPage::SpinBtnWidgetsPage(wxBookCtrlBase *book,
wxImageList *imaglist)
- : WidgetsPage(notebook)
+ : WidgetsPage(book)
{
m_chkVert = NULL;
m_chkWrap = NULL;
sizerTop->Fit(this);
}
-SpinBtnWidgetsPage::~SpinBtnWidgetsPage()
-{
-}
-
// ----------------------------------------------------------------------------
// operations
// ----------------------------------------------------------------------------
void SpinBtnWidgetsPage::CreateSpin()
{
- int flags = 0;
+ int flags = ms_defaultFlags;
bool isVert = m_chkVert->GetValue();
if ( isVert )
void SpinBtnWidgetsPage::OnSpinBtnUp(wxSpinEvent& event)
{
- wxLogMessage( _T("Spin button value incremented, will be %ld (was %d)"),
+ wxLogMessage( _T("Spin button value incremented, will be %d (was %d)"),
event.GetInt(), m_spinbtn->GetValue() );
}
void SpinBtnWidgetsPage::OnSpinBtnDown(wxSpinEvent& event)
{
- wxLogMessage( _T("Spin button value decremented, will be %ld (was %d)"),
+ wxLogMessage( _T("Spin button value decremented, will be %d (was %d)"),
event.GetInt(), m_spinbtn->GetValue() );
}