X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a8680e3e0e5066d35a8f4fd43294ba4bfcaf4ba7..926ce9e3ac32e1a33cc43420f76876fac8868436:/src/motif/statbmp.cpp diff --git a/src/motif/statbmp.cpp b/src/motif/statbmp.cpp index c10ac0d74a..77941b93fb 100644 --- a/src/motif/statbmp.cpp +++ b/src/motif/statbmp.cpp @@ -9,9 +9,8 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -#pragma implementation "statbmp.h" -#endif +// For compilers that support precompilation, includes "wx.h". +#include "wx/wxprec.h" #include "wx/defs.h" @@ -23,7 +22,6 @@ #include #include #include -#include #ifdef __VMS__ #pragma message enable nosimpint #endif @@ -43,24 +41,17 @@ bool wxStaticBitmap::Create(wxWindow *parent, wxWindowID id, long style, const wxString& name) { + if( !CreateControl( parent, id, pos, size, style, wxDefaultValidator, + name ) ) + return false; + m_messageBitmap = bitmap; m_messageBitmapOriginal = bitmap; - SetName(name); - m_backgroundColour = parent->GetBackgroundColour(); - m_foregroundColour = parent->GetForegroundColour(); - if (parent) parent->AddChild(this); - - if ( id == -1 ) - m_windowId = (int)NewControlId(); - else - m_windowId = id; - - m_windowStyle = style; Widget parentWidget = (Widget) parent->GetClientWidget(); m_mainWidget = (WXWidget) XtVaCreateManagedWidget ("staticBitmap", -#if USE_GADGETS +#if wxUSE_GADGETS xmLabelGadgetClass, parentWidget, #else xmLabelWidgetClass, parentWidget, @@ -72,18 +63,18 @@ bool wxStaticBitmap::Create(wxWindow *parent, wxWindowID id, DoSetBitmap(); - m_font = parent->GetFont(); - ChangeFont(FALSE); + ChangeFont(false); wxSize actualSize(size); // work around the cases where the bitmap is a wxNull(Icon/Bitmap) if (actualSize.x == -1) - actualSize.x = bitmap.GetWidth() ? bitmap.GetWidth() : 1; + actualSize.x = bitmap.Ok() ? bitmap.GetWidth() : 1; if (actualSize.y == -1) - actualSize.y = bitmap.GetHeight() ? bitmap.GetHeight() : 1; - AttachWidget (parent, m_mainWidget, (WXWidget) NULL, pos.x, pos.y, actualSize.x, actualSize.y); + actualSize.y = bitmap.Ok() ? bitmap.GetHeight() : 1; + AttachWidget (parent, m_mainWidget, (WXWidget) NULL, + pos.x, pos.y, actualSize.x, actualSize.y); - return TRUE; + return true; } wxStaticBitmap::~wxStaticBitmap() @@ -94,9 +85,7 @@ wxStaticBitmap::~wxStaticBitmap() void wxStaticBitmap::DoSetBitmap() { Widget widget = (Widget) m_mainWidget; - int x, y, w1, h1, w2, h2; - - GetPosition(&x, &y); + int w2, h2; if (m_messageBitmapOriginal.Ok()) { @@ -131,10 +120,8 @@ void wxStaticBitmap::DoSetBitmap() XmNlabelPixmap, pixmap, XmNlabelType, XmPIXMAP, NULL); - GetSize(&w1, &h1); - if (! (w1 == w2) && (h1 == h2)) - SetSize(x, y, w2, h2); + SetSize(w2, h2); } else { @@ -155,11 +142,6 @@ void wxStaticBitmap::SetBitmap(const wxBitmap& bitmap) DoSetBitmap(); } -void wxStaticBitmap::ChangeFont(bool keepOriginalSize) -{ - wxWindow::ChangeFont(keepOriginalSize); -} - void wxStaticBitmap::ChangeBackgroundColour() { wxWindow::ChangeBackgroundColour();