1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/infobar.h
3 // Purpose: generic wxInfoBar class declaration
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2009 Vadim Zeitlin <vadim@wxwidgets.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_GENERIC_INFOBAR_H_
12 #define _WX_GENERIC_INFOBAR_H_
14 class WXDLLIMPEXP_FWD_CORE wxBitmapButton
;
15 class WXDLLIMPEXP_FWD_CORE wxStaticBitmap
;
16 class WXDLLIMPEXP_FWD_CORE wxStaticText
;
18 // ----------------------------------------------------------------------------
20 // ----------------------------------------------------------------------------
22 class WXDLLIMPEXP_CORE wxInfoBarGeneric
: public wxInfoBarBase
25 // the usual ctors and Create() but remember that info bar is created
27 wxInfoBarGeneric() { Init(); }
29 wxInfoBarGeneric(wxWindow
*parent
, wxWindowID winid
= wxID_ANY
)
32 Create(parent
, winid
);
35 bool Create(wxWindow
*parent
, wxWindowID winid
= wxID_ANY
);
38 // implement base class methods
39 // ----------------------------
41 virtual void ShowMessage(const wxString
& msg
,
42 int flags
= wxICON_INFORMATION
);
44 virtual void Dismiss();
46 virtual void AddButton(wxWindowID btnid
, const wxString
& label
= wxString());
48 virtual void RemoveButton(wxWindowID btnid
);
50 // methods specific to this version
51 // --------------------------------
53 // set the effect(s) to use when showing/hiding the bar, may be
54 // wxSHOW_EFFECT_NONE to disable any effects entirely
56 // by default, slide to bottom/top is used when it's positioned on the top
57 // of the window for showing/hiding it and top/bottom when it's positioned
59 void SetShowHideEffects(wxShowEffect showEffect
, wxShowEffect hideEffect
)
61 m_showEffect
= showEffect
;
62 m_hideEffect
= hideEffect
;
65 // get effect used when showing/hiding the window
66 wxShowEffect
GetShowEffect() const;
67 wxShowEffect
GetHideEffect() const;
69 // set the duration of animation used when showing/hiding the bar, in ms
70 void SetEffectDuration(int duration
) { m_effectDuration
= duration
; }
72 // get the currently used effect animation duration
73 int GetEffectDuration() const { return m_effectDuration
; }
76 // overridden base class methods
77 // -----------------------------
79 // setting the font of this window sets it for the text control inside it
80 // (default font is a larger and bold version of the normal one)
81 virtual bool SetFont(const wxFont
& font
);
84 // info bar shouldn't have any border by default, the colour difference
85 // between it and the main window separates it well enough
86 virtual wxBorder
GetDefaultBorder() const { return wxBORDER_NONE
; }
89 // update the parent to take our new or changed size into account (notably
90 // should be called when we're shown or hidden)
94 // common part of all ctors
97 // handler for the close button
98 void OnButton(wxCommandEvent
& event
);
104 // determine the placement of the bar from its position in the containing
113 BarPlacement
GetBarPlacement() const;
116 // different controls making up the bar
117 wxStaticBitmap
*m_icon
;
118 wxStaticText
*m_text
;
119 wxBitmapButton
*m_button
;
121 // the effects to use when showing/hiding and duration for them: by default
122 // the effect is determined by the info bar automatically depending on its
123 // position and the default duration is used
124 wxShowEffect m_showEffect
,
126 int m_effectDuration
;
128 DECLARE_EVENT_TABLE()
129 wxDECLARE_NO_COPY_CLASS(wxInfoBarGeneric
);
132 #endif // _WX_GENERIC_INFOBAR_H_