projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
wxToggleButton on wxMac has these methods now
[wxWidgets.git]
/
src
/
x11
/
icon.cpp
diff --git
a/src/x11/icon.cpp
b/src/x11/icon.cpp
index 11cea5bf32785ce96819817b683042b943e8dc88..0086004ff43c60d315ecbf5c4067daeffb357d96 100644
(file)
--- a/
src/x11/icon.cpp
+++ b/
src/x11/icon.cpp
@@
-9,78
+9,49
@@
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#if
def __GNUG__
+#if
defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "icon.h"
#endif
#include "wx/icon.h"
#include "wx/window.h"
#pragma implementation "icon.h"
#endif
#include "wx/icon.h"
#include "wx/window.h"
-#ifdef __VMS__
-#pragma message disable nosimpint
-#endif
-
-#ifdef __VMS__
-#pragma message enable nosimpint
-#endif
-
#include "wx/x11/private.h"
#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);
-}
+IMPLEMENT_DYNAMIC_CLASS(wxIcon,wxBitmap)
-// Create from XPM data
-
wxIcon::wxIcon(char **data
)
+wxIcon::wxIcon( const char **bits, int WXUNUSED(width), int WXUNUSED(height) ) :
+
wxBitmap( bits
)
{
{
- (void) Create((void*) data, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0);
}
}
-wxIcon::wxIcon(const char **data)
+wxIcon::wxIcon( char **bits, int WXUNUSED(width), int WXUNUSED(height) ) :
+ wxBitmap( bits )
{
{
- (void) Create((void*) data, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0);
}
}
-wxIcon::wxIcon(const wxString& icon_file, long flags,
- int desiredWidth, int desiredHeight)
-
+wxIcon::wxIcon() : wxBitmap()
{
{
- LoadFile(icon_file, flags, desiredWidth, desiredHeight);
}
}
-wxIcon::
~wxIcon
()
+wxIcon::
wxIcon( const wxIcon& icon ) : wxBitmap
()
{
{
+ Ref(icon);
}
}
-bool wxIcon::LoadFile(const wxString& filename, long type,
- int desiredWidth, int desiredHeight)
+wxIcon& wxIcon::operator = ( const wxIcon& icon )
{
{
- UnRef();
-
- m_refData = new wxBitmapRefData;
-
- wxBitmapHandler *handler = FindHandler(type);
-
- if ( handler )
- return handler->LoadFile(this, filename, type, desiredWidth, desiredHeight);
- else
- return FALSE;
+ if (*this == icon) return (*this);
+ Ref(icon);
+ return *this;
}
}
-
bool wxIcon::CopyFromBitmap(const wxBitmap& bitma
p)
+
void wxIcon::CopyFromBitmap(const wxBitmap& bm
p)
{
{
- // TODO
-
return FALSE
;
+ wxIcon *icon = (wxIcon*)(&bmp);
+
*this = *icon
;
}
}