2001-06-26 20:59:19 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/notebook.h
|
|
|
|
// Purpose: wxNotebook interface
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01.02.01
|
|
|
|
// RCS-ID: $Id$
|
2005-05-04 18:57:50 +00:00
|
|
|
// Copyright: (c) 1996-2000 Vadim Zeitlin
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2001-06-26 20:59:19 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_NOTEBOOK_H_BASE_
|
|
|
|
#define _WX_NOTEBOOK_H_BASE_
|
1998-06-02 19:04:33 +00:00
|
|
|
|
1999-05-25 13:38:50 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_NOTEBOOK
|
|
|
|
|
2003-08-20 22:57:07 +00:00
|
|
|
#include "wx/bookctrl.h"
|
2001-06-26 20:59:19 +00:00
|
|
|
|
2003-07-06 21:02:24 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// constants
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2006-07-05 12:21:13 +00:00
|
|
|
// wxNotebook hit results, use wxBK_HITTEST so other book controls can share them
|
|
|
|
// if wxUSE_NOTEBOOK is disabled
|
2003-07-06 21:02:24 +00:00
|
|
|
enum
|
|
|
|
{
|
2006-07-05 12:21:13 +00:00
|
|
|
wxNB_HITTEST_NOWHERE = wxBK_HITTEST_NOWHERE,
|
|
|
|
wxNB_HITTEST_ONICON = wxBK_HITTEST_ONICON,
|
|
|
|
wxNB_HITTEST_ONLABEL = wxBK_HITTEST_ONLABEL,
|
|
|
|
wxNB_HITTEST_ONITEM = wxBK_HITTEST_ONITEM,
|
|
|
|
wxNB_HITTEST_ONPAGE = wxBK_HITTEST_ONPAGE
|
2003-07-06 21:02:24 +00:00
|
|
|
};
|
|
|
|
|
2006-10-20 09:16:41 +00:00
|
|
|
// wxNotebook flags
|
|
|
|
|
|
|
|
// use common book wxBK_* flags for describing alignment
|
|
|
|
#define wxNB_DEFAULT wxBK_DEFAULT
|
|
|
|
#define wxNB_TOP wxBK_TOP
|
|
|
|
#define wxNB_BOTTOM wxBK_BOTTOM
|
|
|
|
#define wxNB_LEFT wxBK_LEFT
|
|
|
|
#define wxNB_RIGHT wxBK_RIGHT
|
|
|
|
|
|
|
|
#define wxNB_FIXEDWIDTH 0x0100
|
|
|
|
#define wxNB_MULTILINE 0x0200
|
|
|
|
#define wxNB_NOPAGETHEME 0x0400
|
|
|
|
#define wxNB_FLAT 0x0800
|
|
|
|
|
2006-07-05 12:21:13 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
typedef wxWindow wxNotebookPage; // so far, any window can be a page
|
|
|
|
|
2006-01-16 14:59:55 +00:00
|
|
|
extern WXDLLEXPORT_DATA(const wxChar) wxNotebookNameStr[];
|
2005-01-13 20:30:21 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxNotebookBase: define wxNotebook interface
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2004-11-23 11:45:07 +00:00
|
|
|
class WXDLLEXPORT wxNotebookBase : public wxBookCtrlBase
|
2001-06-26 20:59:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2003-08-20 22:57:07 +00:00
|
|
|
// ctors
|
|
|
|
// -----
|
|
|
|
|
2004-01-15 13:49:22 +00:00
|
|
|
wxNotebookBase() { }
|
2003-08-20 22:57:07 +00:00
|
|
|
|
|
|
|
wxNotebookBase(wxWindow *parent,
|
2003-11-06 18:09:48 +00:00
|
|
|
wxWindowID winid,
|
2003-08-20 22:57:07 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
2005-01-13 20:30:21 +00:00
|
|
|
const wxString& name = wxNotebookNameStr) ;
|
2001-06-26 20:59:19 +00:00
|
|
|
|
2004-11-23 11:45:07 +00:00
|
|
|
// wxNotebook-specific additions to wxBookCtrlBase interface
|
|
|
|
// ---------------------------------------------------------
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
// get the number of rows for a control with wxNB_MULTILINE style (not all
|
|
|
|
// versions support it - they will always return 1 then)
|
|
|
|
virtual int GetRowCount() const { return 1; }
|
|
|
|
|
|
|
|
// set the padding between tabs (in pixels)
|
|
|
|
virtual void SetPadding(const wxSize& padding) = 0;
|
|
|
|
|
|
|
|
// set the size of the tabs for wxNB_FIXEDWIDTH controls
|
|
|
|
virtual void SetTabSize(const wxSize& sz) = 0;
|
|
|
|
|
2003-07-06 21:02:24 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
|
2003-08-20 22:57:07 +00:00
|
|
|
// implement some base class functions
|
|
|
|
virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const;
|
2003-01-02 23:38:11 +00:00
|
|
|
|
2005-02-06 19:17:35 +00:00
|
|
|
// On platforms that support it, get the theme page background colour, else invalid colour
|
|
|
|
virtual wxColour GetThemeBackgroundColour() const { return wxNullColour; }
|
|
|
|
|
2006-10-08 23:41:52 +00:00
|
|
|
|
|
|
|
// send wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING/ED events
|
|
|
|
|
|
|
|
// returns false if the change to nPage is vetoed by the program
|
|
|
|
bool SendPageChangingEvent(int nPage);
|
|
|
|
|
|
|
|
// sends the event about page change from old to new (or GetSelection() if
|
|
|
|
// new is -1)
|
|
|
|
void SendPageChangedEvent(int nPageOld, int nPageNew = -1);
|
|
|
|
|
|
|
|
|
2003-08-20 22:57:07 +00:00
|
|
|
protected:
|
2003-01-02 23:38:11 +00:00
|
|
|
DECLARE_NO_COPY_CLASS(wxNotebookBase)
|
2001-06-26 20:59:19 +00:00
|
|
|
};
|
1999-05-25 13:38:50 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2003-08-20 22:57:07 +00:00
|
|
|
// notebook event class and related stuff
|
1999-05-25 13:38:50 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2004-11-23 11:45:07 +00:00
|
|
|
class WXDLLEXPORT wxNotebookEvent : public wxBookCtrlBaseEvent
|
1999-05-25 13:38:50 +00:00
|
|
|
{
|
|
|
|
public:
|
2003-11-06 18:09:48 +00:00
|
|
|
wxNotebookEvent(wxEventType commandType = wxEVT_NULL, int winid = 0,
|
1999-05-25 13:38:50 +00:00
|
|
|
int nSel = -1, int nOldSel = -1)
|
2004-11-23 11:45:07 +00:00
|
|
|
: wxBookCtrlBaseEvent(commandType, winid, nSel, nOldSel)
|
2003-08-20 22:57:07 +00:00
|
|
|
{
|
|
|
|
}
|
1999-05-25 13:38:50 +00:00
|
|
|
|
2005-11-10 11:24:19 +00:00
|
|
|
wxNotebookEvent(const wxNotebookEvent& event)
|
|
|
|
: wxBookCtrlBaseEvent(event)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual wxEvent *Clone() const { return new wxNotebookEvent(*this); }
|
|
|
|
|
1999-05-25 13:38:50 +00:00
|
|
|
private:
|
2005-11-10 11:24:19 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNotebookEvent)
|
1999-05-25 13:38:50 +00:00
|
|
|
};
|
|
|
|
|
2001-01-31 17:16:40 +00:00
|
|
|
BEGIN_DECLARE_EVENT_TYPES()
|
|
|
|
DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, 802)
|
|
|
|
DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, 803)
|
|
|
|
END_DECLARE_EVENT_TYPES()
|
|
|
|
|
1999-05-25 13:38:50 +00:00
|
|
|
typedef void (wxEvtHandler::*wxNotebookEventFunction)(wxNotebookEvent&);
|
|
|
|
|
2005-02-14 23:53:48 +00:00
|
|
|
#define wxNotebookEventHandler(func) \
|
2005-03-08 20:53:16 +00:00
|
|
|
(wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxNotebookEventFunction, &func)
|
2005-02-14 23:53:48 +00:00
|
|
|
|
|
|
|
#define EVT_NOTEBOOK_PAGE_CHANGED(winid, fn) \
|
|
|
|
wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, winid, wxNotebookEventHandler(fn))
|
|
|
|
|
|
|
|
#define EVT_NOTEBOOK_PAGE_CHANGING(winid, fn) \
|
|
|
|
wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, winid, wxNotebookEventHandler(fn))
|
1999-05-25 13:38:50 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxNotebook class itself
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#if defined(__WXUNIVERSAL__)
|
|
|
|
#include "wx/univ/notebook.h"
|
|
|
|
#elif defined(__WXMSW__)
|
2003-06-26 17:26:34 +00:00
|
|
|
#include "wx/msw/notebook.h"
|
1998-07-10 14:15:17 +00:00
|
|
|
#elif defined(__WXMOTIF__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/generic/notebook.h"
|
2006-01-23 03:27:34 +00:00
|
|
|
#elif defined(__WXGTK20__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/gtk/notebook.h"
|
2006-01-23 03:27:34 +00:00
|
|
|
#elif defined(__WXGTK__)
|
|
|
|
#include "wx/gtk1/notebook.h"
|
1998-08-15 00:23:28 +00:00
|
|
|
#elif defined(__WXMAC__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/mac/notebook.h"
|
2003-03-22 06:13:03 +00:00
|
|
|
#elif defined(__WXCOCOA__)
|
2004-04-09 20:20:51 +00:00
|
|
|
#include "wx/cocoa/notebook.h"
|
1999-07-28 03:38:12 +00:00
|
|
|
#elif defined(__WXPM__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/os2/notebook.h"
|
1998-06-02 19:04:33 +00:00
|
|
|
#endif
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#endif // wxUSE_NOTEBOOK
|
|
|
|
|
1998-06-02 19:04:33 +00:00
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_NOTEBOOK_H_BASE_
|