2003-08-21 23:06:36 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/listbook.h
|
|
|
|
// Purpose: wxListbook: wxListCtrl and wxNotebook combination
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 19.08.03
|
|
|
|
// RCS-ID: $Id$
|
2004-05-23 14:56:36 +00:00
|
|
|
// Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2003-08-21 23:06:36 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_LISTBOOK_H_
|
|
|
|
#define _WX_LISTBOOK_H_
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_LISTBOOK
|
|
|
|
|
|
|
|
#include "wx/bookctrl.h"
|
|
|
|
|
2007-07-09 10:09:52 +00:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxListView;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxListEvent;
|
2003-09-14 19:37:35 +00:00
|
|
|
|
2006-10-08 17:37:23 +00:00
|
|
|
extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED;
|
|
|
|
extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING;
|
|
|
|
|
2006-10-20 09:16:41 +00:00
|
|
|
// wxListbook flags
|
|
|
|
#define wxLB_DEFAULT wxBK_DEFAULT
|
|
|
|
#define wxLB_TOP wxBK_TOP
|
|
|
|
#define wxLB_BOTTOM wxBK_BOTTOM
|
|
|
|
#define wxLB_LEFT wxBK_LEFT
|
|
|
|
#define wxLB_RIGHT wxBK_RIGHT
|
|
|
|
#define wxLB_ALIGN_MASK wxBK_ALIGN_MASK
|
|
|
|
|
2003-08-21 23:06:36 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxListbook
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2004-11-23 11:45:07 +00:00
|
|
|
class WXDLLEXPORT wxListbook : public wxBookCtrlBase
|
2003-08-21 23:06:36 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxListbook()
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
|
|
|
wxListbook(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString& name = wxEmptyString)
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
|
|
|
|
(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);
|
|
|
|
|
|
|
|
|
2007-01-07 19:27:33 +00:00
|
|
|
// overridden base class methods
|
2003-08-21 23:06:36 +00:00
|
|
|
virtual int GetSelection() const;
|
|
|
|
virtual bool SetPageText(size_t n, const wxString& strText);
|
|
|
|
virtual wxString GetPageText(size_t n) const;
|
|
|
|
virtual int GetPageImage(size_t n) const;
|
|
|
|
virtual bool SetPageImage(size_t n, int imageId);
|
|
|
|
virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const;
|
|
|
|
virtual bool InsertPage(size_t n,
|
|
|
|
wxWindow *page,
|
|
|
|
const wxString& text,
|
|
|
|
bool bSelect = false,
|
|
|
|
int imageId = -1);
|
2006-10-08 17:37:23 +00:00
|
|
|
virtual int SetSelection(size_t n) { return DoSetSelection(n, SetSelection_SendEvent); }
|
|
|
|
virtual int ChangeSelection(size_t n) { return DoSetSelection(n); }
|
2007-01-07 19:27:33 +00:00
|
|
|
virtual int HitTest(const wxPoint& pt, long *flags = NULL) const;
|
2003-08-21 23:06:36 +00:00
|
|
|
virtual void SetImageList(wxImageList *imageList);
|
|
|
|
|
2004-08-25 22:10:20 +00:00
|
|
|
virtual bool DeleteAllPages();
|
|
|
|
|
2005-10-21 18:53:51 +00:00
|
|
|
wxListView* GetListView() const { return (wxListView*)m_bookctrl; }
|
2004-09-10 20:01:02 +00:00
|
|
|
|
2003-08-21 23:06:36 +00:00
|
|
|
protected:
|
|
|
|
virtual wxWindow *DoRemovePage(size_t page);
|
|
|
|
|
|
|
|
// get the size which the list control should have
|
2005-10-21 18:53:51 +00:00
|
|
|
virtual wxSize GetControllerSize() const;
|
2003-08-21 23:06:36 +00:00
|
|
|
|
2006-10-08 17:37:23 +00:00
|
|
|
void UpdateSelectedPage(size_t newsel);
|
|
|
|
|
2006-10-09 21:29:12 +00:00
|
|
|
wxBookCtrlBaseEvent* CreatePageChangingEvent() const;
|
|
|
|
void MakeChangedEvent(wxBookCtrlBaseEvent &event);
|
2006-10-08 17:37:23 +00:00
|
|
|
|
2003-08-21 23:06:36 +00:00
|
|
|
// event handlers
|
|
|
|
void OnListSelected(wxListEvent& event);
|
2005-10-21 18:53:51 +00:00
|
|
|
void OnSize(wxSizeEvent& event);
|
2003-08-21 23:06:36 +00:00
|
|
|
|
|
|
|
// the currently selected page or wxNOT_FOUND if none
|
|
|
|
int m_selection;
|
|
|
|
|
2004-09-16 22:14:34 +00:00
|
|
|
private:
|
|
|
|
// common part of all constructors
|
|
|
|
void Init();
|
2003-08-21 23:06:36 +00:00
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxListbook)
|
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// listbook event class and related stuff
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2004-11-23 11:45:07 +00:00
|
|
|
class WXDLLEXPORT wxListbookEvent : public wxBookCtrlBaseEvent
|
2003-08-21 23:06:36 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxListbookEvent(wxEventType commandType = wxEVT_NULL, int id = 0,
|
2004-09-17 17:24:34 +00:00
|
|
|
int nSel = wxNOT_FOUND, int nOldSel = wxNOT_FOUND)
|
2004-11-23 11:45:07 +00:00
|
|
|
: wxBookCtrlBaseEvent(commandType, id, nSel, nOldSel)
|
2003-08-21 23:06:36 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-11-10 12:02:00 +00:00
|
|
|
wxListbookEvent(const wxListbookEvent& event)
|
|
|
|
: wxBookCtrlBaseEvent(event)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual wxEvent *Clone() const { return new wxListbookEvent(*this); }
|
|
|
|
|
2003-08-21 23:06:36 +00:00
|
|
|
private:
|
2005-11-10 12:02:00 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxListbookEvent)
|
2003-08-21 23:06:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef void (wxEvtHandler::*wxListbookEventFunction)(wxListbookEvent&);
|
|
|
|
|
2005-03-08 20:53:16 +00:00
|
|
|
#define wxListbookEventHandler(func) \
|
|
|
|
(wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxListbookEventFunction, &func)
|
|
|
|
|
|
|
|
#define EVT_LISTBOOK_PAGE_CHANGED(winid, fn) \
|
|
|
|
wx__DECLARE_EVT1(wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED, winid, wxListbookEventHandler(fn))
|
|
|
|
|
|
|
|
#define EVT_LISTBOOK_PAGE_CHANGING(winid, fn) \
|
|
|
|
wx__DECLARE_EVT1(wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING, winid, wxListbookEventHandler(fn))
|
2003-08-21 23:06:36 +00:00
|
|
|
|
|
|
|
#endif // wxUSE_LISTBOOK
|
|
|
|
|
|
|
|
#endif // _WX_LISTBOOK_H_
|