]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/statbmp.h
Implement support for wxRIBBON_PANEL_EXT_BUTTON wxRibbonPanel style.
[wxWidgets.git] / include / wx / motif / statbmp.h
index 46816a2addd55fa071ebb3b04e67938ecc0c038e..11d8fbb9b71ae1a3bbc5ba8ed05d241cb1d91ac7 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        statbmp.h
+// Name:        wx/motif/statbmp.h
 // Purpose:     wxStaticBitmap class
 // Author:      Julian Smart
 // Modified by:
 #ifndef _WX_STATBMP_H_
 #define _WX_STATBMP_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "statbmp.h"
-#endif
-
 #include "wx/motif/bmpmotif.h"
 #include "wx/icon.h"
 
-class WXDLLEXPORT wxStaticBitmap : public wxStaticBitmapBase
+class WXDLLIMPEXP_CORE wxStaticBitmap : public wxStaticBitmapBase
 {
     DECLARE_DYNAMIC_CLASS(wxStaticBitmap)
-        
+
 public:
     wxStaticBitmap() { }
-    ~wxStaticBitmap();
-    
+    virtual ~wxStaticBitmap();
+
     wxStaticBitmap(wxWindow *parent, wxWindowID id,
         const wxBitmap& label,
         const wxPoint& pos = wxDefaultPosition,
@@ -36,40 +32,40 @@ public:
     {
         Create(parent, id, label, pos, size, style, name);
     }
-    
+
     bool Create(wxWindow *parent, wxWindowID id,
         const wxBitmap& label,
         const wxPoint& pos = wxDefaultPosition,
         const wxSize& size = wxDefaultSize,
         long style = 0,
         const wxString& name = wxStaticBitmapNameStr);
-    
+
     virtual void SetBitmap(const wxBitmap& bitmap);
-    
+
     virtual bool ProcessCommand(wxCommandEvent& WXUNUSED(event))
     {
         return false;
     }
-    
+
     wxBitmap GetBitmap() const { return m_messageBitmap; }
-    
+
     // for compatibility with wxMSW
     wxIcon GetIcon() const
     {
         // don't use wxDynamicCast, icons and bitmaps are really the same thing
         return *(wxIcon*)&m_messageBitmap;
     }
-    
+
     // for compatibility with wxMSW
     void  SetIcon(const wxIcon& icon)
     {
         SetBitmap( icon );
     }
-    
+
     // Implementation
     virtual void ChangeBackgroundColour();
     virtual void ChangeForegroundColour();
-    
+
 protected:
     void DoSetBitmap();