Sha256: 3e9ba6f6ca1143ef02d1c9abfcf783f6d15d5515e35c539df973214f32da0975
Contents?: true
Size: 674 Bytes
Versions: 2
Compression:
Stored size: 674 Bytes
Contents
/* * wxWizardPage.hpp * * Created on: 06.04.2012 * Author: hanmac */ #ifndef WXWIZARDPAGE_HPP_ #define WXWIZARDPAGE_HPP_ #include "wxPanel.hpp" extern VALUE rb_cWXWizardPage; void Init_WXWizardPage(VALUE rb_mWX); #if wxUSE_WIZARDDLG #include <wx/wizard.h> class RubyWizardPage : public wxWizardPageSimple { public: RubyWizardPage(); wxWizardPage* GetPrev() const; wxWizardPage* GetNext() const; wxBitmap GetBitmap() const { return m_bitmap; } void SetBitmap(const wxBitmap& bitmap ) { m_bitmap = bitmap; } private: bool mutable rubycall; }; template <> wxWizardPage* unwrap<wxWizardPage*>(const VALUE &arg); #endif #endif /* WXWIZARDPAGE_HPP_ */
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rwx-0.0.1.1.dev | ext/wxWizardPage.hpp |
rwx-0.0.1.dev | ext/wxWizardPage.hpp |