1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/infobar.cpp
3 // Purpose: generic wxInfoBar implementation
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2009 Vadim Zeitlin <vadim@wxwidgets.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // for compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
28 #include "wx/infobar.h"
31 #include "wx/bmpbuttn.h"
32 #include "wx/button.h"
33 #include "wx/dcmemory.h"
34 #include "wx/settings.h"
35 #include "wx/statbmp.h"
36 #include "wx/stattext.h"
40 #include "wx/artprov.h"
41 #include "wx/scopeguard.h"
43 BEGIN_EVENT_TABLE(wxInfoBarGeneric
, wxInfoBarBase
)
44 EVT_BUTTON(wxID_ANY
, wxInfoBarGeneric::OnButton
)
47 // ============================================================================
49 // ============================================================================
51 void wxInfoBarGeneric::Init()
58 m_hideEffect
= wxSHOW_EFFECT_MAX
;
60 // use default effect duration
64 bool wxInfoBarGeneric::Create(wxWindow
*parent
, wxWindowID winid
)
66 // calling Hide() before Create() ensures that we're created initially
69 if ( !wxWindow::Create(parent
, winid
) )
72 // use special, easy to notice, colours
73 const wxColour colBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_INFOBK
);
74 SetBackgroundColour(colBg
);
75 SetOwnForegroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_INFOTEXT
));
77 // create the controls: icon, text and the button to dismiss the
80 // the icon is not shown unless it's assigned a valid bitmap
81 m_icon
= new wxStaticBitmap(this, wxID_ANY
, wxNullBitmap
);
83 m_text
= new wxStaticText(this, wxID_ANY
, "");
85 m_button
= wxBitmapButton::NewCloseButton(this, wxID_ANY
);
86 m_button
->SetToolTip(_("Hide this notification message."));
88 // center the text inside the sizer with an icon to the left of it and a
89 // button at the very right
91 // NB: AddButton() relies on the button being the last control in the sizer
92 // and being preceded by a spacer
93 wxSizer
* const sizer
= new wxBoxSizer(wxHORIZONTAL
);
94 sizer
->Add(m_icon
, wxSizerFlags().Centre().Border());
95 sizer
->Add(m_text
, wxSizerFlags().Centre());
96 sizer
->AddStretchSpacer();
97 sizer
->Add(m_button
, wxSizerFlags().Centre().Border());
103 bool wxInfoBarGeneric::SetFont(const wxFont
& font
)
105 if ( !wxInfoBarBase::SetFont(font
) )
108 // check that we're not called before Create()
110 m_text
->SetFont(font
);
115 wxInfoBarGeneric::BarPlacement
wxInfoBarGeneric::GetBarPlacement() const
117 wxSizer
* const sizer
= GetContainingSizer();
119 return BarPlacement_Unknown
;
121 // FIXME-VC6: can't compare "const wxInfoBarGeneric *" and "wxWindow *",
122 // so need this workaround
123 wxWindow
* const self
= const_cast<wxInfoBarGeneric
*>(this);
124 const wxSizerItemList
& siblings
= sizer
->GetChildren();
125 if ( siblings
.GetFirst()->GetData()->GetWindow() == self
)
126 return BarPlacement_Top
;
127 else if ( siblings
.GetLast()->GetData()->GetWindow() == self
)
128 return BarPlacement_Bottom
;
130 return BarPlacement_Unknown
;
133 wxShowEffect
wxInfoBarGeneric::GetShowEffect() const
135 if ( m_showEffect
!= wxSHOW_EFFECT_MAX
)
138 switch ( GetBarPlacement() )
140 case BarPlacement_Top
:
141 return wxSHOW_EFFECT_SLIDE_TO_BOTTOM
;
143 case BarPlacement_Bottom
:
144 return wxSHOW_EFFECT_SLIDE_TO_TOP
;
147 wxFAIL_MSG( "unknown info bar placement" );
150 case BarPlacement_Unknown
:
151 return wxSHOW_EFFECT_NONE
;
155 wxShowEffect
wxInfoBarGeneric::GetHideEffect() const
157 if ( m_hideEffect
!= wxSHOW_EFFECT_MAX
)
160 switch ( GetBarPlacement() )
162 case BarPlacement_Top
:
163 return wxSHOW_EFFECT_SLIDE_TO_TOP
;
165 case BarPlacement_Bottom
:
166 return wxSHOW_EFFECT_SLIDE_TO_BOTTOM
;
169 wxFAIL_MSG( "unknown info bar placement" );
172 case BarPlacement_Unknown
:
173 return wxSHOW_EFFECT_NONE
;
177 void wxInfoBarGeneric::UpdateParent()
179 wxWindow
* const parent
= GetParent();
183 void wxInfoBarGeneric::DoHide()
185 HideWithEffect(GetHideEffect(), GetEffectDuration());
190 void wxInfoBarGeneric::DoShow()
192 // re-layout the parent first so that the window expands into an already
193 // unoccupied by the other controls area: for this we need to change our
194 // internal visibility flag to force Layout() to take us into account (an
195 // alternative solution to this hack would be to temporarily set
196 // wxRESERVE_SPACE_EVEN_IF_HIDDEN flag but it's not really batter)
198 // just change the internal flag indicating that the window is visible,
199 // without really showing it
200 wxWindowBase::Show();
202 // adjust the parent layout to account for us
205 // reset the flag back before really showing the window or it wouldn't be
206 // shown at all because it would believe itself already visible
207 wxWindowBase::Show(false);
210 // finally do really show the window.
211 ShowWithEffect(GetShowEffect(), GetEffectDuration());
214 void wxInfoBarGeneric::ShowMessage(const wxString
& msg
, int flags
)
216 // first update the controls
217 const int icon
= flags
& wxICON_MASK
;
218 if ( !icon
|| (icon
== wxICON_NONE
) )
222 else // do show an icon
224 m_icon
->SetBitmap(wxArtProvider::GetBitmap(
225 wxArtProvider::GetMessageBoxIconId(flags
),
230 // notice the use of EscapeMnemonics() to ensure that "&" come through
232 m_text
->SetLabel(wxControl::EscapeMnemonics(msg
));
235 // then show this entire window if not done yet
240 else // we're already shown
242 // just update the layout to correspond to the new message
247 void wxInfoBarGeneric::Dismiss()
252 void wxInfoBarGeneric::AddButton(wxWindowID btnid
, const wxString
& label
)
254 wxSizer
* const sizer
= GetSizer();
255 wxCHECK_RET( sizer
, "must be created first" );
257 // user-added buttons replace the standard close button so remove it if we
258 // hadn't done it yet
259 if ( sizer
->Detach(m_button
) )
264 wxButton
* const button
= new wxButton(this, btnid
, label
);
267 // smaller buttons look better in the (narrow) info bar under OS X
268 button
->SetWindowVariant(wxWINDOW_VARIANT_SMALL
);
271 sizer
->Add(button
, wxSizerFlags().Centre().DoubleBorder());
274 void wxInfoBarGeneric::RemoveButton(wxWindowID btnid
)
276 wxSizer
* const sizer
= GetSizer();
277 wxCHECK_RET( sizer
, "must be created first" );
279 // iterate over the sizer items in reverse order to find the last added
280 // button with this id (ids of all buttons should be unique anyhow but if
281 // they are repeated removing the last added one probably makes more sense)
282 const wxSizerItemList
& items
= sizer
->GetChildren();
283 for ( wxSizerItemList::compatibility_iterator node
= items
.GetLast();
284 node
!= items
.GetFirst();
285 node
= node
->GetPrevious() )
287 const wxSizerItem
* const item
= node
->GetData();
289 // if we reached the spacer separating the buttons from the text
290 // preceding them without finding our button, it must mean it's not
292 if ( item
->IsSpacer() )
294 wxFAIL_MSG( wxString::Format("button with id %d not found", btnid
) );
298 // check if we found our button
299 if ( item
->GetWindow()->GetId() == btnid
)
301 delete item
->GetWindow();
306 // check if there are any custom buttons left
307 if ( sizer
->GetChildren().GetLast()->GetData()->IsSpacer() )
309 // if the last item is the spacer, none are left so restore the
310 // standard close button
311 sizer
->Add(m_button
, wxSizerFlags().Centre().DoubleBorder());
316 void wxInfoBarGeneric::OnButton(wxCommandEvent
& WXUNUSED(event
))
321 #endif // wxUSE_INFOBAR