]> git.saurik.com Git - wxWidgets.git/blame - src/motif/statbmp.cpp
No real change.
[wxWidgets.git] / src / motif / statbmp.cpp
CommitLineData
4bb6408c
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: statbmp.cpp
3// Purpose: wxStaticBitmap
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
31528cd3 9// Licence: wxWindows licence
4bb6408c
JS
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "statbmp.h"
14#endif
15
f6045f99
GD
16#include "wx/defs.h"
17
4bb6408c
JS
18#include "wx/statbmp.h"
19
338dd992
JJ
20#ifdef __VMS__
21#pragma message disable nosimpint
22#endif
a4294b78
JS
23#include <Xm/Xm.h>
24#include <Xm/Label.h>
25#include <Xm/LabelG.h>
26#include <Xm/RowColumn.h>
338dd992
JJ
27#ifdef __VMS__
28#pragma message enable nosimpint
29#endif
a4294b78 30
3096bd2f 31#include "wx/motif/private.h"
a4294b78 32
4bb6408c 33IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap, wxControl)
4bb6408c
JS
34
35/*
36 * wxStaticBitmap
37 */
38
39bool wxStaticBitmap::Create(wxWindow *parent, wxWindowID id,
40 const wxBitmap& bitmap,
41 const wxPoint& pos,
42 const wxSize& size,
43 long style,
44 const wxString& name)
45{
46 m_messageBitmap = bitmap;
7af68c66 47 m_messageBitmapOriginal = bitmap;
4bb6408c 48 SetName(name);
0d57be45
JS
49 m_backgroundColour = parent->GetBackgroundColour();
50 m_foregroundColour = parent->GetForegroundColour();
4bb6408c
JS
51 if (parent) parent->AddChild(this);
52
53 if ( id == -1 )
31528cd3 54 m_windowId = (int)NewControlId();
4bb6408c 55 else
31528cd3 56 m_windowId = id;
4bb6408c
JS
57
58 m_windowStyle = style;
59
a4294b78
JS
60 Widget parentWidget = (Widget) parent->GetClientWidget();
61
62 m_mainWidget = (WXWidget) XtVaCreateManagedWidget ("staticBitmap",
63#if USE_GADGETS
64 xmLabelGadgetClass, parentWidget,
65#else
66 xmLabelWidgetClass, parentWidget,
67#endif
68 XmNalignment, XmALIGNMENT_BEGINNING,
69 NULL);
70
7af68c66
MB
71 ChangeBackgroundColour ();
72
73 DoSetBitmap();
a4294b78 74
da175b2c 75 m_font = parent->GetFont();
4b5f3fe6
JS
76 ChangeFont(FALSE);
77
a4294b78 78 SetCanAddEventHandler(TRUE);
dc1efb1d
JS
79
80 wxSize actualSize(size);
7af68c66 81 // work around the cases where the bitmap is a wxNull(Icon/Bitmap)
dc1efb1d 82 if (actualSize.x == -1)
7af68c66 83 actualSize.x = bitmap.GetWidth() ? bitmap.GetWidth() : 1;
dc1efb1d 84 if (actualSize.y == -1)
7af68c66 85 actualSize.y = bitmap.GetHeight() ? bitmap.GetHeight() : 1;
dc1efb1d 86 AttachWidget (parent, m_mainWidget, (WXWidget) NULL, pos.x, pos.y, actualSize.x, actualSize.y);
a4294b78 87
a4294b78
JS
88 return TRUE;
89}
90
91wxStaticBitmap::~wxStaticBitmap()
92{
93 SetBitmap(wxNullBitmap);
4bb6408c
JS
94}
95
7af68c66 96void wxStaticBitmap::DoSetBitmap()
4bb6408c 97{
a4294b78
JS
98 Widget widget = (Widget) m_mainWidget;
99 int x, y, w1, h1, w2, h2;
100
101 GetPosition(&x, &y);
102
7af68c66 103 if (m_messageBitmapOriginal.Ok())
a4294b78 104 {
7af68c66
MB
105 w2 = m_messageBitmapOriginal.GetWidth();
106 h2 = m_messageBitmapOriginal.GetHeight();
107
108 Pixmap pixmap;
109
110 // Must re-make the bitmap to have its transparent areas drawn
111 // in the current widget background colour.
112 if (m_messageBitmapOriginal.GetMask())
113 {
114 int backgroundPixel;
115 XtVaGetValues( widget, XmNbackground, &backgroundPixel,
116 NULL);
117
118 wxColour col;
119 col.SetPixel(backgroundPixel);
120
121 wxBitmap newBitmap = wxCreateMaskedBitmap(m_messageBitmapOriginal, col);
122 m_messageBitmap = newBitmap;
123
124 pixmap = (Pixmap) m_messageBitmap.GetPixmap();
125 }
126 else
aae91497
MB
127 {
128 m_bitmapCache.SetBitmap( m_messageBitmap );
129 pixmap = (Pixmap)m_bitmapCache.GetLabelPixmap(widget);
130 }
7af68c66 131
a4294b78 132 XtVaSetValues (widget,
7af68c66 133 XmNlabelPixmap, pixmap,
a4294b78 134 XmNlabelType, XmPIXMAP,
31528cd3 135 NULL);
a4294b78
JS
136 GetSize(&w1, &h1);
137
138 if (! (w1 == w2) && (h1 == h2))
139 SetSize(x, y, w2, h2);
140 }
141 else
142 {
143 // Null bitmap: must not use current pixmap
144 // since it is no longer valid.
145 XtVaSetValues (widget,
146 XmNlabelType, XmSTRING,
1a3ac83f 147 XmNlabelPixmap, XmUNSPECIFIED_PIXMAP,
a4294b78 148 NULL);
7af68c66
MB
149 }
150}
151
152void wxStaticBitmap::SetBitmap(const wxBitmap& bitmap)
153{
154 m_messageBitmap = bitmap;
155 m_messageBitmapOriginal = bitmap;
156
157 DoSetBitmap();
4bb6408c
JS
158}
159
4b5f3fe6 160void wxStaticBitmap::ChangeFont(bool keepOriginalSize)
0d57be45 161{
4b5f3fe6 162 wxWindow::ChangeFont(keepOriginalSize);
0d57be45
JS
163}
164
165void wxStaticBitmap::ChangeBackgroundColour()
166{
321db4b6 167 wxWindow::ChangeBackgroundColour();
7af68c66
MB
168
169 // must recalculate the background colour
aae91497 170 m_bitmapCache.SetColoursChanged();
7af68c66 171 DoSetBitmap();
0d57be45
JS
172}
173
174void wxStaticBitmap::ChangeForegroundColour()
175{
aae91497 176 m_bitmapCache.SetColoursChanged();
321db4b6 177 wxWindow::ChangeForegroundColour();
0d57be45
JS
178}
179