]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/panel.h
3e24bd822379abfdfbd732be208b07cbe2d48504
[wxWidgets.git] / include / wx / msw / panel.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/panel.h
3 // Purpose: wxMSW-specific wxPanel class.
4 // Author: Vadim Zeitlin
5 // Created: 2011-03-18
6 // RCS-ID: $Id: wxhead.h,v 1.12 2010-04-22 12:44:51 zeitlin Exp $
7 // Copyright: (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
10
11 #ifndef _WX_MSW_PANEL_H_
12 #define _WX_MSW_PANEL_H_
13
14 // ----------------------------------------------------------------------------
15 // wxPanel
16 // ----------------------------------------------------------------------------
17
18 class WXDLLIMPEXP_CORE wxPanel : public wxPanelBase
19 {
20 public:
21 wxPanel() { }
22
23 wxPanel(wxWindow *parent,
24 int x, int y, int width, int height,
25 long style = wxTAB_TRAVERSAL | wxNO_BORDER,
26 const wxString& name = wxPanelNameStr)
27 {
28 Create(parent, wxID_ANY, wxPoint(x, y), wxSize(width, height), style, name);
29 }
30
31 wxPanel(wxWindow *parent,
32 wxWindowID winid = wxID_ANY,
33 const wxPoint& pos = wxDefaultPosition,
34 const wxSize& size = wxDefaultSize,
35 long style = wxTAB_TRAVERSAL | wxNO_BORDER,
36 const wxString& name = wxPanelNameStr)
37 {
38 Create(parent, winid, pos, size, style, name);
39 }
40
41 // This is overridden for MSW to return true for all panels that are child
42 // of a window with themed background (such as wxNotebook) which should
43 // show through the child panels.
44 virtual bool HasTransparentBackground();
45
46 private:
47 wxDECLARE_DYNAMIC_CLASS_NO_COPY(wxPanel);
48 };
49
50 #endif // _WX_MSW_PANEL_H_