1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/univ/window.cpp
3 // Purpose: implementation of extra wxWindow methods for wxUniv port
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #include "wx/window.h"
31 #include "wx/dcclient.h"
32 #include "wx/dcmemory.h"
34 #include "wx/scrolbar.h"
40 #include "wx/univ/colschem.h"
41 #include "wx/univ/renderer.h"
42 #include "wx/univ/theme.h"
48 // turn Refresh() debugging on/off
49 #define WXDEBUG_REFRESH
52 #undef WXDEBUG_REFRESH
55 #if defined(WXDEBUG_REFRESH) && defined(__WXMSW__) && !defined(__WXMICROWIN__)
56 #include "wx/msw/private.h"
59 // ============================================================================
61 // ============================================================================
63 // ----------------------------------------------------------------------------
65 // ----------------------------------------------------------------------------
67 // we can't use wxWindowNative here as it won't be expanded inside the macro
68 #if defined(__WXMSW__)
69 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowMSW
)
70 #elif defined(__WXGTK__)
71 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowGTK
)
72 #elif defined(__WXMGL__)
73 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowMGL
)
74 #elif defined(__WXDFB__)
75 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowDFB
)
76 #elif defined(__WXX11__)
77 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowX11
)
78 #elif defined(__WXPM__)
79 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowOS2
)
82 BEGIN_EVENT_TABLE(wxWindow
, wxWindowNative
)
83 EVT_SIZE(wxWindow::OnSize
)
85 #if wxUSE_ACCEL || wxUSE_MENUS
86 EVT_KEY_DOWN(wxWindow::OnKeyDown
)
90 EVT_CHAR(wxWindow::OnChar
)
91 EVT_KEY_UP(wxWindow::OnKeyUp
)
94 EVT_PAINT(wxWindow::OnPaint
)
95 EVT_NC_PAINT(wxWindow::OnNcPaint
)
96 EVT_ERASE_BACKGROUND(wxWindow::OnErase
)
99 // ----------------------------------------------------------------------------
101 // ----------------------------------------------------------------------------
103 void wxWindow::Init()
107 m_scrollbarHorz
= (wxScrollBar
*)NULL
;
108 #endif // wxUSE_SCROLLBAR
112 m_renderer
= wxTheme::Get()->GetRenderer();
114 m_oldSize
.x
= wxDefaultCoord
;
115 m_oldSize
.y
= wxDefaultCoord
;
118 bool wxWindow::Create(wxWindow
*parent
,
123 const wxString
& name
)
125 long actualStyle
= style
;
127 // FIXME: may need this on other platforms
129 actualStyle
&= ~wxVSCROLL
;
130 actualStyle
&= ~wxHSCROLL
;
133 // we add wxCLIP_CHILDREN to get the same ("natural") behaviour under MSW
134 // as under the other platforms
135 if ( !wxWindowNative::Create(parent
, id
, pos
, size
,
136 actualStyle
| wxCLIP_CHILDREN
,
142 // Set full style again, including those we didn't want present
143 // when calling the base window Create().
144 wxWindowBase::SetWindowStyleFlag(style
);
146 // if we allow or should always have a vertical scrollbar, make it
147 if ( style
& wxVSCROLL
|| style
& wxALWAYS_SHOW_SB
)
149 #if wxUSE_TWO_WINDOWS
150 SetInsertIntoMain( true );
153 m_scrollbarVert
= new wxScrollBar(this, wxID_ANY
,
154 wxDefaultPosition
, wxDefaultSize
,
156 #endif // wxUSE_SCROLLBAR
157 #if wxUSE_TWO_WINDOWS
158 SetInsertIntoMain( false );
162 // if we should allow a horizontal scrollbar, make it
163 if ( style
& wxHSCROLL
)
165 #if wxUSE_TWO_WINDOWS
166 SetInsertIntoMain( true );
169 m_scrollbarHorz
= new wxScrollBar(this, wxID_ANY
,
170 wxDefaultPosition
, wxDefaultSize
,
172 #endif // wxUSE_SCROLLBAR
173 #if wxUSE_TWO_WINDOWS
174 SetInsertIntoMain( false );
179 if (m_scrollbarHorz
|| m_scrollbarVert
)
182 PositionScrollbars();
184 #endif // wxUSE_SCROLLBAR
189 wxWindow::~wxWindow()
191 m_isBeingDeleted
= true;
193 // we have to destroy our children before we're destroyed because our
194 // children suppose that we're of type wxWindow, not just wxWindowNative,
195 // and so bad things may happen if they're deleted from the base class dtor
196 // as by then we're not a wxWindow any longer and wxUniv-specific virtual
197 // functions can't be called
201 // ----------------------------------------------------------------------------
203 // ----------------------------------------------------------------------------
205 void wxWindow::SetBackground(const wxBitmap
& bitmap
,
210 m_alignBgBitmap
= alignment
;
211 m_stretchBgBitmap
= stretch
;
214 const wxBitmap
& wxWindow::GetBackgroundBitmap(int *alignment
,
215 wxStretch
*stretch
) const
217 if ( m_bitmapBg
.Ok() )
220 *alignment
= m_alignBgBitmap
;
222 *stretch
= m_stretchBgBitmap
;
228 // ----------------------------------------------------------------------------
230 // ----------------------------------------------------------------------------
232 // the event handlers executed when the window must be repainted
233 void wxWindow::OnNcPaint(wxNcPaintEvent
& WXUNUSED(event
))
237 // get the window rect
238 wxRect
rect(GetSize());
241 // if the scrollbars are outside the border, we must adjust the rect to
243 if ( !m_renderer
->AreScrollbarsInsideBorder() )
245 wxScrollBar
*scrollbar
= GetScrollbar(wxVERTICAL
);
247 rect
.width
-= scrollbar
->GetSize().x
;
249 scrollbar
= GetScrollbar(wxHORIZONTAL
);
251 rect
.height
-= scrollbar
->GetSize().y
;
253 #endif // wxUSE_SCROLLBAR
255 // get the DC and draw the border on it
257 DoDrawBorder(dc
, rect
);
261 void wxWindow::OnPaint(wxPaintEvent
& event
)
265 // it is a native control which paints itself
270 // get the DC to use and create renderer on it
272 wxControlRenderer
renderer(this, dc
, m_renderer
);
279 // the event handler executed when the window background must be painted
280 void wxWindow::OnErase(wxEraseEvent
& event
)
289 DoDrawBackground(*event
.GetDC());
292 // if we have both scrollbars, we also have a square in the corner between
293 // them which we must paint
294 if ( m_scrollbarVert
&& m_scrollbarHorz
)
296 wxSize size
= GetSize();
297 wxRect rectClient
= GetClientRect(),
298 rectBorder
= m_renderer
->GetBorderDimensions(GetBorder());
301 rectCorner
.x
= rectClient
.GetRight() + 1;
302 rectCorner
.y
= rectClient
.GetBottom() + 1;
303 rectCorner
.SetRight(size
.x
- rectBorder
.width
);
304 rectCorner
.SetBottom(size
.y
- rectBorder
.height
);
306 if ( GetUpdateRegion().Contains(rectCorner
) )
308 m_renderer
->DrawScrollCorner(*event
.GetDC(), rectCorner
);
311 #endif // wxUSE_SCROLLBAR
314 bool wxWindow::DoDrawBackground(wxDC
& dc
)
318 wxSize size
= GetSize(); // Why not GetClientSize() ?
322 rect
.height
= size
.y
;
324 wxWindow
* const parent
= GetParent();
325 if ( HasTransparentBackground() && parent
)
327 wxASSERT( !IsTopLevel() );
329 wxPoint pos
= GetPosition();
331 AdjustForParentClientOrigin( pos
.x
, pos
.y
, 0 );
333 // Adjust DC logical origin
334 wxCoord org_x
, org_y
, x
, y
;
335 dc
.GetLogicalOrigin( &org_x
, &org_y
);
338 dc
.SetLogicalOrigin( x
, y
);
344 // Let parent draw the background
345 parent
->EraseBackground( dc
, rect
);
347 // Restore DC logical origin
348 dc
.SetLogicalOrigin( org_x
, org_y
);
352 // Draw background ourselves
353 EraseBackground( dc
, rect
);
359 void wxWindow::EraseBackground(wxDC
& dc
, const wxRect
& rect
)
361 if ( GetBackgroundBitmap().Ok() )
363 // Get the bitmap and the flags
366 wxBitmap bmp
= GetBackgroundBitmap(&alignment
, &stretch
);
367 wxControlRenderer::DrawBitmap(dc
, bmp
, rect
, alignment
, stretch
);
371 // Just fill it with bg colour if no bitmap
373 m_renderer
->DrawBackground(dc
, wxTHEME_BG_COLOUR(this),
374 rect
, GetStateFlags());
378 void wxWindow::DoDrawBorder(wxDC
& dc
, const wxRect
& rect
)
380 // draw outline unless the update region is enitrely inside it in which
381 // case we don't need to do it
382 #if 0 // doesn't seem to work, why?
383 if ( wxRegion(rect
).Contains(GetUpdateRegion().GetBox()) != wxInRegion
)
386 m_renderer
->DrawBorder(dc
, GetBorder(), rect
, GetStateFlags());
390 void wxWindow::DoDraw(wxControlRenderer
* WXUNUSED(renderer
))
394 void wxWindow::Refresh(bool eraseBackground
, const wxRect
*rectClient
)
397 wxPoint pt
= GetClientAreaOrigin();
399 wxSize size
= GetClientSize();
403 rectWin
= *rectClient
;
405 // don't refresh anything beyond the client area (scrollbars for
407 if ( rectWin
.GetRight() > size
.x
)
408 rectWin
.SetRight(size
.x
);
409 if ( rectWin
.GetBottom() > size
.y
)
410 rectWin
.SetBottom(size
.y
);
414 else // refresh the entire client area
418 rectWin
.width
= size
.x
;
419 rectWin
.height
= size
.y
;
423 #ifdef WXDEBUG_REFRESH
424 static bool s_refreshDebug
= false;
425 if ( s_refreshDebug
)
428 dc
.SetBrush(*wxCYAN_BRUSH
);
429 dc
.SetPen(*wxTRANSPARENT_PEN
);
430 dc
.DrawRectangle(rectWin
);
432 // under Unix we use "--sync" X option for this
433 #if defined(__WXMSW__) && !defined(__WXMICROWIN__)
438 #endif // WXDEBUG_REFRESH
440 wxWindowNative::Refresh(eraseBackground
, &rectWin
);
442 // Refresh all sub controls if any.
443 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
446 wxWindow
*win
= node
->GetData();
447 // Only refresh sub controls when it is visible
448 // and when it is in the update region.
449 if(!win
->IsKindOf(CLASSINFO(wxTopLevelWindow
)) && win
->IsShown() && wxRegion(rectWin
).Contains(win
->GetRect()) != wxOutRegion
)
450 win
->Refresh(eraseBackground
, &rectWin
);
452 node
= node
->GetNext();
456 // ----------------------------------------------------------------------------
458 // ----------------------------------------------------------------------------
460 bool wxWindow::Enable(bool enable
)
462 if ( !wxWindowNative::Enable(enable
) )
465 // disabled window can't keep focus
466 if ( FindFocus() == this && GetParent() != NULL
)
468 GetParent()->SetFocus();
473 // a window with renderer is drawn by ourselves and it has to be
474 // refreshed to reflect its new status
481 bool wxWindow::IsFocused() const
483 return FindFocus() == this;
486 bool wxWindow::IsPressed() const
491 bool wxWindow::IsDefault() const
496 bool wxWindow::IsCurrent() const
501 bool wxWindow::SetCurrent(bool doit
)
503 if ( doit
== m_isCurrent
)
508 if ( CanBeHighlighted() )
514 int wxWindow::GetStateFlags() const
518 flags
|= wxCONTROL_DISABLED
;
520 // the following states are only possible if our application is active - if
521 // it is not, even our default/focused controls shouldn't appear as such
522 if ( wxTheApp
->IsActive() )
525 flags
|= wxCONTROL_CURRENT
;
527 flags
|= wxCONTROL_FOCUSED
;
529 flags
|= wxCONTROL_PRESSED
;
531 flags
|= wxCONTROL_ISDEFAULT
;
537 // ----------------------------------------------------------------------------
539 // ----------------------------------------------------------------------------
541 void wxWindow::OnSize(wxSizeEvent
& event
)
546 if ( m_scrollbarVert
|| m_scrollbarHorz
)
548 PositionScrollbars();
550 #endif // wxUSE_SCROLLBAR
552 #if 0 // ndef __WXMSW__
553 // Refresh the area (strip) previously occupied by the border
555 if ( !HasFlag(wxFULL_REPAINT_ON_RESIZE
) && IsShown() )
557 // This code assumes that wxSizeEvent.GetSize() returns
558 // the area of the entire window, not just the client
560 wxSize newSize
= event
.GetSize();
562 if (m_oldSize
.x
== wxDefaultCoord
&& m_oldSize
.y
== wxDefaultCoord
)
568 if (HasFlag( wxSIMPLE_BORDER
))
570 if (newSize
.y
> m_oldSize
.y
)
574 rect
.width
= m_oldSize
.x
;
575 rect
.y
= m_oldSize
.y
-2;
577 Refresh( true, &rect
);
579 else if (newSize
.y
< m_oldSize
.y
)
585 rect
.width
= newSize
.x
;
586 wxWindowNative::Refresh( true, &rect
);
589 if (newSize
.x
> m_oldSize
.x
)
593 rect
.height
= m_oldSize
.y
;
594 rect
.x
= m_oldSize
.x
-2;
596 Refresh( true, &rect
);
598 else if (newSize
.x
< m_oldSize
.x
)
604 rect
.height
= newSize
.y
;
605 wxWindowNative::Refresh( true, &rect
);
609 if (HasFlag( wxSUNKEN_BORDER
) || HasFlag( wxRAISED_BORDER
))
611 if (newSize
.y
> m_oldSize
.y
)
615 rect
.width
= m_oldSize
.x
;
616 rect
.y
= m_oldSize
.y
-4;
618 Refresh( true, &rect
);
620 else if (newSize
.y
< m_oldSize
.y
)
626 rect
.width
= newSize
.x
;
627 wxWindowNative::Refresh( true, &rect
);
630 if (newSize
.x
> m_oldSize
.x
)
634 rect
.height
= m_oldSize
.y
;
635 rect
.x
= m_oldSize
.x
-4;
637 Refresh( true, &rect
);
639 else if (newSize
.x
< m_oldSize
.x
)
645 rect
.height
= newSize
.y
;
646 wxWindowNative::Refresh( true, &rect
);
655 wxSize
wxWindow::DoGetBestSize() const
657 return AdjustSize(DoGetBestClientSize());
660 wxSize
wxWindow::DoGetBestClientSize() const
662 return wxWindowNative::DoGetBestSize();
665 wxSize
wxWindow::AdjustSize(const wxSize
& size
) const
669 m_renderer
->AdjustSize(&sz
, this);
673 wxPoint
wxWindow::GetClientAreaOrigin() const
675 wxPoint pt
= wxWindowBase::GetClientAreaOrigin();
677 #if wxUSE_TWO_WINDOWS
680 pt
+= m_renderer
->GetBorderDimensions(GetBorder()).GetPosition();
686 void wxWindow::DoGetClientSize(int *width
, int *height
) const
688 // if it is a native window, we assume it handles the scrollbars itself
689 // too - and if it doesn't, there is not much we can do
692 wxWindowNative::DoGetClientSize(width
, height
);
698 wxWindowNative::DoGetClientSize(&w
, &h
);
700 // we assume that the scrollbars are positioned correctly (by a previous
701 // call to PositionScrollbars()) here
705 rectBorder
= m_renderer
->GetBorderDimensions(GetBorder());
707 bool inside
= m_renderer
->AreScrollbarsInsideBorder();
712 // in any case, take account of the scrollbar
713 if ( m_scrollbarVert
)
714 w
-= m_scrollbarVert
->GetSize().x
;
715 #endif // wxUSE_SCROLLBAR
717 // if we don't have scrollbar or if it is outside the border (and not
718 // blended into it), take account of the right border as well
722 #endif // wxUSE_SCROLLBAR
724 w
-= rectBorder
.width
;
726 // and always account for the left border
727 *width
= w
- rectBorder
.x
;
729 // we shouldn't return invalid width
737 if ( m_scrollbarHorz
)
738 h
-= m_scrollbarHorz
->GetSize().y
;
739 #endif // wxUSE_SCROLLBAR
744 #endif // wxUSE_SCROLLBAR
746 h
-= rectBorder
.height
;
748 *height
= h
- rectBorder
.y
;
750 // we shouldn't return invalid height
756 void wxWindow::DoSetClientSize(int width
, int height
)
758 // take into account the borders
759 wxRect rectBorder
= m_renderer
->GetBorderDimensions(GetBorder());
760 width
+= rectBorder
.x
;
761 height
+= rectBorder
.y
;
763 // and the scrollbars (as they may be offset into the border, use the
764 // scrollbar position, not size - this supposes that PositionScrollbars()
765 // had been called before)
766 bool inside
= m_renderer
->AreScrollbarsInsideBorder();
767 wxSize size
= GetSize();
769 if ( m_scrollbarVert
)
770 width
+= size
.x
- m_scrollbarVert
->GetPosition().x
;
771 #endif // wxUSE_SCROLLBAR
775 #endif // wxUSE_SCROLLBAR
777 width
+= rectBorder
.width
;
780 if ( m_scrollbarHorz
)
781 height
+= size
.y
- m_scrollbarHorz
->GetPosition().y
;
782 #endif // wxUSE_SCROLLBAR
786 #endif // wxUSE_SCROLLBAR
788 height
+= rectBorder
.height
;
790 wxWindowNative::DoSetClientSize(width
, height
);
793 wxHitTest
wxWindow::DoHitTest(wxCoord x
, wxCoord y
) const
795 wxHitTest ht
= wxWindowNative::DoHitTest(x
, y
);
798 if ( ht
== wxHT_WINDOW_INSIDE
)
800 if ( m_scrollbarVert
&& x
>= m_scrollbarVert
->GetPosition().x
)
802 // it can still be changed below because it may also be the corner
803 ht
= wxHT_WINDOW_VERT_SCROLLBAR
;
806 if ( m_scrollbarHorz
&& y
>= m_scrollbarHorz
->GetPosition().y
)
808 ht
= ht
== wxHT_WINDOW_VERT_SCROLLBAR
? wxHT_WINDOW_CORNER
809 : wxHT_WINDOW_HORZ_SCROLLBAR
;
812 #endif // wxUSE_SCROLLBAR
817 // ----------------------------------------------------------------------------
818 // scrolling: we implement it entirely ourselves except for ScrollWindow()
819 // function which is supposed to be (efficiently) implemented by the native
821 // ----------------------------------------------------------------------------
823 void wxWindow::RefreshScrollbars()
826 if ( m_scrollbarHorz
)
827 m_scrollbarHorz
->Refresh();
829 if ( m_scrollbarVert
)
830 m_scrollbarVert
->Refresh();
831 #endif // wxUSE_SCROLLBAR
834 void wxWindow::PositionScrollbars()
837 // do not use GetClientSize/Rect as it relies on the scrollbars being
838 // correctly positioned
840 wxSize size
= GetSize();
841 wxBorder border
= GetBorder();
842 wxRect rectBorder
= m_renderer
->GetBorderDimensions(border
);
843 bool inside
= m_renderer
->AreScrollbarsInsideBorder();
845 int height
= m_scrollbarHorz
? m_scrollbarHorz
->GetSize().y
: 0;
846 int width
= m_scrollbarVert
? m_scrollbarVert
->GetSize().x
: 0;
849 if ( m_scrollbarVert
)
851 rectBar
.x
= size
.x
- width
;
853 rectBar
.x
-= rectBorder
.width
;
854 rectBar
.width
= width
;
857 rectBar
.y
+= rectBorder
.y
;
858 rectBar
.height
= size
.y
- height
;
860 rectBar
.height
-= rectBorder
.y
+ rectBorder
.height
;
862 m_scrollbarVert
->SetSize(rectBar
, wxSIZE_NO_ADJUSTMENTS
);
865 if ( m_scrollbarHorz
)
867 rectBar
.y
= size
.y
- height
;
869 rectBar
.y
-= rectBorder
.height
;
870 rectBar
.height
= height
;
873 rectBar
.x
+= rectBorder
.x
;
874 rectBar
.width
= size
.x
- width
;
876 rectBar
.width
-= rectBorder
.x
+ rectBorder
.width
;
878 m_scrollbarHorz
->SetSize(rectBar
, wxSIZE_NO_ADJUSTMENTS
);
882 #endif // wxUSE_SCROLLBAR
885 void wxWindow::SetScrollbar(int orient
,
892 wxASSERT_MSG( pageSize
<= range
,
893 _T("page size can't be greater than range") );
895 bool hasClientSizeChanged
= false;
896 wxScrollBar
*scrollbar
= GetScrollbar(orient
);
897 if ( range
&& (pageSize
< range
) )
902 #if wxUSE_TWO_WINDOWS
903 SetInsertIntoMain( true );
905 scrollbar
= new wxScrollBar(this, wxID_ANY
,
906 wxDefaultPosition
, wxDefaultSize
,
907 orient
& wxVERTICAL
? wxSB_VERTICAL
909 #if wxUSE_TWO_WINDOWS
910 SetInsertIntoMain( false );
912 if ( orient
& wxVERTICAL
)
913 m_scrollbarVert
= scrollbar
;
915 m_scrollbarHorz
= scrollbar
;
917 // the client area diminished as we created a scrollbar
918 hasClientSizeChanged
= true;
920 PositionScrollbars();
922 else if ( GetWindowStyle() & wxALWAYS_SHOW_SB
)
924 // we might have disabled it before
928 scrollbar
->SetScrollbar(pos
, pageSize
, range
, pageSize
, refresh
);
930 else // no range means no scrollbar
934 // wxALWAYS_SHOW_SB only applies to the vertical scrollbar
935 if ( (orient
& wxVERTICAL
) && (GetWindowStyle() & wxALWAYS_SHOW_SB
) )
937 // just disable the scrollbar
938 scrollbar
->SetScrollbar(pos
, pageSize
, range
, pageSize
, refresh
);
939 scrollbar
->Disable();
941 else // really remove the scrollbar
945 if ( orient
& wxVERTICAL
)
946 m_scrollbarVert
= NULL
;
948 m_scrollbarHorz
= NULL
;
950 // the client area increased as we removed a scrollbar
951 hasClientSizeChanged
= true;
953 // the size of the remaining scrollbar must be adjusted
954 if ( m_scrollbarHorz
|| m_scrollbarVert
)
956 PositionScrollbars();
962 // give the window a chance to relayout
963 if ( hasClientSizeChanged
)
965 #if wxUSE_TWO_WINDOWS
966 wxWindowNative::SetSize( GetSize() );
968 wxSizeEvent
event(GetSize());
969 (void)GetEventHandler()->ProcessEvent(event
);
975 wxUnusedVar(pageSize
);
977 wxUnusedVar(refresh
);
978 #endif // wxUSE_SCROLLBAR
981 void wxWindow::SetScrollPos(int orient
, int pos
, bool WXUNUSED(refresh
))
984 wxScrollBar
*scrollbar
= GetScrollbar(orient
);
987 scrollbar
->SetThumbPosition(pos
);
989 // VZ: I think we can safely ignore this as we always refresh it
990 // automatically whenever the value chanegs
998 #endif // wxUSE_SCROLLBAR
1001 int wxWindow::GetScrollPos(int orient
) const
1004 wxScrollBar
*scrollbar
= GetScrollbar(orient
);
1005 return scrollbar
? scrollbar
->GetThumbPosition() : 0;
1007 wxUnusedVar(orient
);
1009 #endif // wxUSE_SCROLLBAR
1012 int wxWindow::GetScrollThumb(int orient
) const
1015 wxScrollBar
*scrollbar
= GetScrollbar(orient
);
1016 return scrollbar
? scrollbar
->GetThumbSize() : 0;
1018 wxUnusedVar(orient
);
1020 #endif // wxUSE_SCROLLBAR
1023 int wxWindow::GetScrollRange(int orient
) const
1026 wxScrollBar
*scrollbar
= GetScrollbar(orient
);
1027 return scrollbar
? scrollbar
->GetRange() : 0;
1029 wxUnusedVar(orient
);
1031 #endif // wxUSE_SCROLLBAR
1034 void wxWindow::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
1036 // use native scrolling when available and do it in generic way
1040 wxWindowNative::ScrollWindow(dx
, dy
, rect
);
1044 // before scrolling it, ensure that we don't have any unpainted areas
1051 r
= ScrollNoRefresh(dx
, 0, rect
);
1052 Refresh(true /* erase bkgnd */, &r
);
1057 r
= ScrollNoRefresh(0, dy
, rect
);
1058 Refresh(true /* erase bkgnd */, &r
);
1061 // scroll children accordingly:
1062 wxPoint
offset(dx
, dy
);
1064 for (wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
1065 node
; node
= node
->GetNext())
1067 wxWindow
*child
= node
->GetData();
1069 if ( child
== m_scrollbarVert
|| child
== m_scrollbarHorz
)
1071 #endif // wxUSE_SCROLLBAR
1073 // VS: Scrolling children has non-trivial semantics. If rect=NULL then
1074 // it is easy: we scroll all children. Otherwise it gets
1076 // 1. if scrolling in one direction only, scroll only
1077 // those children that intersect shaft defined by the rectangle
1078 // and scrolling direction
1079 // 2. if scrolling in both axes, scroll all children
1081 if ( rect
&& (dx
* dy
== 0 /* moving in only one of x, y axis */) )
1083 wxRect childRect
= child
->GetRect();
1084 if ( dx
== 0 && (childRect
.GetLeft() <= rect
->GetRight() ||
1085 childRect
.GetRight() >= rect
->GetLeft()) )
1087 child
->Move(child
->GetPosition() + offset
);
1089 else if ( dy
== 0 && (childRect
.GetTop() <= rect
->GetBottom() ||
1090 childRect
.GetBottom() >= rect
->GetTop()) )
1092 child
->Move(child
->GetPosition() + offset
);
1097 child
->Move(child
->GetPosition() + offset
);
1100 #endif // wxX11/!wxX11
1103 wxRect
wxWindow::ScrollNoRefresh(int dx
, int dy
, const wxRect
*rectTotal
)
1105 wxASSERT_MSG( !dx
|| !dy
, _T("can't be used for diag scrolling") );
1107 // the rect to refresh (which we will calculate)
1116 // calculate the part of the window which we can just redraw in the new
1118 wxSize sizeTotal
= rectTotal
? rectTotal
->GetSize() : GetClientSize();
1120 wxLogTrace(_T("scroll"), _T("rect is %dx%d, scroll by %d, %d"),
1121 sizeTotal
.x
, sizeTotal
.y
, dx
, dy
);
1123 // the initial and end point of the region we move in client coords
1124 wxPoint ptSource
, ptDest
;
1127 ptSource
= rectTotal
->GetPosition();
1128 ptDest
= rectTotal
->GetPosition();
1131 // the size of this region
1133 size
.x
= sizeTotal
.x
- abs(dx
);
1134 size
.y
= sizeTotal
.y
- abs(dy
);
1135 if ( size
.x
<= 0 || size
.y
<= 0 )
1137 // just redraw everything as nothing of the displayed image will stay
1138 wxLogTrace(_T("scroll"), _T("refreshing everything"));
1140 rect
= rectTotal
? *rectTotal
: wxRect(0, 0, sizeTotal
.x
, sizeTotal
.y
);
1142 else // move the part which doesn't change to the new location
1144 // note that when we scroll the canvas in some direction we move the
1145 // block which doesn't need to be refreshed in the opposite direction
1149 // scroll to the right, move to the left
1154 // scroll to the left, move to the right
1160 // scroll down, move up
1165 // scroll up, move down
1170 // we need to hide the caret before moving or it will erase itself at
1171 // the wrong (old) location
1172 wxCaret
*caret
= GetCaret();
1175 #endif // wxUSE_CARET
1178 wxClientDC
dc(this);
1179 wxBitmap
bmp(size
.x
, size
.y
);
1181 dcMem
.SelectObject(bmp
);
1183 dcMem
.Blit(wxPoint(0,0), size
, &dc
, ptSource
1184 #if defined(__WXGTK__) && !defined(wxHAS_WORKING_GTK_DC_BLIT)
1185 + GetClientAreaOrigin()
1186 #endif // broken wxGTK wxDC::Blit
1188 dc
.Blit(ptDest
, size
, &dcMem
, wxPoint(0,0));
1190 wxLogTrace(_T("scroll"),
1191 _T("Blit: (%d, %d) of size %dx%d -> (%d, %d)"),
1192 ptSource
.x
, ptSource
.y
,
1194 ptDest
.x
, ptDest
.y
);
1196 // and now repaint the uncovered area
1198 // FIXME: We repaint the intersection of these rectangles twice - is
1199 // it bad? I don't think so as it is rare to scroll the window
1200 // diagonally anyhow and so adding extra logic to compute
1201 // rectangle intersection is probably not worth the effort
1203 rect
.x
= ptSource
.x
;
1204 rect
.y
= ptSource
.y
;
1210 // refresh the area along the right border
1211 rect
.x
+= size
.x
+ dx
;
1216 // refresh the area along the left border
1220 rect
.height
= sizeTotal
.y
;
1222 wxLogTrace(_T("scroll"), _T("refreshing (%d, %d)-(%d, %d)"),
1224 rect
.GetRight() + 1, rect
.GetBottom() + 1);
1231 // refresh the area along the bottom border
1232 rect
.y
+= size
.y
+ dy
;
1237 // refresh the area along the top border
1241 rect
.width
= sizeTotal
.x
;
1243 wxLogTrace(_T("scroll"), _T("refreshing (%d, %d)-(%d, %d)"),
1245 rect
.GetRight() + 1, rect
.GetBottom() + 1);
1251 #endif // wxUSE_CARET
1257 // ----------------------------------------------------------------------------
1258 // accelerators and menu hot keys
1259 // ----------------------------------------------------------------------------
1262 // the last window over which Alt was pressed (used by OnKeyUp)
1263 wxWindow
*wxWindow::ms_winLastAltPress
= NULL
;
1264 #endif // wxUSE_MENUS
1266 #if wxUSE_ACCEL || wxUSE_MENUS
1268 void wxWindow::OnKeyDown(wxKeyEvent
& event
)
1271 int key
= event
.GetKeyCode();
1272 if ( !event
.ControlDown() && (key
== WXK_ALT
|| key
== WXK_F10
) )
1274 ms_winLastAltPress
= this;
1276 // it can't be an accel anyhow
1280 ms_winLastAltPress
= NULL
;
1281 #endif // wxUSE_MENUS
1284 for ( wxWindow
*win
= this; win
; win
= win
->GetParent() )
1286 int command
= win
->GetAcceleratorTable()->GetCommand(event
);
1287 if ( command
!= -1 )
1289 wxCommandEvent
eventCmd(wxEVT_COMMAND_MENU_SELECTED
, command
);
1290 if ( win
->GetEventHandler()->ProcessEvent(eventCmd
) )
1292 // skip "event.Skip()" below
1297 if ( win
->IsTopLevel() )
1299 // try the frame menu bar
1301 wxFrame
*frame
= wxDynamicCast(win
, wxFrame
);
1304 wxMenuBar
*menubar
= frame
->GetMenuBar();
1305 if ( menubar
&& menubar
->ProcessAccelEvent(event
) )
1307 // skip "event.Skip()" below
1311 #endif // wxUSE_MENUS
1313 // if it wasn't in a menu, try to find a button
1314 if ( command
!= -1 )
1316 wxWindow
* child
= win
->FindWindow(command
);
1317 if ( child
&& wxDynamicCast(child
, wxButton
) )
1319 wxCommandEvent
eventCmd(wxEVT_COMMAND_BUTTON_CLICKED
, command
);
1320 eventCmd
.SetEventObject(child
);
1321 if ( child
->GetEventHandler()->ProcessEvent(eventCmd
) )
1323 // skip "event.Skip()" below
1329 // don't propagate accels from the child frame to the parent one
1333 #endif // wxUSE_ACCEL
1338 #endif // wxUSE_ACCEL
1342 wxMenuBar
*wxWindow::GetParentFrameMenuBar() const
1344 for ( const wxWindow
*win
= this; win
; win
= win
->GetParent() )
1346 if ( win
->IsTopLevel() )
1348 wxFrame
*frame
= wxDynamicCast(win
, wxFrame
);
1351 return frame
->GetMenuBar();
1354 // don't look further - we don't want to return the menubar of the
1363 void wxWindow::OnChar(wxKeyEvent
& event
)
1365 if ( event
.AltDown() && !event
.ControlDown() )
1367 int key
= event
.GetKeyCode();
1369 wxMenuBar
*menubar
= GetParentFrameMenuBar();
1372 int item
= menubar
->FindNextItemForAccel(-1, key
);
1375 menubar
->PopupMenu((size_t)item
);
1377 // skip "event.Skip()" below
1386 void wxWindow::OnKeyUp(wxKeyEvent
& event
)
1388 int key
= event
.GetKeyCode();
1389 if ( !event
.HasModifiers() && (key
== WXK_ALT
|| key
== WXK_F10
) )
1391 // only process Alt release specially if there were no other key
1392 // presses since Alt had been pressed and if both events happened in
1394 if ( ms_winLastAltPress
== this )
1396 wxMenuBar
*menubar
= GetParentFrameMenuBar();
1397 if ( menubar
&& this != menubar
)
1399 menubar
->SelectMenu(0);
1408 // in any case reset it
1409 ms_winLastAltPress
= NULL
;
1412 #endif // wxUSE_MENUS
1414 // ----------------------------------------------------------------------------
1415 // MSW-specific section
1416 // ----------------------------------------------------------------------------
1420 #include "wx/msw/private.h"
1422 WXLRESULT
wxWindow::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
1424 if ( message
== WM_NCHITTEST
)
1426 // the windows which contain the other windows should let the mouse
1427 // events through, otherwise a window inside a static box would
1428 // never get any events at all
1429 if ( IsStaticBox() )
1431 return HTTRANSPARENT
;
1435 return wxWindowNative::MSWWindowProc(message
, wParam
, lParam
);