#ifndef _NOTEBOOK_H
#define _NOTEBOOK_H
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface "notebook.h"
#endif
// set the size of the given page to fit in the notebook
void AdjustPageSize(wxNotebookPage *page);
+ // override WndProc
+ virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
// the current selection (-1 if none)
int m_nSelection;
- DECLARE_DYNAMIC_CLASS(wxNotebook)
+ DECLARE_DYNAMIC_CLASS_NO_COPY(wxNotebook)
DECLARE_EVENT_TABLE()
};