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
|
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
extern WXDLLIMPEXP_DATA_CORE(const char) wxNotebookNameStr[];
|
2005-01-13 20:30:21 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxNotebookBase: define wxNotebook interface
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE 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
|
|
|
|
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);
|
|
|
|
|
2007-03-25 23:00:36 +00:00
|
|
|
// wxBookCtrlBase overrides this method to return false but we do need
|
|
|
|
// focus because we have tabs
|
|
|
|
virtual bool AcceptsFocus() const { return wxControl::AcceptsFocus(); }
|
2006-10-08 23:41:52 +00:00
|
|
|
|
2003-08-20 22:57:07 +00:00
|
|
|
protected:
|
2009-02-08 11:45:59 +00:00
|
|
|
wxDECLARE_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
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-09-18 16:56:53 +00:00
|
|
|
// wxNotebookEvent is obsolete and defined for compatibility only (notice that
|
|
|
|
// we use #define and not typedef to also keep compatibility with the existing
|
|
|
|
// code which forward declares it)
|
|
|
|
#define wxNotebookEvent wxBookCtrlEvent
|
2008-08-01 13:46:46 +00:00
|
|
|
typedef wxBookCtrlEventFunction wxNotebookEventFunction;
|
|
|
|
#define wxNotebookEventHandler(func) wxBookCtrlEventHandler(func)
|
1999-05-25 13:38:50 +00:00
|
|
|
|
2009-02-07 18:59:25 +00:00
|
|
|
wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, wxBookCtrlEvent );
|
|
|
|
wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, wxBookCtrlEvent );
|
2001-01-31 17:16:40 +00:00
|
|
|
|
2005-02-14 23:53:48 +00:00
|
|
|
#define EVT_NOTEBOOK_PAGE_CHANGED(winid, fn) \
|
2008-08-01 13:46:46 +00:00
|
|
|
wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, winid, wxBookCtrlEventHandler(fn))
|
2005-02-14 23:53:48 +00:00
|
|
|
|
|
|
|
#define EVT_NOTEBOOK_PAGE_CHANGING(winid, fn) \
|
2008-08-01 13:46:46 +00:00
|
|
|
wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, winid, wxBookCtrlEventHandler(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__)
|
2008-06-11 19:17:41 +00:00
|
|
|
#include "wx/osx/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_
|