]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
8614c467 | 2 | // Name: wx/generic/scrolwin.h |
1e6feb95 | 3 | // Purpose: wxGenericScrolledWindow class |
c801d85f KB |
4 | // Author: Julian Smart |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
371a5b4e | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
8614c467 VZ |
12 | #ifndef _WX_GENERIC_SCROLLWIN_H_ |
13 | #define _WX_GENERIC_SCROLLWIN_H_ | |
c801d85f | 14 | |
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
3379ed37 | 16 | #pragma interface "genscrolwin.h" |
c801d85f KB |
17 | #endif |
18 | ||
8614c467 VZ |
19 | // ---------------------------------------------------------------------------- |
20 | // headers and constants | |
21 | // ---------------------------------------------------------------------------- | |
22 | ||
c801d85f | 23 | #include "wx/window.h" |
053f9cc1 | 24 | #include "wx/panel.h" |
c801d85f | 25 | |
f4fffffc | 26 | extern WXDLLEXPORT_DATA(const wxChar*) wxPanelNameStr; |
c801d85f | 27 | |
8614c467 | 28 | // default scrolled window style |
fa3541bd | 29 | #ifndef wxScrolledWindowStyle |
dc429f89 | 30 | #define wxScrolledWindowStyle (wxHSCROLL | wxVSCROLL) |
fa3541bd | 31 | #endif |
8614c467 | 32 | |
1e6feb95 VZ |
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 | ||
8614c467 | 38 | // ---------------------------------------------------------------------------- |
fa3541bd | 39 | // wxGenericScrolledWindow |
8614c467 VZ |
40 | // ---------------------------------------------------------------------------- |
41 | ||
1e6feb95 VZ |
42 | class WXDLLEXPORT wxGenericScrolledWindow : public wxPanel, |
43 | public wxScrollHelper | |
c801d85f | 44 | { |
0cf5b099 | 45 | public: |
6463b9f5 | 46 | wxGenericScrolledWindow() : wxScrollHelper(this) { } |
fa3541bd | 47 | wxGenericScrolledWindow(wxWindow *parent, |
ca65c044 | 48 | wxWindowID winid = wxID_ANY, |
8614c467 VZ |
49 | const wxPoint& pos = wxDefaultPosition, |
50 | const wxSize& size = wxDefaultSize, | |
51 | long style = wxScrolledWindowStyle, | |
6463b9f5 JS |
52 | const wxString& name = wxPanelNameStr) |
53 | : wxScrollHelper(this) | |
54 | { | |
55 | Create(parent, winid, pos, size, style, name); | |
56 | } | |
c801d85f | 57 | |
1e6feb95 | 58 | virtual ~wxGenericScrolledWindow(); |
c801d85f | 59 | |
8614c467 | 60 | bool Create(wxWindow *parent, |
b935bec2 | 61 | wxWindowID winid, |
8614c467 VZ |
62 | const wxPoint& pos = wxDefaultPosition, |
63 | const wxSize& size = wxDefaultSize, | |
64 | long style = wxScrolledWindowStyle, | |
65 | const wxString& name = wxPanelNameStr); | |
c801d85f | 66 | |
1e6feb95 | 67 | virtual void PrepareDC(wxDC& dc) { DoPrepareDC(dc); } |
ecab4dba | 68 | |
dc429f89 | 69 | // lay out the window and its children |
30486297 RD |
70 | virtual bool Layout(); |
71 | ||
2b5f62a0 VZ |
72 | virtual void DoSetVirtualSize(int x, int y); |
73 | ||
844adaa4 JS |
74 | // wxWindow's GetBestVirtualSize returns the actual window size, |
75 | // whereas we want to return the virtual size | |
76 | virtual wxSize GetBestVirtualSize() const; | |
77 | ||
78 | // Return the size best suited for the current window | |
79 | // (this isn't a virtual size, this is a sensible size for the window) | |
80 | virtual wxSize DoGetBestSize() const; | |
81 | ||
349efbaa VZ |
82 | protected: |
83 | // this is needed for wxEVT_PAINT processing hack described in | |
84 | // wxScrollHelperEvtHandler::ProcessEvent() | |
85 | void OnPaint(wxPaintEvent& event); | |
86 | ||
0cf5b099 VZ |
87 | // we need to return a special WM_GETDLGCODE value to process just the |
88 | // arrows but let the other navigation characters through | |
89 | #ifdef __WXMSW__ | |
c140b7e7 | 90 | virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); |
0cf5b099 VZ |
91 | #endif // __WXMSW__ |
92 | ||
ecab4dba | 93 | private: |
fc7a2a60 | 94 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxGenericScrolledWindow) |
349efbaa | 95 | DECLARE_EVENT_TABLE() |
c801d85f KB |
96 | }; |
97 | ||
1e6feb95 VZ |
98 | #ifdef __VISUALC__ |
99 | #pragma warning(default:4355) | |
100 | #endif | |
101 | ||
c801d85f | 102 | #endif |
8614c467 | 103 | // _WX_GENERIC_SCROLLWIN_H_ |
566d84a7 | 104 |