public:
- wxIcon(void) {};
-
- inline wxIcon(const wxIcon& icon) { Ref(icon); }
- inline wxIcon(const wxIcon* icon) { if (icon) Ref(*icon); }
+ wxIcon(void);
+ wxIcon(const wxIcon& icon);
+ wxIcon(const wxIcon* icon);
wxIcon( char **bits, int width=-1, int height=-1 );
- inline wxIcon& operator = (const wxIcon& icon) { if (*this == icon) return (*this); Ref(icon); return *this; }
inline bool operator == (const wxIcon& icon) { return m_refData == icon.m_refData; }
inline bool operator != (const wxIcon& icon) { return m_refData != icon.m_refData; }
};
public:
- wxIcon(void) {};
-
- inline wxIcon(const wxIcon& icon) { Ref(icon); }
- inline wxIcon(const wxIcon* icon) { if (icon) Ref(*icon); }
+ wxIcon(void);
+ wxIcon(const wxIcon& icon);
+ wxIcon(const wxIcon* icon);
wxIcon( char **bits, int width=-1, int height=-1 );
- inline wxIcon& operator = (const wxIcon& icon) { if (*this == icon) return (*this); Ref(icon); return *this; }
inline bool operator == (const wxIcon& icon) { return m_refData == icon.m_refData; }
inline bool operator != (const wxIcon& icon) { return m_refData != icon.m_refData; }
};
// Give it an icon (this is ignored in MDI mode: uses resources)
#ifdef __WXMSW__
frame->SetIcon(wxIcon("mdi_icn"));
+#else
+ frame->SetIcon(wxIcon( mondrian_xpm ));
#endif
// Make a menubar
// Give it an icon (this is ignored in MDI mode: uses resources)
#ifdef __WXMSW__
subframe->SetIcon(wxIcon("chrt_icn"));
-#else
- subframe->SetIcon(wxIcon(mondrian_xpm));
#endif
// Give it a status line
wxBitmapList::~wxBitmapList ()
{
+ printf( "Count: %d.\n", Number() );
+
wxNode *node = First ();
while (node)
{
#endif
#include "wx/bitmap.h"
+#include "wx/icon.h"
#include "gdk/gdkprivate.h"
#ifdef USE_GDK_IMLIB
m_isDrawable = TRUE;
SetUpDC();
-
- long x = 0;
- long y = 0;
}
wxPaintDC::~wxPaintDC(void)
wxFont::wxFont( const wxFont& font )
{
Ref( font );
+
+ if (wxTheFontList) wxTheFontList->Append( this );
}
wxFont::wxFont( const wxFont* font )
{
UnRef();
if (font) Ref( *font );
+
+ if (wxTheFontList) wxTheFontList->Append( this );
}
wxFont::~wxFont(void)
IMPLEMENT_DYNAMIC_CLASS(wxIcon,wxBitmap)
-wxIcon::wxIcon( char **bits, int WXUNUSED(width), int WXUNUSED(height) ) :
- wxBitmap( bits )
+wxIcon::wxIcon( char **bits, int WXUNUSED(width), int WXUNUSED(height) ) :
+ wxBitmap( bits )
{
}
+wxIcon::wxIcon() : wxBitmap()
+{
+}
+
+wxIcon::wxIcon(const wxIcon& icon) : wxBitmap()
+{
+ Ref(icon);
+}
+
+wxIcon::wxIcon(const wxIcon* icon) : wxBitmap()
+{
+ if (icon) Ref(*icon);
+}
+
+wxIcon& wxIcon::operator = (const wxIcon& icon)
+{
+ if (*this == icon) return (*this);
+ Ref(icon);
+ return *this;
+}
+
M_PENDATA->m_width = width;
M_PENDATA->m_style = style;
M_PENDATA->m_colour = colour;
+
if (wxThePenList) wxThePenList->AddPen( this );
}
M_PENDATA->m_width = width;
M_PENDATA->m_style = style;
M_PENDATA->m_colour = colourName;
+
if (wxThePenList) wxThePenList->AddPen( this );
}
{
UnRef();
if (pen) Ref( *pen );
+
if (wxThePenList) wxThePenList->AddPen( this );
}
#endif
#include "wx/bitmap.h"
+#include "wx/icon.h"
#include "gdk/gdkprivate.h"
#ifdef USE_GDK_IMLIB
m_isDrawable = TRUE;
SetUpDC();
-
- long x = 0;
- long y = 0;
}
wxPaintDC::~wxPaintDC(void)
wxFont::wxFont( const wxFont& font )
{
Ref( font );
+
+ if (wxTheFontList) wxTheFontList->Append( this );
}
wxFont::wxFont( const wxFont* font )
{
UnRef();
if (font) Ref( *font );
+
+ if (wxTheFontList) wxTheFontList->Append( this );
}
wxFont::~wxFont(void)
IMPLEMENT_DYNAMIC_CLASS(wxIcon,wxBitmap)
-wxIcon::wxIcon( char **bits, int WXUNUSED(width), int WXUNUSED(height) ) :
- wxBitmap( bits )
+wxIcon::wxIcon( char **bits, int WXUNUSED(width), int WXUNUSED(height) ) :
+ wxBitmap( bits )
{
}
+wxIcon::wxIcon() : wxBitmap()
+{
+}
+
+wxIcon::wxIcon(const wxIcon& icon) : wxBitmap()
+{
+ Ref(icon);
+}
+
+wxIcon::wxIcon(const wxIcon* icon) : wxBitmap()
+{
+ if (icon) Ref(*icon);
+}
+
+wxIcon& wxIcon::operator = (const wxIcon& icon)
+{
+ if (*this == icon) return (*this);
+ Ref(icon);
+ return *this;
+}
+
M_PENDATA->m_width = width;
M_PENDATA->m_style = style;
M_PENDATA->m_colour = colour;
+
if (wxThePenList) wxThePenList->AddPen( this );
}
M_PENDATA->m_width = width;
M_PENDATA->m_style = style;
M_PENDATA->m_colour = colourName;
+
if (wxThePenList) wxThePenList->AddPen( this );
}
{
UnRef();
if (pen) Ref( *pen );
+
if (wxThePenList) wxThePenList->AddPen( this );
}