2004-09-16 11:29:15 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/choicebk.h
|
|
|
|
// Purpose: wxChoicebook: wxChoice and wxNotebook combination
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by: Wlodzimierz ABX Skiba from wx/listbook.h
|
|
|
|
// Created: 15.09.04
|
|
|
|
// Copyright: (c) Vadim Zeitlin, Wlodzimierz Skiba
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_CHOICEBOOK_H_
|
|
|
|
#define _WX_CHOICEBOOK_H_
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_CHOICEBOOK
|
|
|
|
|
|
|
|
#include "wx/bookctrl.h"
|
2006-10-08 19:39:14 +00:00
|
|
|
#include "wx/choice.h"
|
2012-05-15 10:03:57 +00:00
|
|
|
#include "wx/containr.h"
|
2004-09-16 11:29:15 +00:00
|
|
|
|
2007-07-09 10:09:52 +00:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxChoice;
|
2004-09-16 11:29:15 +00:00
|
|
|
|
2013-04-25 10:11:03 +00:00
|
|
|
wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_CHOICEBOOK_PAGE_CHANGED, wxBookCtrlEvent );
|
|
|
|
wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_CHOICEBOOK_PAGE_CHANGING, wxBookCtrlEvent );
|
2006-10-08 17:37:23 +00:00
|
|
|
|
2006-10-20 09:16:41 +00:00
|
|
|
// wxChoicebook flags
|
|
|
|
#define wxCHB_DEFAULT wxBK_DEFAULT
|
|
|
|
#define wxCHB_TOP wxBK_TOP
|
|
|
|
#define wxCHB_BOTTOM wxBK_BOTTOM
|
|
|
|
#define wxCHB_LEFT wxBK_LEFT
|
|
|
|
#define wxCHB_RIGHT wxBK_RIGHT
|
|
|
|
#define wxCHB_ALIGN_MASK wxBK_ALIGN_MASK
|
2006-10-08 17:37:23 +00:00
|
|
|
|
2004-09-16 11:29:15 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxChoicebook
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2012-05-15 10:03:57 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxChoicebook : public wxNavigationEnabled<wxBookCtrlBase>
|
2004-09-16 11:29:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2010-10-27 16:54:36 +00:00
|
|
|
wxChoicebook() { }
|
2004-09-16 11:29:15 +00:00
|
|
|
|
|
|
|
wxChoicebook(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString& name = wxEmptyString)
|
|
|
|
{
|
|
|
|
(void)Create(parent, id, pos, size, style, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
// quasi ctor
|
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString& name = wxEmptyString);
|
|
|
|
|
|
|
|
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual bool SetPageText(size_t n, const wxString& strText) wxOVERRIDE;
|
|
|
|
virtual wxString GetPageText(size_t n) const wxOVERRIDE;
|
|
|
|
virtual int GetPageImage(size_t n) const wxOVERRIDE;
|
|
|
|
virtual bool SetPageImage(size_t n, int imageId) wxOVERRIDE;
|
2004-09-16 11:29:15 +00:00
|
|
|
virtual bool InsertPage(size_t n,
|
|
|
|
wxWindow *page,
|
|
|
|
const wxString& text,
|
|
|
|
bool bSelect = false,
|
2014-03-30 00:02:23 +00:00
|
|
|
int imageId = NO_IMAGE) wxOVERRIDE;
|
|
|
|
virtual int SetSelection(size_t n) wxOVERRIDE
|
2009-01-25 11:11:27 +00:00
|
|
|
{ return DoSetSelection(n, SetSelection_SendEvent); }
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual int ChangeSelection(size_t n) wxOVERRIDE { return DoSetSelection(n); }
|
|
|
|
virtual void SetImageList(wxImageList *imageList) wxOVERRIDE;
|
2004-09-16 11:29:15 +00:00
|
|
|
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual bool DeleteAllPages() wxOVERRIDE;
|
2004-09-16 11:29:15 +00:00
|
|
|
|
2005-04-06 21:13:28 +00:00
|
|
|
// returns the choice control
|
2005-10-21 18:53:51 +00:00
|
|
|
wxChoice* GetChoiceCtrl() const { return (wxChoice*)m_bookctrl; }
|
2005-04-06 21:13:28 +00:00
|
|
|
|
2010-11-22 01:23:21 +00:00
|
|
|
// Override this to return true because the part of parent window
|
|
|
|
// background between our controlling wxChoice and the page area should
|
|
|
|
// show through.
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual bool HasTransparentBackground() wxOVERRIDE { return true; }
|
2010-11-22 01:23:21 +00:00
|
|
|
|
2004-09-16 11:29:15 +00:00
|
|
|
protected:
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual void DoSetWindowVariant(wxWindowVariant variant) wxOVERRIDE;
|
2009-01-25 11:11:27 +00:00
|
|
|
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual wxWindow *DoRemovePage(size_t page) wxOVERRIDE;
|
2004-09-16 11:29:15 +00:00
|
|
|
|
2014-03-30 00:02:23 +00:00
|
|
|
void UpdateSelectedPage(size_t newsel) wxOVERRIDE
|
2006-10-08 17:37:23 +00:00
|
|
|
{
|
2008-10-31 23:07:49 +00:00
|
|
|
m_selection = static_cast<int>(newsel);
|
2009-03-18 21:58:15 +00:00
|
|
|
GetChoiceCtrl()->Select(m_selection);
|
2006-10-08 17:37:23 +00:00
|
|
|
}
|
|
|
|
|
2014-03-30 00:02:23 +00:00
|
|
|
wxBookCtrlEvent* CreatePageChangingEvent() const wxOVERRIDE;
|
|
|
|
void MakeChangedEvent(wxBookCtrlEvent &event) wxOVERRIDE;
|
2006-10-08 17:37:23 +00:00
|
|
|
|
2004-09-16 11:29:15 +00:00
|
|
|
// event handlers
|
|
|
|
void OnChoiceSelected(wxCommandEvent& event);
|
|
|
|
|
2004-09-17 17:24:34 +00:00
|
|
|
private:
|
2004-09-16 11:29:15 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxChoicebook)
|
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// choicebook event class and related stuff
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-08-01 13:46:46 +00:00
|
|
|
// wxChoicebookEvent is obsolete and defined for compatibility only
|
2012-04-28 22:25:15 +00:00
|
|
|
#define wxChoicebookEvent wxBookCtrlEvent
|
2008-08-01 13:46:46 +00:00
|
|
|
typedef wxBookCtrlEventFunction wxChoicebookEventFunction;
|
|
|
|
#define wxChoicebookEventHandler(func) wxBookCtrlEventHandler(func)
|
2005-02-14 23:53:48 +00:00
|
|
|
|
2005-03-09 16:29:59 +00:00
|
|
|
#define EVT_CHOICEBOOK_PAGE_CHANGED(winid, fn) \
|
2013-04-25 10:11:03 +00:00
|
|
|
wx__DECLARE_EVT1(wxEVT_CHOICEBOOK_PAGE_CHANGED, winid, wxBookCtrlEventHandler(fn))
|
2005-02-14 23:53:48 +00:00
|
|
|
|
2005-03-09 16:29:59 +00:00
|
|
|
#define EVT_CHOICEBOOK_PAGE_CHANGING(winid, fn) \
|
2013-04-25 10:11:03 +00:00
|
|
|
wx__DECLARE_EVT1(wxEVT_CHOICEBOOK_PAGE_CHANGING, winid, wxBookCtrlEventHandler(fn))
|
|
|
|
|
|
|
|
// old wxEVT_COMMAND_* constants
|
|
|
|
#define wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED wxEVT_CHOICEBOOK_PAGE_CHANGED
|
|
|
|
#define wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING wxEVT_CHOICEBOOK_PAGE_CHANGING
|
2004-09-16 11:29:15 +00:00
|
|
|
|
|
|
|
#endif // wxUSE_CHOICEBOOK
|
|
|
|
|
|
|
|
#endif // _WX_CHOICEBOOK_H_
|