#ifndef _WX_GENERIC_PANEL_H_
#define _WX_GENERIC_PANEL_H_
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
#pragma interface "panelg.h"
#endif
#include "wx/window.h"
#include "wx/containr.h"
-class WXDLLEXPORT wxButton;
class WXDLLEXPORT wxControlContainer;
WXDLLEXPORT_DATA(extern const wxChar*) wxPanelNameStr;
// implementation from now on
// --------------------------
- // Sends an OnInitDialog event, which in turns transfers data to
- // to the dialog via validators.
- virtual void InitDialog();
-
// responds to colour changes
void OnSysColourChanged(wxSysColourChangedEvent& event);
// calls layout for layout constraints and sizers
void OnSize(wxSizeEvent& event);
+ virtual void InitDialog();
+
+#ifdef __WXUNIVERSAL__
+ virtual bool IsCanvasWindow() const { return TRUE; }
+ virtual bool ProvidesBackground() const { return TRUE; }
+#endif
+
WX_DECLARE_CONTROL_CONTAINER();
protected:
// common part of all ctors
void Init();
- // the object which implements the TAB traversal logic
- wxControlContainer *m_container;
-
private:
DECLARE_DYNAMIC_CLASS(wxPanel)
DECLARE_EVENT_TABLE()