- // responds to colour changes
- void OnSysColourChanged(wxSysColourChangedEvent& event);
-
- // process a keyboard navigation message (Tab traversal)
- void OnNavigationKey(wxNavigationKeyEvent& event);
-
- // set the focus to the first child if we get it
- void OnFocus(wxFocusEvent& event);
+ virtual void InitDialog();
+
+#ifdef __WXUNIVERSAL__
+ virtual bool IsCanvasWindow() const { return true; }
+#endif
+
+#ifdef __WXMSW__
+ // This is overridden for MSW to return true for all panels that are child
+ // of a window with themed background (such as wxNotebook) which should
+ // show through the child panels.
+ virtual bool HasTransparentBackground();
+#endif // __WXMSW__