Added native wxInfoBar implementation for wxGTK.
[wxWidgets.git] / include / wx / gtk / infobar.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/infobar.h
3 // Purpose: native implementation of wxInfoBar for GTK+ 2.18 and later
4 // Author: Vadim Zeitlin
5 // Created: 2009-09-26
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 ///////////////////////////////////////////////////////////////////////////////
10
11 #ifndef _WX_GTK_INFOBAR_H_
12 #define _WX_GTK_INFOBAR_H_
13
14 #include "wx/generic/infobar.h"
15
16 // ----------------------------------------------------------------------------
17 // wxInfoBar for GTK+
18 // ----------------------------------------------------------------------------
19
20 // notice that the native GTK+ implementation is only available since
21 // (relatively recent) 2.18 so we inherit from the generic one to be able to
22 // fall back to it if GTK+ version is determined to be too old during run-time
23 class WXDLLIMPEXP_ADV wxInfoBar : public wxInfoBarGeneric
24 {
25 public:
26 wxInfoBar() { Init(); }
27
28 wxInfoBar(wxWindow *parent, wxWindowID winid = wxID_ANY)
29 {
30 Init();
31 Create(parent, winid);
32 }
33
34 bool Create(wxWindow *parent, wxWindowID winid = wxID_ANY);
35
36 virtual ~wxInfoBar();
37
38 // implement base class methods
39 // ----------------------------
40
41 virtual void ShowMessage(const wxString& msg,
42 int flags = wxICON_INFORMATION);
43
44 virtual void AddButton(wxWindowID btnid,
45 const wxString& label = wxString());
46
47 // implementation only
48 // -------------------
49
50 void GTKResponse(int btnid);
51
52 protected:
53 virtual bool GTKShouldConnectSizeRequest() const { return false; }
54
55 private:
56 void Init() { m_label = NULL; }
57
58 GtkWidget *m_label;
59
60 wxDECLARE_NO_COPY_CLASS(wxInfoBar);
61 };
62
63 #endif // _WX_GTK_INFOBAR_H_
64