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 %pythonAppend wxPanel "self._setOORInfo(self)"
29 %pythonAppend 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,
40 const wxWindowID id=-1,
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 %pythonAppend wxScrolledWindow "self._setOORInfo(self)"
62 %pythonAppend 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 );
97 virtual void, GetScrollPixelsPerUnit(int *OUTPUT, int *OUTPUT) const,
98 "GetScrollPixelsPerUnit() -> (xUnit, yUnit)",
99 "Get the size of one logical unit in physical units.");
101 // Enable/disable Windows scrolling in either direction. If True, wxWindows
102 // scrolls the canvas and only a bit of the canvas is invalidated; no
103 // Clear() is necessary. If False, the whole canvas is invalidated and a
104 // Clear() is necessary. Disable for when the scroll increment is used to
105 // actually scroll a non-constant distance
106 virtual void EnableScrolling(bool x_scrolling, bool y_scrolling);
110 virtual void, GetViewStart(int *OUTPUT, int *OUTPUT) const,
111 "GetViewStart() -> (x,y)",
112 "Get the view start");
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 DocStr(CalcScrolledPosition, "Translate between scrolled and unscrolled coordinates.");
124 wxPoint CalcScrolledPosition(const wxPoint& pt) const;
126 void, CalcScrolledPosition(int x, int y, int *OUTPUT, int *OUTPUT) const,
127 "CalcScrolledPosition(int x, int y) -> (sx, sy)");
130 DocStr(CalcUnscrolledPosition, "Translate between scrolled and unscrolled coordinates.");
131 wxPoint CalcUnscrolledPosition(const wxPoint& pt) const;
133 void, CalcUnscrolledPosition(int x, int y, int *OUTPUT, int *OUTPUT) const,
134 "CalcUnscrolledPosition(int x, int y) -> (ux, uy)");
138 // TODO: use directors?
139 // virtual void DoCalcScrolledPosition(int x, int y, int *xx, int *yy) const;
140 // virtual void DoCalcUnscrolledPosition(int x, int y, int *xx, int *yy) const;
142 // Adjust the scrollbars
143 virtual void AdjustScrollbars();
145 // Calculate scroll increment
146 virtual int CalcScrollInc(wxScrollWinEvent& event);
148 // Normally the wxScrolledWindow will scroll itself, but in some rare
149 // occasions you might want it to scroll [part of] another window (e.g. a
150 // child of it in order to scroll only a portion the area between the
151 // scrollbars (spreadsheet: only cell area will move).
152 virtual void SetTargetWindow(wxWindow *target);
153 virtual wxWindow *GetTargetWindow() const;
156 void SetTargetRect(const wxRect& rect);
157 wxRect GetTargetRect() const;
162 //---------------------------------------------------------------------------