1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface for wxPanel and wxScrolledWindow
7 // Created: 24-June-1997
9 // Copyright: (c) 2003 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
16 //---------------------------------------------------------------------------
21 //---------------------------------------------------------------------------
25 class wxPanel : public wxWindow
28 %addtofunc wxPanel "self._setOORInfo(self)"
29 %addtofunc wxPanel() ""
31 wxPanel(wxWindow* parent,
32 const wxWindowID id=-1,
33 const wxPoint& pos = wxDefaultPosition,
34 const wxSize& size = wxDefaultSize,
35 long style = wxTAB_TRAVERSAL | wxNO_BORDER,
36 const wxString& name = wxPyPanelNameStr);
37 %name(PrePanel)wxPanel();
39 bool Create(wxWindow* parent,
41 const wxPoint& pos = wxDefaultPosition,
42 const wxSize& size = wxDefaultSize,
43 long style = wxTAB_TRAVERSAL | wxNO_BORDER,
44 const wxString& name = wxPyPanelNameStr);
50 //---------------------------------------------------------------------------
54 // TODO: Add wrappers for the wxScrollHelper class, make wxScrolledWindow
55 // derive from it and wxPanel. But what to do about wxGTK where this
58 class wxScrolledWindow : public wxPanel
61 %addtofunc wxScrolledWindow "self._setOORInfo(self)"
62 %addtofunc wxScrolledWindow() ""
64 wxScrolledWindow(wxWindow* parent,
65 const wxWindowID id = -1,
66 const wxPoint& pos = wxDefaultPosition,
67 const wxSize& size = wxDefaultSize,
68 long style = wxHSCROLL | wxVSCROLL,
69 const wxString& name = wxPyPanelNameStr);
70 %name(PreScrolledWindow)wxScrolledWindow();
72 bool Create(wxWindow* parent,
73 const wxWindowID id = -1,
74 const wxPoint& pos = wxDefaultPosition,
75 const wxSize& size = wxDefaultSize,
76 long style = wxHSCROLL | wxVSCROLL,
77 const wxString& name = wxPyPanelNameStr);
80 // configure the scrolling
81 virtual void SetScrollbars(int pixelsPerUnitX, int pixelsPerUnitY,
82 int noUnitsX, int noUnitsY,
83 int xPos = 0, int yPos = 0,
84 bool noRefresh = False );
86 // scroll to the given (in logical coords) position
87 virtual void Scroll(int x, int y);
89 // get/set the page size for this orientation (wxVERTICAL/wxHORIZONTAL)
90 int GetScrollPageSize(int orient) const;
91 void SetScrollPageSize(int orient, int pageSize);
93 // Set the x, y scrolling increments.
94 void SetScrollRate( int xstep, int ystep );
96 %feature("autodoc") GetScrollPixelsPerUnit
97 "GetScrollPixelsPerUnit() -> (xUnit, yUnit)";
98 %feature("docstring") GetScrollPixelsPerUnit "
99 get the size of one logical unit in physical ones
101 virtual void GetScrollPixelsPerUnit(int *OUTPUT,
104 // Enable/disable Windows scrolling in either direction. If True, wxWindows
105 // scrolls the canvas and only a bit of the canvas is invalidated; no
106 // Clear() is necessary. If False, the whole canvas is invalidated and a
107 // Clear() is necessary. Disable for when the scroll increment is used to
108 // actually scroll a non-constant distance
109 virtual void EnableScrolling(bool x_scrolling, bool y_scrolling);
111 // Get the view start
112 virtual void GetViewStart(int *OUTPUT, int *OUTPUT) const;
114 // Set the scale factor, used in PrepareDC
115 void SetScale(double xs, double ys);
116 double GetScaleX() const;
117 double GetScaleY() const;
120 %nokwargs CalcScrolledPosition;
121 %nokwargs CalcUnscrolledPosition;
123 // translate between scrolled and unscrolled coordinates
124 void CalcScrolledPosition(int x, int y, int *OUTPUT, int *OUTPUT) const;
125 wxPoint CalcScrolledPosition(const wxPoint& pt) const;
126 void CalcUnscrolledPosition(int x, int y, int *OUTPUT, int *OUTPUT) const;
127 wxPoint CalcUnscrolledPosition(const wxPoint& pt) const;
129 // TODO: use directors?
130 // virtual void DoCalcScrolledPosition(int x, int y, int *xx, int *yy) const;
131 // virtual void DoCalcUnscrolledPosition(int x, int y, int *xx, int *yy) const;
133 // Adjust the scrollbars
134 virtual void AdjustScrollbars();
136 // Calculate scroll increment
137 virtual int CalcScrollInc(wxScrollWinEvent& event);
139 // Normally the wxScrolledWindow will scroll itself, but in some rare
140 // occasions you might want it to scroll [part of] another window (e.g. a
141 // child of it in order to scroll only a portion the area between the
142 // scrollbars (spreadsheet: only cell area will move).
143 virtual void SetTargetWindow(wxWindow *target);
144 virtual wxWindow *GetTargetWindow() const;
147 void SetTargetRect(const wxRect& rect);
148 wxRect GetTargetRect() const;
153 //---------------------------------------------------------------------------