// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-
-#ifndef __GTKSTATICBOXH__
-#define __GTKSTATICBOXH__
-
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface
-#endif
+#ifndef _WX_GTKSTATICBOX_H_
+#define _WX_GTKSTATICBOX_H_
//-----------------------------------------------------------------------------
// wxStaticBox
//-----------------------------------------------------------------------------
-class wxStaticBox : public wxStaticBoxBase
+class WXDLLIMPEXP_CORE wxStaticBox : public wxStaticBoxBase
{
public:
wxStaticBox();
// implementation
- virtual void ApplyWidgetStyle();
+ virtual bool IsTransparentForMouse() const { return true; }
+
+ virtual void GetBordersForSizer(int *borderTop, int *borderOther) const;
+
+ virtual void AddChild( wxWindowBase *child );
+
+protected:
+ virtual bool GTKWidgetNeedsMnemonic() const;
+ virtual void GTKWidgetDoSetMnemonic(GtkWidget* w);
- virtual bool IsTransparentForMouse() const { return TRUE; }
+ void DoApplyWidgetStyle(GtkRcStyle *style);
-private:
DECLARE_DYNAMIC_CLASS(wxStaticBox)
};
-#endif // __GTKSTATICBOXH__
+#endif // _WX_GTKSTATICBOX_H_