1998-06-02 15:04:33 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2011-03-19 20:14:35 -04:00
|
|
|
// Name: wx/gtk/notebook.h
|
1998-07-22 18:13:31 -04:00
|
|
|
// Purpose: wxNotebook class
|
1998-06-02 15:04:33 -04:00
|
|
|
// Author: Robert Roebling
|
|
|
|
// Modified by:
|
|
|
|
// RCS-ID: $Id$
|
1998-12-04 02:43:56 -05:00
|
|
|
// Copyright: (c) Julian Smart and Robert Roebling
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-06-02 15:04:33 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-08-29 11:46:48 -04:00
|
|
|
#ifndef _WX_GTKNOTEBOOK_H_
|
|
|
|
#define _WX_GTKNOTEBOOK_H_
|
1998-06-02 15:04:33 -04:00
|
|
|
|
2000-02-11 07:28:21 -05:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// internal class
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2007-07-09 06:09:52 -04:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxGtkNotebookPage;
|
1998-06-02 15:04:33 -04:00
|
|
|
|
2001-07-02 14:34:13 -04:00
|
|
|
#include "wx/list.h"
|
|
|
|
WX_DECLARE_LIST(wxGtkNotebookPage, wxGtkNotebookPagesList);
|
|
|
|
|
1998-06-02 15:04:33 -04:00
|
|
|
//-----------------------------------------------------------------------------
|
1998-06-26 10:29:11 -04:00
|
|
|
// wxNotebook
|
1998-06-02 15:04:33 -04:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2005-08-02 18:58:06 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxNotebook : public wxNotebookBase
|
1998-06-02 15:04:33 -04:00
|
|
|
{
|
1998-06-26 10:29:11 -04:00
|
|
|
public:
|
2000-01-23 10:51:36 -05:00
|
|
|
// default for dynamic class
|
|
|
|
wxNotebook();
|
|
|
|
// the same arguments as for wxControl
|
|
|
|
wxNotebook(wxWindow *parent,
|
1998-07-04 11:17:59 -04:00
|
|
|
wxWindowID id,
|
1998-06-26 10:29:11 -04:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
1998-07-04 11:17:59 -04:00
|
|
|
long style = 0,
|
2005-01-13 15:30:21 -05:00
|
|
|
const wxString& name = wxNotebookNameStr);
|
2000-01-23 10:51:36 -05:00
|
|
|
// Create() function
|
|
|
|
bool Create(wxWindow *parent,
|
1998-07-04 11:17:59 -04:00
|
|
|
wxWindowID id,
|
1998-06-26 10:29:11 -04:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
1998-07-04 11:17:59 -04:00
|
|
|
long style = 0,
|
2005-01-13 15:30:21 -05:00
|
|
|
const wxString& name = wxNotebookNameStr);
|
2000-01-23 10:51:36 -05:00
|
|
|
// dtor
|
2001-07-02 14:34:13 -04:00
|
|
|
virtual ~wxNotebook();
|
1998-06-26 10:29:11 -04:00
|
|
|
|
|
|
|
// accessors
|
|
|
|
// ---------
|
|
|
|
|
|
|
|
// set the currently selected page, return the index of the previously
|
2010-10-27 12:54:24 -04:00
|
|
|
// selected one (or wxNOT_FOUND on error)
|
1998-06-26 10:29:11 -04:00
|
|
|
// NB: this function will _not_ generate wxEVT_NOTEBOOK_PAGE_xxx events
|
2006-10-08 13:37:23 -04:00
|
|
|
int SetSelection(size_t nPage) { return DoSetSelection(nPage, SetSelection_SendEvent); }
|
1998-06-26 10:29:11 -04:00
|
|
|
// get the currently selected page
|
|
|
|
int GetSelection() const;
|
|
|
|
|
2006-10-08 13:37:23 -04:00
|
|
|
// changes selected page without sending events
|
|
|
|
int ChangeSelection(size_t nPage) { return DoSetSelection(nPage); }
|
|
|
|
|
1998-06-26 10:29:11 -04:00
|
|
|
// set/get the title of a page
|
2003-08-20 18:57:07 -04:00
|
|
|
bool SetPageText(size_t nPage, const wxString& strText);
|
|
|
|
wxString GetPageText(size_t nPage) const;
|
1998-06-26 10:29:11 -04:00
|
|
|
|
|
|
|
// sets/returns item's image index in the current image list
|
2003-08-20 18:57:07 -04:00
|
|
|
int GetPageImage(size_t nPage) const;
|
|
|
|
bool SetPageImage(size_t nPage, int nImage);
|
1998-06-26 10:29:11 -04:00
|
|
|
|
|
|
|
// control the appearance of the notebook pages
|
|
|
|
// set the padding between tabs (in pixels)
|
|
|
|
void SetPadding(const wxSize& padding);
|
1999-05-11 07:49:11 -04:00
|
|
|
// sets the size of the tabs (assumes all tabs are the same size)
|
1999-04-06 12:32:33 -04:00
|
|
|
void SetTabSize(const wxSize& sz);
|
|
|
|
|
2011-12-24 13:19:26 -05:00
|
|
|
// geometry
|
|
|
|
virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const;
|
2004-01-22 09:47:19 -05:00
|
|
|
virtual int HitTest(const wxPoint& pt, long *flags = NULL) const;
|
|
|
|
|
1998-06-26 10:29:11 -04:00
|
|
|
// operations
|
|
|
|
// ----------
|
|
|
|
// remove all pages
|
|
|
|
bool DeleteAllPages();
|
2001-06-26 16:59:19 -04:00
|
|
|
|
2005-11-18 20:07:56 -05:00
|
|
|
// adds a new page to the notebook (it will be deleted by the notebook,
|
1998-06-26 10:29:11 -04:00
|
|
|
// don't delete it yourself). If bSelect, this page becomes active.
|
1999-05-24 15:33:05 -04:00
|
|
|
// the same as AddPage(), but adds it at the specified position
|
2003-08-21 08:44:52 -04:00
|
|
|
bool InsertPage( size_t position,
|
2000-02-11 07:28:21 -05:00
|
|
|
wxNotebookPage *win,
|
|
|
|
const wxString& strText,
|
2005-01-13 15:30:21 -05:00
|
|
|
bool bSelect = false,
|
2011-08-21 10:08:49 -04:00
|
|
|
int imageId = NO_IMAGE );
|
1998-06-26 10:29:11 -04:00
|
|
|
|
2000-01-23 10:51:36 -05:00
|
|
|
// handler for tab navigation
|
|
|
|
// --------------------------
|
|
|
|
void OnNavigationKey(wxNavigationKeyEvent& event);
|
1999-08-20 18:52:21 -04:00
|
|
|
|
2004-05-06 13:26:25 -04:00
|
|
|
|
|
|
|
static wxVisualAttributes
|
|
|
|
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
|
2005-01-13 15:30:21 -05:00
|
|
|
|
2000-01-04 08:02:27 -05:00
|
|
|
// implementation
|
|
|
|
// --------------
|
1999-05-11 07:49:11 -04:00
|
|
|
|
2000-02-27 16:04:26 -05:00
|
|
|
#if wxUSE_CONSTRAINTS
|
2000-01-04 08:02:27 -05:00
|
|
|
void SetConstraintSizes(bool recurse);
|
|
|
|
bool DoPhase(int phase);
|
2000-02-27 16:04:26 -05:00
|
|
|
#endif
|
1999-05-06 10:30:49 -04:00
|
|
|
|
2000-01-04 08:02:27 -05:00
|
|
|
// common part of all ctors
|
|
|
|
void Init();
|
1998-06-26 10:29:11 -04:00
|
|
|
|
2010-10-27 12:54:36 -04:00
|
|
|
// Called by GTK event handler when the current page is definitely changed.
|
|
|
|
void GTKOnPageChanged();
|
|
|
|
|
2000-01-04 08:02:27 -05:00
|
|
|
// helper function
|
2000-02-11 07:28:21 -05:00
|
|
|
wxGtkNotebookPage* GetNotebookPage(int page) const;
|
1998-06-26 10:29:11 -04:00
|
|
|
|
2001-07-02 14:34:13 -04:00
|
|
|
// the additional page data (the pages themselves are in m_pages array)
|
|
|
|
wxGtkNotebookPagesList m_pagesData;
|
2001-05-22 10:01:02 -04:00
|
|
|
|
2006-11-04 13:29:28 -05:00
|
|
|
// we need to store the old selection since there
|
|
|
|
// is no other way to know about it at the time
|
|
|
|
// of the change selection event
|
|
|
|
int m_oldSelection;
|
2006-10-08 13:37:23 -04:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
protected:
|
2006-02-08 16:47:09 -05:00
|
|
|
// set all page's attributes
|
2006-08-25 08:59:28 -04:00
|
|
|
virtual void DoApplyWidgetStyle(GtkRcStyle *style);
|
|
|
|
virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
|
2006-02-08 16:47:09 -05:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
// remove one page from the notebook but do not destroy it
|
2003-08-20 18:57:07 -04:00
|
|
|
virtual wxNotebookPage *DoRemovePage(size_t nPage);
|
2001-06-26 16:59:19 -04:00
|
|
|
|
2006-10-08 13:37:23 -04:00
|
|
|
int DoSetSelection(size_t nPage, int flags = 0);
|
|
|
|
|
2000-01-04 08:02:27 -05:00
|
|
|
private:
|
2002-12-04 09:11:26 -05:00
|
|
|
// the padding set by SetPadding()
|
2002-08-08 06:11:32 -04:00
|
|
|
int m_padding;
|
|
|
|
|
2008-08-29 11:46:48 -04:00
|
|
|
virtual void AddChildGTK(wxWindowGTK* child);
|
|
|
|
|
2000-01-04 08:02:27 -05:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxNotebook)
|
|
|
|
DECLARE_EVENT_TABLE()
|
1998-06-02 15:04:33 -04:00
|
|
|
};
|
|
|
|
|
2008-08-29 11:46:48 -04:00
|
|
|
#endif // _WX_GTKNOTEBOOK_H_
|