35bc8f449b
There are no longer any qt headers included in wx/qt headers. Applications do not need to link with qt librarys anymore, only wxqt libraries. wxWindow and derived widgets only contain one pointer to their qtwidget, no longer carrying both base and derived pointers in parallel as was before.
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/qt/spinbutt.h
|
|
// Author: Peter Most, Mariano Reingart
|
|
// Copyright: (c) 2010 wxWidgets dev team
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_QT_SPINBUTT_H_
|
|
#define _WX_QT_SPINBUTT_H_
|
|
|
|
#include "wx/spinbutt.h"
|
|
class QSpinBox;
|
|
|
|
class WXDLLIMPEXP_CORE wxSpinButton : public wxSpinButtonBase
|
|
{
|
|
public:
|
|
wxSpinButton();
|
|
wxSpinButton(wxWindow *parent,
|
|
wxWindowID id = -1,
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
const wxSize& size = wxDefaultSize,
|
|
long style = wxSP_VERTICAL,
|
|
const wxString& name = wxSPIN_BUTTON_NAME);
|
|
|
|
bool Create(wxWindow *parent,
|
|
wxWindowID id = -1,
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
const wxSize& size = wxDefaultSize,
|
|
long style = wxSP_VERTICAL,
|
|
const wxString& name = wxSPIN_BUTTON_NAME);
|
|
|
|
virtual int GetValue() const;
|
|
virtual void SetValue(int val);
|
|
|
|
virtual QWidget *GetHandle() const;
|
|
|
|
private:
|
|
QSpinBox *m_qtSpinBox;
|
|
|
|
wxDECLARE_DYNAMIC_CLASS( wxSpinButton );
|
|
};
|
|
|
|
#endif // _WX_QT_SPINBUTT_H_
|