1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/scrolwin.h
3 // Purpose: wxGenericScrolledWindow class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_GENERIC_SCROLLWIN_H_
13 #define _WX_GENERIC_SCROLLWIN_H_
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "genscrolwin.h"
19 // ----------------------------------------------------------------------------
20 // headers and constants
21 // ----------------------------------------------------------------------------
23 #include "wx/window.h"
26 extern WXDLLEXPORT_DATA(const wxChar
*) wxPanelNameStr
;
28 // default scrolled window style
29 #ifndef wxScrolledWindowStyle
30 #define wxScrolledWindowStyle (wxHSCROLL | wxVSCROLL)
33 // avoid triggering this stupid VC++ warning
38 #pragma warning(disable:4355) // 'this' used in base member initializer list
41 // ----------------------------------------------------------------------------
42 // wxGenericScrolledWindow
43 // ----------------------------------------------------------------------------
45 class WXDLLEXPORT wxGenericScrolledWindow
: public wxPanel
,
49 wxGenericScrolledWindow() : wxScrollHelper(this) { }
50 wxGenericScrolledWindow(wxWindow
*parent
,
51 wxWindowID winid
= wxID_ANY
,
52 const wxPoint
& pos
= wxDefaultPosition
,
53 const wxSize
& size
= wxDefaultSize
,
54 long style
= wxScrolledWindowStyle
,
55 const wxString
& name
= wxPanelNameStr
)
56 : wxScrollHelper(this)
58 Create(parent
, winid
, pos
, size
, style
, name
);
61 virtual ~wxGenericScrolledWindow();
63 bool Create(wxWindow
*parent
,
65 const wxPoint
& pos
= wxDefaultPosition
,
66 const wxSize
& size
= wxDefaultSize
,
67 long style
= wxScrolledWindowStyle
,
68 const wxString
& name
= wxPanelNameStr
);
70 virtual void PrepareDC(wxDC
& dc
) { DoPrepareDC(dc
); }
72 // lay out the window and its children
73 virtual bool Layout();
75 virtual void DoSetVirtualSize(int x
, int y
);
77 // wxWindow's GetBestVirtualSize returns the actual window size,
78 // whereas we want to return the virtual size
79 virtual wxSize
GetBestVirtualSize() const;
81 // Return the size best suited for the current window
82 // (this isn't a virtual size, this is a sensible size for the window)
83 virtual wxSize
DoGetBestSize() const;
86 // this is needed for wxEVT_PAINT processing hack described in
87 // wxScrollHelperEvtHandler::ProcessEvent()
88 void OnPaint(wxPaintEvent
& event
);
90 // we need to return a special WM_GETDLGCODE value to process just the
91 // arrows but let the other navigation characters through
93 virtual WXLRESULT
MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
97 DECLARE_DYNAMIC_CLASS_NO_COPY(wxGenericScrolledWindow
)
101 #if defined(__VISUALC__) && (_MSC_VER > 1100)
106 // _WX_GENERIC_SCROLLWIN_H_