]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/notebook.h
added SetHoverBitmap() and implemented it under wxMSW; extended the docs
[wxWidgets.git] / include / wx / msw / notebook.h
index 27e9160960421ef166907c563b414adad51f7572..291c681ea9040ec496119b8e019ec1ba644c8ce5 100644 (file)
 #ifndef _NOTEBOOK_H
 #define _NOTEBOOK_H
 
 #ifndef _NOTEBOOK_H
 #define _NOTEBOOK_H
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-  #pragma interface "notebook.h"
-#endif
-
 #if wxUSE_NOTEBOOK
 
 // ----------------------------------------------------------------------------
 #if wxUSE_NOTEBOOK
 
 // ----------------------------------------------------------------------------
@@ -211,7 +207,7 @@ protected:
   void UpdateBgBrush();
 
   // return the themed brush for painting our children
   void UpdateBgBrush();
 
   // return the themed brush for painting our children
-  virtual WXHBRUSH MSWGetBgBrushForChild(WXHDC hDC, wxWindow *win);
+  virtual WXHBRUSH MSWGetBgBrushForChild(WXHDC hDC, WXHWND hWnd);
 
   // draw child background
   virtual bool MSWPrintChild(WXHDC hDC, wxWindow *win);
 
   // draw child background
   virtual bool MSWPrintChild(WXHDC hDC, wxWindow *win);
@@ -222,6 +218,16 @@ protected:
   bool DoDrawBackground(WXHDC hDC, wxWindow *child = NULL);
 #endif // wxUSE_UXTHEME
 
   bool DoDrawBackground(WXHDC hDC, wxWindow *child = NULL);
 #endif // wxUSE_UXTHEME
 
+  // these function are only used for reducing flicker on notebook resize and
+  // we don't need to do this for WinCE
+#ifndef __WXWINCE__
+  void OnEraseBackground(wxEraseEvent& event);
+  void OnPaint(wxPaintEvent& event);
+
+  // true if we have already subclassed our updown control
+  bool m_hasSubclassedUpdown;
+#endif // __WXWINCE__
+
   // the current selection (-1 if none)
   int m_nSelection;
 
   // the current selection (-1 if none)
   int m_nSelection;