#ifndef _WX_STATBMP_H_
#define _WX_STATBMP_H_
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface "statbmp.h"
#endif
// -------------------------------
// implement base class virtuals
-#ifdef __WIN16__
- virtual bool MSWOnDraw(WXDRAWITEMSTRUCT *item);
-#endif // __WIN16__
- virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
+ virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
protected:
+ virtual wxBorder GetDefaultBorder() const;
virtual wxSize DoGetBestSize() const;
virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
// ctor/dtor helpers
- void Init() { m_isIcon = TRUE; m_image = NULL; }
+ void Init() { m_isIcon = true; m_image = NULL; }
void Free();
- // TRUE if icon/bitmap is valid
+ // true if icon/bitmap is valid
bool ImageIsOk() const;
void SetImage(const wxGDIImage* image);