#endif
#include "wx/icon.h"
+#include "wx/window.h"
-#if !USE_SHARED_LIBRARIES
-IMPLEMENT_DYNAMIC_CLASS(wxIcon, wxBitmap)
+#ifdef __VMS__
+#pragma message disable nosimpint
+#endif
+#include <Xm/Xm.h>
+#include <X11/cursorfont.h>
+#ifdef __VMS__
+#pragma message enable nosimpint
#endif
-/*
- * Icons
- */
+#include "wx/motif/private.h"
+IMPLEMENT_DYNAMIC_CLASS(wxIcon, wxBitmap)
+
+/*
+* Icons
+*/
-wxIconRefData::wxIconRefData()
+wxIcon::wxIcon()
{
- // TODO: init icon handle
}
-wxIconRefData::~wxIconRefData()
+// Create from XBM data
+wxIcon::wxIcon(const char bits[], int width, int height)
{
- // TODO: destroy icon handle
+ (void) Create((void*) bits, wxBITMAP_TYPE_XBM_DATA, width, height, 1);
}
-wxIcon::wxIcon()
+// Create from XPM data
+wxIcon::wxIcon(char **data)
{
+ (void) Create((void*) data, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0);
}
-wxIcon::wxIcon(const char WXUNUSED(bits)[], int WXUNUSED(width), int WXUNUSED(height))
+wxIcon::wxIcon(const char **data)
{
+ (void) Create((void*) data, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0);
}
wxIcon::wxIcon(const wxString& icon_file, long flags,
- int desiredWidth, int desiredHeight)
-
+ int desiredWidth, int desiredHeight)
+
{
LoadFile(icon_file, flags, desiredWidth, desiredHeight);
}
}
bool wxIcon::LoadFile(const wxString& filename, long type,
- int desiredWidth, int desiredHeight)
+ int desiredWidth, int desiredHeight)
{
- UnRef();
-
- m_refData = new wxIconRefData;
-
- wxBitmapHandler *handler = FindHandler(type);
-
- if ( handler )
- return handler->LoadFile(this, filename, type, desiredWidth, desiredHeight);
- else
- return FALSE;
+ UnRef();
+
+ m_refData = new wxBitmapRefData;
+
+ wxBitmapHandler *handler = FindHandler(type);
+
+ if ( handler )
+ return handler->LoadFile(this, filename, type, desiredWidth, desiredHeight);
+ else
+ return FALSE;
}