1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/infobar.h
3 // Purpose: generic wxInfoBar class declaration
4 // Author: Vadim Zeitlin
6 // RCS-ID: $Id: wxhead.h,v 1.11 2009-06-29 10:23:04 zeitlin Exp $
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_ADV 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 AddButton(wxWindowID btnid
, const wxString
& label
= wxString());
46 virtual void RemoveButton(wxWindowID btnid
);
48 // methods specific to this version
49 // --------------------------------
51 // set the effect(s) to use when showing/hiding the bar, may be
52 // wxSHOW_EFFECT_NONE to disable any effects entirely
54 // by default, slide to bottom/top is used when it's positioned on the top
55 // of the window for showing/hiding it and top/bottom when it's positioned
57 void SetShowHideEffects(wxShowEffect showEffect
, wxShowEffect hideEffect
)
59 m_showEffect
= showEffect
;
60 m_hideEffect
= hideEffect
;
63 // get effect used when showing/hiding the window
64 wxShowEffect
GetShowEffect() const { return m_showEffect
; }
65 wxShowEffect
GetHideEffect() const { return m_hideEffect
; }
67 // set the duration of animation used when showing/hiding the bar, in ms
68 void SetEffectDuration(int duration
) { m_effectDuration
= duration
; }
70 // get the currently used effect animation duration
71 int GetEffectDuration() const { return m_effectDuration
; }
74 // overridden base class methods
75 // -----------------------------
77 // setting the font of this window sets it for the text control inside it
78 // (default font is a larger and bold version of the normal one)
79 virtual bool SetFont(const wxFont
& font
);
82 // update the parent to take our new or changed size into account (notably
83 // should be called when we're shown or hidden)
87 // common part of all ctors
90 // handler for the close button
91 void OnButton(wxCommandEvent
& event
);
93 // change the parent background colour to match that of our sibling
94 void ChangeParentBackground();
96 // restore the parent background changed by the above function
97 void RestoreParentBackground();
104 // different controls making up the bar
105 wxStaticBitmap
*m_icon
;
106 wxStaticText
*m_text
;
107 wxBitmapButton
*m_button
;
109 // the effects to use when showing/hiding and duration for them
110 wxShowEffect m_showEffect
,
112 int m_effectDuration
;
114 // the original parent background colour, before we changed it
115 wxColour m_origParentBgCol
;
117 DECLARE_EVENT_TABLE()
118 wxDECLARE_NO_COPY_CLASS(wxInfoBarGeneric
);
121 #endif // _WX_GENERIC_INFOBAR_H_