projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Documenting WX_MONOLITHIC build option.
[wxWidgets.git]
/
include
/
wx
/
notebook.h
diff --git
a/include/wx/notebook.h
b/include/wx/notebook.h
index 02f4a116756bbc3bff3d97788bc0440d8de6c948..5555127425a0ac6a4c77f9fbd25763d7860ceabf 100644
(file)
--- a/
include/wx/notebook.h
+++ b/
include/wx/notebook.h
@@
-5,17
+5,13
@@
// Modified by:
// Created: 01.02.01
// RCS-ID: $Id$
// Modified by:
// Created: 01.02.01
// RCS-ID: $Id$
-// Copyright: (c) 1996-2000
wxWidgets team
+// Copyright: (c) 1996-2000
Vadim Zeitlin
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
#ifndef _WX_NOTEBOOK_H_BASE_
#define _WX_NOTEBOOK_H_BASE_
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
#ifndef _WX_NOTEBOOK_H_BASE_
#define _WX_NOTEBOOK_H_BASE_
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma interface "notebookbase.h"
-#endif
-
// ----------------------------------------------------------------------------
// headers
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// headers
// ----------------------------------------------------------------------------
@@
-41,7
+37,7
@@
enum
typedef wxWindow wxNotebookPage; // so far, any window can be a page
typedef wxWindow wxNotebookPage; // so far, any window can be a page
-extern WXDLLEXPORT_DATA(const wxChar
*) wxNotebookNameStr
;
+extern WXDLLEXPORT_DATA(const wxChar
) wxNotebookNameStr[]
;
#if WXWIN_COMPATIBILITY_2_4
#define wxNOTEBOOK_NAME wxNotebookNameStr
#if WXWIN_COMPATIBILITY_2_4
#define wxNOTEBOOK_NAME wxNotebookNameStr
@@
-94,6
+90,14
@@
public:
// On platforms that support it, get the theme page background colour, else invalid colour
virtual wxColour GetThemeBackgroundColour() const { return wxNullColour; }
// On platforms that support it, get the theme page background colour, else invalid colour
virtual wxColour GetThemeBackgroundColour() const { return wxNullColour; }
+
+ // Reserved for future use
+ virtual void ReservedNotebookFunc1() {}
+ virtual void ReservedNotebookFunc2() {}
+ virtual void ReservedNotebookFunc3() {}
+ virtual void ReservedNotebookFunc4() {}
+ virtual void ReservedNotebookFunc5() {}
+
protected:
DECLARE_NO_COPY_CLASS(wxNotebookBase)
};
protected:
DECLARE_NO_COPY_CLASS(wxNotebookBase)
};
@@
-111,8
+115,15
@@
public:
{
}
{
}
+ wxNotebookEvent(const wxNotebookEvent& event)
+ : wxBookCtrlBaseEvent(event)
+ {
+ }
+
+ virtual wxEvent *Clone() const { return new wxNotebookEvent(*this); }
+
private:
private:
- DECLARE_DYNAMIC_CLASS_NO_
COPY
(wxNotebookEvent)
+ DECLARE_DYNAMIC_CLASS_NO_
ASSIGN
(wxNotebookEvent)
};
BEGIN_DECLARE_EVENT_TYPES()
};
BEGIN_DECLARE_EVENT_TYPES()
@@
-141,8
+152,10
@@
typedef void (wxEvtHandler::*wxNotebookEventFunction)(wxNotebookEvent&);
#include "wx/msw/notebook.h"
#elif defined(__WXMOTIF__)
#include "wx/generic/notebook.h"
#include "wx/msw/notebook.h"
#elif defined(__WXMOTIF__)
#include "wx/generic/notebook.h"
-#elif defined(__WXGTK__)
+#elif defined(__WXGTK
20
__)
#include "wx/gtk/notebook.h"
#include "wx/gtk/notebook.h"
+#elif defined(__WXGTK__)
+ #include "wx/gtk1/notebook.h"
#elif defined(__WXMAC__)
#include "wx/mac/notebook.h"
#elif defined(__WXCOCOA__)
#elif defined(__WXMAC__)
#include "wx/mac/notebook.h"
#elif defined(__WXCOCOA__)