]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/generic/scrolwin.h | |
3 | // Purpose: wxGenericScrolledWindow class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_GENERIC_SCROLLWIN_H_ | |
13 | #define _WX_GENERIC_SCROLLWIN_H_ | |
14 | ||
15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
16 | #pragma interface "genscrolwin.h" | |
17 | #endif | |
18 | ||
19 | // ---------------------------------------------------------------------------- | |
20 | // headers and constants | |
21 | // ---------------------------------------------------------------------------- | |
22 | ||
23 | #include "wx/window.h" | |
24 | #include "wx/panel.h" | |
25 | ||
26 | WXDLLEXPORT_DATA(extern const wxChar*) wxPanelNameStr; | |
27 | ||
28 | // default scrolled window style | |
29 | #ifndef wxScrolledWindowStyle | |
30 | #define wxScrolledWindowStyle (wxHSCROLL | wxVSCROLL) | |
31 | #endif | |
32 | ||
33 | // avoid triggering this stupid VC++ warning | |
34 | #ifdef __VISUALC__ | |
35 | #pragma warning(disable:4355) // 'this' used in base member initializer list | |
36 | #endif | |
37 | ||
38 | // ---------------------------------------------------------------------------- | |
39 | // wxGenericScrolledWindow | |
40 | // ---------------------------------------------------------------------------- | |
41 | ||
42 | class WXDLLEXPORT wxGenericScrolledWindow : public wxPanel, | |
43 | public wxScrollHelper | |
44 | { | |
45 | public: | |
46 | wxGenericScrolledWindow(); | |
47 | wxGenericScrolledWindow(wxWindow *parent, | |
48 | wxWindowID winid = -1, | |
49 | const wxPoint& pos = wxDefaultPosition, | |
50 | const wxSize& size = wxDefaultSize, | |
51 | long style = wxScrolledWindowStyle, | |
52 | const wxString& name = wxPanelNameStr); | |
53 | ||
54 | virtual ~wxGenericScrolledWindow(); | |
55 | ||
56 | bool Create(wxWindow *parent, | |
57 | wxWindowID winid, | |
58 | const wxPoint& pos = wxDefaultPosition, | |
59 | const wxSize& size = wxDefaultSize, | |
60 | long style = wxScrolledWindowStyle, | |
61 | const wxString& name = wxPanelNameStr); | |
62 | ||
63 | virtual void PrepareDC(wxDC& dc) { DoPrepareDC(dc); } | |
64 | ||
65 | // lay out the window and its children | |
66 | virtual bool Layout(); | |
67 | ||
68 | virtual void DoSetVirtualSize(int x, int y); | |
69 | ||
70 | protected: | |
71 | // this is needed for wxEVT_PAINT processing hack described in | |
72 | // wxScrollHelperEvtHandler::ProcessEvent() | |
73 | void OnPaint(wxPaintEvent& event); | |
74 | ||
75 | // we need to return a special WM_GETDLGCODE value to process just the | |
76 | // arrows but let the other navigation characters through | |
77 | #ifdef __WXMSW__ | |
78 | virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); | |
79 | #endif // __WXMSW__ | |
80 | ||
81 | private: | |
82 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxGenericScrolledWindow) | |
83 | DECLARE_EVENT_TABLE() | |
84 | }; | |
85 | ||
86 | #ifdef __VISUALC__ | |
87 | #pragma warning(default:4355) | |
88 | #endif | |
89 | ||
90 | #endif | |
91 | // _WX_GENERIC_SCROLLWIN_H_ | |
92 |