]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/icon.cpp
Make IsOfClass out-of-line to defend against gcc 3.4.[56] bug:
[wxWidgets.git] / src / x11 / icon.cpp
index e357f22925e7a1d2125fdb3b2ade93f6b6662f94..ae063ad5d94528cb1a536fe0b4f0cfb541bdd700 100644 (file)
@@ -1,87 +1,47 @@
 /////////////////////////////////////////////////////////////////////////////
 /////////////////////////////////////////////////////////////////////////////
-// Name:        icon.cpp
+// Name:        src/x11/icon.cpp
 // Purpose:     wxIcon class
 // Author:      Julian Smart
 // Modified by:
 // Created:     17/09/98
 // RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart
 // Purpose:     wxIcon class
 // Author:      Julian Smart
 // Modified by:
 // Created:     17/09/98
 // RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
-#pragma implementation "icon.h"
-#endif
+// for compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
 
 #include "wx/icon.h"
 
 #include "wx/icon.h"
-#include "wx/window.h"
-
-#ifdef __VMS__
-#pragma message disable nosimpint
-#endif
 
 
-#ifdef __VMS__
-#pragma message enable nosimpint
+#ifndef WX_PRECOMP
+    #include "wx/window.h"
 #endif
 
 #include "wx/x11/private.h"
 
 #endif
 
 #include "wx/x11/private.h"
 
-IMPLEMENT_DYNAMIC_CLASS(wxIcon, wxBitmap)
-
-/*
-* Icons
-*/
+//-----------------------------------------------------------------------------
+// wxIcon
+//-----------------------------------------------------------------------------
 
 
-wxIcon::wxIcon()
-{
-}
-
-// Create from XBM data
-wxIcon::wxIcon(const char bits[], int width, int height)
-{
-    (void) Create((void*) bits, wxBITMAP_TYPE_XBM_DATA, width, height, 1);
-}
-
-// Create from XPM data
-wxIcon::wxIcon(char **data)
-{
-    (void) Create((void*) data, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0);
-}
-
-wxIcon::wxIcon(const char **data)
-{
-    (void) Create((void*) data, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0);
-}
+IMPLEMENT_DYNAMIC_CLASS(wxIcon,wxBitmap)
 
 
-wxIcon::wxIcon(const wxString& icon_file, long flags,
-               int desiredWidth, int desiredHeight)
-               
+wxIcon::wxIcon( const char **bits, int WXUNUSED(width), int WXUNUSED(height) ) :
+    wxBitmap( bits )
 {
 {
-    LoadFile(icon_file, flags, desiredWidth, desiredHeight);
 }
 
 }
 
-wxIcon::~wxIcon()
+wxIcon::wxIcon( char **bits, int WXUNUSED(width), int WXUNUSED(height) ) :
+    wxBitmap( bits )
 {
 }
 
 {
 }
 
-bool wxIcon::LoadFile(const wxString& filename, long type,
-                      int desiredWidth, int desiredHeight)
+wxIcon::wxIcon() :  wxBitmap()
 {
 {
-    UnRef();
-    
-    m_refData = new wxBitmapRefData;
-    
-    wxBitmapHandler *handler = FindHandler(type);
-    
-    if ( handler )
-        return handler->LoadFile(this, filename, type, desiredWidth, desiredHeight);
-    else
-        return FALSE;
 }
 
 }
 
-bool wxIcon::CopyFromBitmap(const wxBitmap& bitmap)
+void wxIcon::CopyFromBitmap(const wxBitmap& bmp)
 {
 {
-    wxIcon* icon = (wxIcon*) (& bitmap);
+    wxIcon *icon = (wxIcon*)(&bmp);
     *this = *icon;
     *this = *icon;
-    return TRUE;
 }
 }