1 #ifndef _WX_SCROLWIN_H_BASE_
2 #define _WX_SCROLWIN_H_BASE_
5 #include "wx/gtk/scrolwin.h"
7 #include "wx/generic/scrolwin.h"
8 // For non-GTK+ platforms, always use wxGenericScrolledWindow
9 class WXDLLEXPORT wxScrolledWindow
: public wxGenericScrolledWindow
12 DECLARE_CLASS(wxScrolledWindow
)
13 wxScrolledWindow() {};
14 wxScrolledWindow(wxWindow
*parent
,
16 const wxPoint
& pos
= wxDefaultPosition
,
17 const wxSize
& size
= wxDefaultSize
,
18 long style
= wxScrolledWindowStyle
,
19 const wxString
& name
= wxPanelNameStr
)
21 wxGenericScrolledWindow::Create(parent
, id
, pos
, size
, style
, name
);
24 #define wxSCROLLED_WINDOW_IS_GENERIC 1
28 // _WX_SCROLWIN_H_BASE_