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"
38 #include "wx/button.h"
41 #include "wx/univ/colschem.h"
42 #include "wx/univ/renderer.h"
43 #include "wx/univ/theme.h"
50 #if wxDEBUG_LEVEL >= 2
51 // turn Refresh() debugging on/off
52 #define WXDEBUG_REFRESH
55 #if defined(WXDEBUG_REFRESH) && defined(__WXMSW__) && !defined(__WXMICROWIN__)
56 #include "wx/msw/private.h"
59 // ============================================================================
61 // ============================================================================
63 // ----------------------------------------------------------------------------
65 // ----------------------------------------------------------------------------
67 // This is scrollbar class used to implement wxWindow's "built-in" scrollbars;
68 // unlike the standard wxScrollBar class, this one is positioned outside of its
69 // parent's client area
70 class wxWindowScrollBar
: public wxScrollBar
73 wxWindowScrollBar(wxWindow
*parent
,
75 const wxPoint
& pos
= wxDefaultPosition
,
76 const wxSize
& size
= wxDefaultSize
,
77 long style
= wxSB_HORIZONTAL
)
78 : wxScrollBar(parent
, id
, pos
, size
, style
)
82 virtual bool CanBeOutsideClientArea() const { return true; }
86 // ----------------------------------------------------------------------------
88 // ----------------------------------------------------------------------------
90 // we can't use wxWindowNative here as it won't be expanded inside the macro
91 #if defined(__WXMSW__)
92 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowMSW
)
93 #elif defined(__WXGTK__)
94 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowGTK
)
95 #elif defined(__WXOSX_OR_COCOA__)
96 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowMac
)
97 #elif defined(__WXMGL__)
98 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowMGL
)
99 #elif defined(__WXDFB__)
100 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowDFB
)
101 #elif defined(__WXX11__)
102 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowX11
)
103 #elif defined(__WXPM__)
104 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowOS2
)
107 BEGIN_EVENT_TABLE(wxWindow
, wxWindowNative
)
108 EVT_SIZE(wxWindow::OnSize
)
110 #if wxUSE_ACCEL || wxUSE_MENUS
111 EVT_KEY_DOWN(wxWindow::OnKeyDown
)
112 #endif // wxUSE_ACCEL
115 EVT_CHAR(wxWindow::OnChar
)
116 EVT_KEY_UP(wxWindow::OnKeyUp
)
117 #endif // wxUSE_MENUS
119 EVT_PAINT(wxWindow::OnPaint
)
120 EVT_NC_PAINT(wxWindow::OnNcPaint
)
121 EVT_ERASE_BACKGROUND(wxWindow::OnErase
)
124 // ----------------------------------------------------------------------------
126 // ----------------------------------------------------------------------------
128 void wxWindow::Init()
132 m_scrollbarHorz
= NULL
;
133 #endif // wxUSE_SCROLLBAR
137 m_renderer
= wxTheme::Get()->GetRenderer();
139 m_oldSize
.x
= wxDefaultCoord
;
140 m_oldSize
.y
= wxDefaultCoord
;
143 bool wxWindow::Create(wxWindow
*parent
,
148 const wxString
& name
)
150 // Get default border
151 wxBorder border
= GetBorder(style
);
152 style
&= ~wxBORDER_MASK
;
155 long actualStyle
= style
;
157 // we add wxCLIP_CHILDREN to get the same ("natural") behaviour under MSW
158 // as under the other platforms
159 actualStyle
|= wxCLIP_CHILDREN
;
161 actualStyle
&= ~wxVSCROLL
;
162 actualStyle
&= ~wxHSCROLL
;
165 // without this, borders (non-client areas in general) are not repainted
166 // correctly when resizing; apparently, native NC areas are fully repainted
167 // even without this style by MSW, but wxUniv implements client area
168 // itself, so it doesn't work correctly for us
170 // FIXME: this is very expensive, we need to fix the (commented-out) code
171 // in OnSize() instead
172 actualStyle
|= wxFULL_REPAINT_ON_RESIZE
;
175 if ( !wxWindowNative::Create(parent
, id
, pos
, size
, actualStyle
, name
) )
178 // Set full style again, including those we didn't want present
179 // when calling the base window Create().
180 wxWindowBase::SetWindowStyleFlag(style
);
182 // if we allow or should always have a vertical scrollbar, make it
183 if ( style
& wxVSCROLL
|| style
& wxALWAYS_SHOW_SB
)
185 #if wxUSE_TWO_WINDOWS
186 SetInsertIntoMain( true );
189 m_scrollbarVert
= new wxWindowScrollBar(this, wxID_ANY
,
190 wxDefaultPosition
, wxDefaultSize
,
192 #endif // wxUSE_SCROLLBAR
193 #if wxUSE_TWO_WINDOWS
194 SetInsertIntoMain( false );
198 // if we should allow a horizontal scrollbar, make it
199 if ( style
& wxHSCROLL
)
201 #if wxUSE_TWO_WINDOWS
202 SetInsertIntoMain( true );
205 m_scrollbarHorz
= new wxWindowScrollBar(this, wxID_ANY
,
206 wxDefaultPosition
, wxDefaultSize
,
208 #endif // wxUSE_SCROLLBAR
209 #if wxUSE_TWO_WINDOWS
210 SetInsertIntoMain( false );
215 if (m_scrollbarHorz
|| m_scrollbarVert
)
218 PositionScrollbars();
220 #endif // wxUSE_SCROLLBAR
225 wxWindow::~wxWindow()
230 // clear pointers to scrollbar before deleting the children: they are
231 // children and so will be deleted by DestroyChildren() call below and if
232 // any code using the scrollbars would be called in the process or from
233 // ~wxWindowBase, the app would crash:
234 m_scrollbarVert
= m_scrollbarHorz
= NULL
;
237 // we have to destroy our children before we're destroyed because our
238 // children suppose that we're of type wxWindow, not just wxWindowNative,
239 // and so bad things may happen if they're deleted from the base class dtor
240 // as by then we're not a wxWindow any longer and wxUniv-specific virtual
241 // functions can't be called
245 // ----------------------------------------------------------------------------
247 // ----------------------------------------------------------------------------
249 void wxWindow::SetBackground(const wxBitmap
& bitmap
,
254 m_alignBgBitmap
= alignment
;
255 m_stretchBgBitmap
= stretch
;
258 const wxBitmap
& wxWindow::GetBackgroundBitmap(int *alignment
,
259 wxStretch
*stretch
) const
261 if ( m_bitmapBg
.Ok() )
264 *alignment
= m_alignBgBitmap
;
266 *stretch
= m_stretchBgBitmap
;
272 // ----------------------------------------------------------------------------
274 // ----------------------------------------------------------------------------
276 // the event handlers executed when the window must be repainted
277 void wxWindow::OnNcPaint(wxNcPaintEvent
& WXUNUSED(event
))
281 // get the window rect
282 wxRect
rect(GetSize());
285 // if the scrollbars are outside the border, we must adjust the rect to
287 if ( !m_renderer
->AreScrollbarsInsideBorder() )
289 wxScrollBar
*scrollbar
= GetScrollbar(wxVERTICAL
);
291 rect
.width
-= scrollbar
->GetSize().x
;
293 scrollbar
= GetScrollbar(wxHORIZONTAL
);
295 rect
.height
-= scrollbar
->GetSize().y
;
297 #endif // wxUSE_SCROLLBAR
299 // get the DC and draw the border on it
301 DoDrawBorder(dc
, rect
);
305 void wxWindow::OnPaint(wxPaintEvent
& event
)
309 // it is a native control which paints itself
314 // get the DC to use and create renderer on it
316 wxControlRenderer
renderer(this, dc
, m_renderer
);
323 // the event handler executed when the window background must be painted
324 void wxWindow::OnErase(wxEraseEvent
& event
)
333 DoDrawBackground(*event
.GetDC());
336 // if we have both scrollbars, we also have a square in the corner between
337 // them which we must paint
338 if ( m_scrollbarVert
&& m_scrollbarHorz
)
340 wxSize size
= GetSize();
341 wxRect rectClient
= GetClientRect(),
342 rectBorder
= m_renderer
->GetBorderDimensions(GetBorder());
345 rectCorner
.x
= rectClient
.GetRight() + 1;
346 rectCorner
.y
= rectClient
.GetBottom() + 1;
347 rectCorner
.SetRight(size
.x
- rectBorder
.width
);
348 rectCorner
.SetBottom(size
.y
- rectBorder
.height
);
350 if ( GetUpdateRegion().Contains(rectCorner
) )
352 m_renderer
->DrawScrollCorner(*event
.GetDC(), rectCorner
);
355 #endif // wxUSE_SCROLLBAR
358 bool wxWindow::DoDrawBackground(wxDC
& dc
)
362 wxSize size
= GetSize(); // Why not GetClientSize() ?
366 rect
.height
= size
.y
;
368 wxWindow
* const parent
= GetParent();
369 if ( HasTransparentBackground() && !UseBgCol() && parent
)
371 // DirectFB paints the parent first, then its child windows, so by
372 // the time this code is called, parent's background was already
373 // drawn and there's no point in (imperfectly!) duplicating the work
376 wxASSERT( !IsTopLevel() );
378 wxPoint pos
= GetPosition();
380 AdjustForParentClientOrigin( pos
.x
, pos
.y
, 0 );
382 // Adjust DC logical origin
383 wxCoord org_x
, org_y
, x
, y
;
384 dc
.GetLogicalOrigin( &org_x
, &org_y
);
387 dc
.SetLogicalOrigin( x
, y
);
393 // Let parent draw the background
394 parent
->EraseBackground( dc
, rect
);
396 // Restore DC logical origin
397 dc
.SetLogicalOrigin( org_x
, org_y
);
402 // Draw background ourselves
403 EraseBackground( dc
, rect
);
409 void wxWindow::EraseBackground(wxDC
& dc
, const wxRect
& rect
)
411 if ( GetBackgroundBitmap().Ok() )
413 // Get the bitmap and the flags
416 wxBitmap bmp
= GetBackgroundBitmap(&alignment
, &stretch
);
417 wxControlRenderer::DrawBitmap(dc
, bmp
, rect
, alignment
, stretch
);
421 // Just fill it with bg colour if no bitmap
423 m_renderer
->DrawBackground(dc
, wxTHEME_BG_COLOUR(this),
424 rect
, GetStateFlags());
428 void wxWindow::DoDrawBorder(wxDC
& dc
, const wxRect
& rect
)
430 // draw outline unless the update region is enitrely inside it in which
431 // case we don't need to do it
432 #if 0 // doesn't seem to work, why?
433 if ( wxRegion(rect
).Contains(GetUpdateRegion().GetBox()) != wxInRegion
)
436 m_renderer
->DrawBorder(dc
, GetBorder(), rect
, GetStateFlags());
440 void wxWindow::DoDraw(wxControlRenderer
* WXUNUSED(renderer
))
444 void wxWindow::Refresh(bool eraseBackground
, const wxRect
*rect
)
446 wxRect rectClient
; // the same rectangle in client coordinates
447 wxPoint origin
= GetClientAreaOrigin();
449 wxSize size
= GetClientSize();
453 // the rectangle passed as argument is in client coordinates
456 // don't refresh anything beyond the client area (scrollbars for
458 if ( rectClient
.GetRight() > size
.x
)
459 rectClient
.SetRight(size
.x
);
460 if ( rectClient
.GetBottom() > size
.y
)
461 rectClient
.SetBottom(size
.y
);
464 else // refresh the entire client area
466 // x,y is already set to 0 by default
467 rectClient
.SetSize(size
);
470 // convert refresh rectangle to window coordinates:
471 wxRect
rectWin(rectClient
);
472 rectWin
.Offset(origin
);
475 #ifdef WXDEBUG_REFRESH
476 static bool s_refreshDebug
= false;
477 if ( s_refreshDebug
)
480 dc
.SetBrush(*wxCYAN_BRUSH
);
481 dc
.SetPen(*wxTRANSPARENT_PEN
);
482 dc
.DrawRectangle(rectWin
);
484 // under Unix we use "--sync" X option for this
485 #if defined(__WXMSW__) && !defined(__WXMICROWIN__)
490 #endif // WXDEBUG_REFRESH
492 wxWindowNative::Refresh(eraseBackground
, &rectWin
);
494 // Refresh all sub controls if any.
495 wxWindowList
& children
= GetChildren();
496 for ( wxWindowList::iterator i
= children
.begin(); i
!= children
.end(); ++i
)
498 wxWindow
*child
= *i
;
499 // only refresh subcontrols if they are visible:
500 if ( child
->IsTopLevel() || !child
->IsShown() || child
->IsFrozen() )
503 // ...and when the subcontrols are in the update region:
504 wxRect
childrect(child
->GetRect());
505 childrect
.Intersect(rectClient
);
506 if ( childrect
.IsEmpty() )
509 // refresh the subcontrol now:
510 childrect
.Offset(-child
->GetPosition());
511 // NB: We must call wxWindowNative version because we need to refresh
512 // the entire control, not just its client area, and this is why we
513 // don't account for child client area origin here neither. Also
514 // note that we don't pass eraseBackground to the child, but use
515 // true instead: this is because we can't be sure that
516 // eraseBackground=false is safe for children as well and not only
518 child
->wxWindowNative::Refresh(eraseBackground
, &childrect
);
522 // ----------------------------------------------------------------------------
524 // ----------------------------------------------------------------------------
526 bool wxWindow::Enable(bool enable
)
528 if ( !wxWindowNative::Enable(enable
) )
531 // disabled window can't keep focus
532 if ( FindFocus() == this && GetParent() != NULL
)
534 GetParent()->SetFocus();
539 // a window with renderer is drawn by ourselves and it has to be
540 // refreshed to reflect its new status
547 bool wxWindow::IsFocused() const
549 return FindFocus() == this;
552 bool wxWindow::IsPressed() const
557 bool wxWindow::IsDefault() const
562 bool wxWindow::IsCurrent() const
567 bool wxWindow::SetCurrent(bool doit
)
569 if ( doit
== m_isCurrent
)
574 if ( CanBeHighlighted() )
580 int wxWindow::GetStateFlags() const
584 flags
|= wxCONTROL_DISABLED
;
586 // the following states are only possible if our application is active - if
587 // it is not, even our default/focused controls shouldn't appear as such
588 if ( wxTheApp
->IsActive() )
591 flags
|= wxCONTROL_CURRENT
;
593 flags
|= wxCONTROL_FOCUSED
;
595 flags
|= wxCONTROL_PRESSED
;
597 flags
|= wxCONTROL_ISDEFAULT
;
603 // ----------------------------------------------------------------------------
605 // ----------------------------------------------------------------------------
607 void wxWindow::OnSize(wxSizeEvent
& event
)
612 if ( m_scrollbarVert
|| m_scrollbarHorz
)
614 PositionScrollbars();
616 #endif // wxUSE_SCROLLBAR
618 #if 0 // ndef __WXMSW__
619 // Refresh the area (strip) previously occupied by the border
621 if ( !HasFlag(wxFULL_REPAINT_ON_RESIZE
) && IsShown() )
623 // This code assumes that wxSizeEvent.GetSize() returns
624 // the area of the entire window, not just the client
626 wxSize newSize
= event
.GetSize();
628 if (m_oldSize
.x
== wxDefaultCoord
&& m_oldSize
.y
== wxDefaultCoord
)
634 if (HasFlag( wxSIMPLE_BORDER
))
636 if (newSize
.y
> m_oldSize
.y
)
640 rect
.width
= m_oldSize
.x
;
641 rect
.y
= m_oldSize
.y
-2;
643 Refresh( true, &rect
);
645 else if (newSize
.y
< m_oldSize
.y
)
651 rect
.width
= newSize
.x
;
652 wxWindowNative::Refresh( true, &rect
);
655 if (newSize
.x
> m_oldSize
.x
)
659 rect
.height
= m_oldSize
.y
;
660 rect
.x
= m_oldSize
.x
-2;
662 Refresh( true, &rect
);
664 else if (newSize
.x
< m_oldSize
.x
)
670 rect
.height
= newSize
.y
;
671 wxWindowNative::Refresh( true, &rect
);
675 if (HasFlag( wxSUNKEN_BORDER
) || HasFlag( wxRAISED_BORDER
) || HasFlag( wxBORDER_THEME
))
677 if (newSize
.y
> m_oldSize
.y
)
681 rect
.width
= m_oldSize
.x
;
682 rect
.y
= m_oldSize
.y
-4;
684 Refresh( true, &rect
);
686 else if (newSize
.y
< m_oldSize
.y
)
692 rect
.width
= newSize
.x
;
693 wxWindowNative::Refresh( true, &rect
);
696 if (newSize
.x
> m_oldSize
.x
)
700 rect
.height
= m_oldSize
.y
;
701 rect
.x
= m_oldSize
.x
-4;
703 Refresh( true, &rect
);
705 else if (newSize
.x
< m_oldSize
.x
)
711 rect
.height
= newSize
.y
;
712 wxWindowNative::Refresh( true, &rect
);
721 wxSize
wxWindow::DoGetBestSize() const
723 return AdjustSize(DoGetBestClientSize());
726 wxSize
wxWindow::DoGetBestClientSize() const
728 return wxWindowNative::DoGetBestSize();
731 wxSize
wxWindow::DoGetBorderSize() const
733 return AdjustSize(wxSize(0, 0));
736 wxSize
wxWindow::AdjustSize(const wxSize
& size
) const
740 m_renderer
->AdjustSize(&sz
, this);
744 wxPoint
wxWindow::GetClientAreaOrigin() const
746 wxPoint pt
= wxWindowBase::GetClientAreaOrigin();
748 #if wxUSE_TWO_WINDOWS
751 pt
+= m_renderer
->GetBorderDimensions(GetBorder()).GetPosition();
757 void wxWindow::DoGetClientSize(int *width
, int *height
) const
759 // if it is a native window, we assume it handles the scrollbars itself
760 // too - and if it doesn't, there is not much we can do
763 wxWindowNative::DoGetClientSize(width
, height
);
769 wxWindowNative::DoGetClientSize(&w
, &h
);
771 // we assume that the scrollbars are positioned correctly (by a previous
772 // call to PositionScrollbars()) here
776 rectBorder
= m_renderer
->GetBorderDimensions(GetBorder());
781 // in any case, take account of the scrollbar
782 if ( m_scrollbarVert
)
783 w
-= m_scrollbarVert
->GetSize().x
;
784 #endif // wxUSE_SCROLLBAR
786 // account for the left and right borders
787 *width
= w
- rectBorder
.x
- rectBorder
.width
;
789 // we shouldn't return invalid width
797 if ( m_scrollbarHorz
)
798 h
-= m_scrollbarHorz
->GetSize().y
;
799 #endif // wxUSE_SCROLLBAR
801 *height
= h
- rectBorder
.y
- rectBorder
.height
;
803 // we shouldn't return invalid height
809 void wxWindow::DoSetClientSize(int width
, int height
)
811 // take into account the borders
812 wxRect rectBorder
= m_renderer
->GetBorderDimensions(GetBorder());
813 width
+= rectBorder
.x
;
814 height
+= rectBorder
.y
;
816 // and the scrollbars (as they may be offset into the border, use the
817 // scrollbar position, not size - this supposes that PositionScrollbars()
818 // had been called before)
819 wxSize size
= GetSize();
821 if ( m_scrollbarVert
)
822 width
+= size
.x
- m_scrollbarVert
->GetPosition().x
;
823 #endif // wxUSE_SCROLLBAR
824 width
+= rectBorder
.width
;
827 if ( m_scrollbarHorz
)
828 height
+= size
.y
- m_scrollbarHorz
->GetPosition().y
;
829 #endif // wxUSE_SCROLLBAR
830 height
+= rectBorder
.height
;
832 wxWindowNative::DoSetClientSize(width
, height
);
835 wxHitTest
wxWindow::DoHitTest(wxCoord x
, wxCoord y
) const
837 wxHitTest ht
= wxWindowNative::DoHitTest(x
, y
);
840 if ( ht
== wxHT_WINDOW_INSIDE
)
842 if ( m_scrollbarVert
&& x
>= m_scrollbarVert
->GetPosition().x
)
844 // it can still be changed below because it may also be the corner
845 ht
= wxHT_WINDOW_VERT_SCROLLBAR
;
848 if ( m_scrollbarHorz
&& y
>= m_scrollbarHorz
->GetPosition().y
)
850 ht
= ht
== wxHT_WINDOW_VERT_SCROLLBAR
? wxHT_WINDOW_CORNER
851 : wxHT_WINDOW_HORZ_SCROLLBAR
;
854 #endif // wxUSE_SCROLLBAR
859 // ----------------------------------------------------------------------------
860 // scrolling: we implement it entirely ourselves except for ScrollWindow()
861 // function which is supposed to be (efficiently) implemented by the native
863 // ----------------------------------------------------------------------------
865 void wxWindow::RefreshScrollbars()
868 if ( m_scrollbarHorz
)
869 m_scrollbarHorz
->Refresh();
871 if ( m_scrollbarVert
)
872 m_scrollbarVert
->Refresh();
873 #endif // wxUSE_SCROLLBAR
876 void wxWindow::PositionScrollbars()
879 // do not use GetClientSize/Rect as it relies on the scrollbars being
880 // correctly positioned
882 wxSize size
= GetSize();
883 wxBorder border
= GetBorder();
884 wxRect rectBorder
= m_renderer
->GetBorderDimensions(border
);
885 bool inside
= m_renderer
->AreScrollbarsInsideBorder();
887 int height
= m_scrollbarHorz
? m_scrollbarHorz
->GetSize().y
: 0;
888 int width
= m_scrollbarVert
? m_scrollbarVert
->GetSize().x
: 0;
891 if ( m_scrollbarVert
)
893 rectBar
.x
= size
.x
- width
;
895 rectBar
.x
-= rectBorder
.width
;
896 rectBar
.width
= width
;
899 rectBar
.y
+= rectBorder
.y
;
900 rectBar
.height
= size
.y
- height
;
902 rectBar
.height
-= rectBorder
.y
+ rectBorder
.height
;
904 m_scrollbarVert
->SetSize(rectBar
, wxSIZE_NO_ADJUSTMENTS
);
907 if ( m_scrollbarHorz
)
909 rectBar
.y
= size
.y
- height
;
911 rectBar
.y
-= rectBorder
.height
;
912 rectBar
.height
= height
;
915 rectBar
.x
+= rectBorder
.x
;
916 rectBar
.width
= size
.x
- width
;
918 rectBar
.width
-= rectBorder
.x
+ rectBorder
.width
;
920 m_scrollbarHorz
->SetSize(rectBar
, wxSIZE_NO_ADJUSTMENTS
);
924 #endif // wxUSE_SCROLLBAR
927 void wxWindow::SetScrollbar(int orient
,
934 wxASSERT_MSG( pageSize
<= range
,
935 wxT("page size can't be greater than range") );
937 bool hasClientSizeChanged
= false;
938 wxScrollBar
*scrollbar
= GetScrollbar(orient
);
939 if ( range
&& (pageSize
< range
) )
944 #if wxUSE_TWO_WINDOWS
945 SetInsertIntoMain( true );
947 scrollbar
= new wxWindowScrollBar(this, wxID_ANY
,
948 wxDefaultPosition
, wxDefaultSize
,
949 orient
& wxVERTICAL
? wxSB_VERTICAL
951 #if wxUSE_TWO_WINDOWS
952 SetInsertIntoMain( false );
954 if ( orient
& wxVERTICAL
)
955 m_scrollbarVert
= scrollbar
;
957 m_scrollbarHorz
= scrollbar
;
959 // the client area diminished as we created a scrollbar
960 hasClientSizeChanged
= true;
962 PositionScrollbars();
964 else if ( GetWindowStyle() & wxALWAYS_SHOW_SB
)
966 // we might have disabled it before
970 scrollbar
->SetScrollbar(pos
, pageSize
, range
, pageSize
, refresh
);
972 else // no range means no scrollbar
976 // wxALWAYS_SHOW_SB only applies to the vertical scrollbar
977 if ( (orient
& wxVERTICAL
) && (GetWindowStyle() & wxALWAYS_SHOW_SB
) )
979 // just disable the scrollbar
980 scrollbar
->SetScrollbar(pos
, pageSize
, range
, pageSize
, refresh
);
981 scrollbar
->Disable();
983 else // really remove the scrollbar
987 if ( orient
& wxVERTICAL
)
988 m_scrollbarVert
= NULL
;
990 m_scrollbarHorz
= NULL
;
992 // the client area increased as we removed a scrollbar
993 hasClientSizeChanged
= true;
995 // the size of the remaining scrollbar must be adjusted
996 if ( m_scrollbarHorz
|| m_scrollbarVert
)
998 PositionScrollbars();
1004 // give the window a chance to relayout
1005 if ( hasClientSizeChanged
)
1007 #if wxUSE_TWO_WINDOWS
1008 wxWindowNative::SetSize( GetSize() );
1010 wxSizeEvent
event(GetSize());
1011 (void)GetEventHandler()->ProcessEvent(event
);
1015 wxUnusedVar(orient
);
1017 wxUnusedVar(pageSize
);
1019 wxUnusedVar(refresh
);
1020 #endif // wxUSE_SCROLLBAR
1023 void wxWindow::SetScrollPos(int orient
, int pos
, bool WXUNUSED(refresh
))
1026 wxScrollBar
*scrollbar
= GetScrollbar(orient
);
1029 scrollbar
->SetThumbPosition(pos
);
1031 // VZ: I think we can safely ignore this as we always refresh it
1032 // automatically whenever the value chanegs
1038 wxUnusedVar(orient
);
1040 #endif // wxUSE_SCROLLBAR
1043 int wxWindow::GetScrollPos(int orient
) const
1046 wxScrollBar
*scrollbar
= GetScrollbar(orient
);
1047 return scrollbar
? scrollbar
->GetThumbPosition() : 0;
1049 wxUnusedVar(orient
);
1051 #endif // wxUSE_SCROLLBAR
1054 int wxWindow::GetScrollThumb(int orient
) const
1057 wxScrollBar
*scrollbar
= GetScrollbar(orient
);
1058 return scrollbar
? scrollbar
->GetThumbSize() : 0;
1060 wxUnusedVar(orient
);
1062 #endif // wxUSE_SCROLLBAR
1065 int wxWindow::GetScrollRange(int orient
) const
1068 wxScrollBar
*scrollbar
= GetScrollbar(orient
);
1069 return scrollbar
? scrollbar
->GetRange() : 0;
1071 wxUnusedVar(orient
);
1073 #endif // wxUSE_SCROLLBAR
1076 void wxWindow::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
1078 // use native scrolling when available and do it in generic way
1082 wxWindowNative::ScrollWindow(dx
, dy
, rect
);
1086 // before scrolling it, ensure that we don't have any unpainted areas
1093 r
= ScrollNoRefresh(dx
, 0, rect
);
1094 Refresh(true /* erase bkgnd */, &r
);
1099 r
= ScrollNoRefresh(0, dy
, rect
);
1100 Refresh(true /* erase bkgnd */, &r
);
1103 // scroll children accordingly:
1104 wxPoint
offset(dx
, dy
);
1106 for (wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
1107 node
; node
= node
->GetNext())
1109 wxWindow
*child
= node
->GetData();
1111 if ( child
== m_scrollbarVert
|| child
== m_scrollbarHorz
)
1113 #endif // wxUSE_SCROLLBAR
1115 // VS: Scrolling children has non-trivial semantics. If rect=NULL then
1116 // it is easy: we scroll all children. Otherwise it gets
1118 // 1. if scrolling in one direction only, scroll only
1119 // those children that intersect shaft defined by the rectangle
1120 // and scrolling direction
1121 // 2. if scrolling in both axes, scroll all children
1123 bool shouldMove
= false;
1125 if ( rect
&& (dx
* dy
== 0 /* moving in only one of x, y axis */) )
1127 wxRect childRect
= child
->GetRect();
1128 if ( dx
== 0 && (childRect
.GetLeft() <= rect
->GetRight() ||
1129 childRect
.GetRight() >= rect
->GetLeft()) )
1133 else if ( dy
== 0 && (childRect
.GetTop() <= rect
->GetBottom() ||
1134 childRect
.GetBottom() >= rect
->GetTop()) )
1138 // else: child outside of scrolling shaft, don't move
1140 else // scrolling in both axes or rect=NULL
1146 child
->Move(child
->GetPosition() + offset
, wxSIZE_ALLOW_MINUS_ONE
);
1148 #endif // wxX11/!wxX11
1151 wxRect
wxWindow::ScrollNoRefresh(int dx
, int dy
, const wxRect
*rectTotal
)
1153 wxASSERT_MSG( !dx
|| !dy
, wxT("can't be used for diag scrolling") );
1155 // the rect to refresh (which we will calculate)
1164 // calculate the part of the window which we can just redraw in the new
1166 wxSize sizeTotal
= rectTotal
? rectTotal
->GetSize() : GetClientSize();
1168 wxLogTrace(wxT("scroll"), wxT("rect is %dx%d, scroll by %d, %d"),
1169 sizeTotal
.x
, sizeTotal
.y
, dx
, dy
);
1171 // the initial and end point of the region we move in client coords
1172 wxPoint ptSource
, ptDest
;
1175 ptSource
= rectTotal
->GetPosition();
1176 ptDest
= rectTotal
->GetPosition();
1179 // the size of this region
1181 size
.x
= sizeTotal
.x
- abs(dx
);
1182 size
.y
= sizeTotal
.y
- abs(dy
);
1183 if ( size
.x
<= 0 || size
.y
<= 0 )
1185 // just redraw everything as nothing of the displayed image will stay
1186 wxLogTrace(wxT("scroll"), wxT("refreshing everything"));
1188 rect
= rectTotal
? *rectTotal
: wxRect(0, 0, sizeTotal
.x
, sizeTotal
.y
);
1190 else // move the part which doesn't change to the new location
1192 // note that when we scroll the canvas in some direction we move the
1193 // block which doesn't need to be refreshed in the opposite direction
1197 // scroll to the right, move to the left
1202 // scroll to the left, move to the right
1208 // scroll down, move up
1213 // scroll up, move down
1218 // we need to hide the caret before moving or it will erase itself at
1219 // the wrong (old) location
1220 wxCaret
*caret
= GetCaret();
1223 #endif // wxUSE_CARET
1226 wxClientDC
dc(this);
1227 wxBitmap
bmp(size
.x
, size
.y
);
1229 dcMem
.SelectObject(bmp
);
1231 dcMem
.Blit(wxPoint(0,0), size
, &dc
, ptSource
1232 #if defined(__WXGTK__) && !defined(wxHAS_WORKING_GTK_DC_BLIT)
1233 + GetClientAreaOrigin()
1234 #endif // broken wxGTK wxDC::Blit
1236 dc
.Blit(ptDest
, size
, &dcMem
, wxPoint(0,0));
1238 wxLogTrace(wxT("scroll"),
1239 wxT("Blit: (%d, %d) of size %dx%d -> (%d, %d)"),
1240 ptSource
.x
, ptSource
.y
,
1242 ptDest
.x
, ptDest
.y
);
1244 // and now repaint the uncovered area
1246 // FIXME: We repaint the intersection of these rectangles twice - is
1247 // it bad? I don't think so as it is rare to scroll the window
1248 // diagonally anyhow and so adding extra logic to compute
1249 // rectangle intersection is probably not worth the effort
1251 rect
.x
= ptSource
.x
;
1252 rect
.y
= ptSource
.y
;
1258 // refresh the area along the right border
1259 rect
.x
+= size
.x
+ dx
;
1264 // refresh the area along the left border
1268 rect
.height
= sizeTotal
.y
;
1270 wxLogTrace(wxT("scroll"), wxT("refreshing (%d, %d)-(%d, %d)"),
1272 rect
.GetRight() + 1, rect
.GetBottom() + 1);
1279 // refresh the area along the bottom border
1280 rect
.y
+= size
.y
+ dy
;
1285 // refresh the area along the top border
1289 rect
.width
= sizeTotal
.x
;
1291 wxLogTrace(wxT("scroll"), wxT("refreshing (%d, %d)-(%d, %d)"),
1293 rect
.GetRight() + 1, rect
.GetBottom() + 1);
1299 #endif // wxUSE_CARET
1305 // ----------------------------------------------------------------------------
1306 // accelerators and menu hot keys
1307 // ----------------------------------------------------------------------------
1310 // the last window over which Alt was pressed (used by OnKeyUp)
1311 wxWindow
*wxWindow::ms_winLastAltPress
= NULL
;
1312 #endif // wxUSE_MENUS
1314 #if wxUSE_ACCEL || wxUSE_MENUS
1316 void wxWindow::OnKeyDown(wxKeyEvent
& event
)
1319 int key
= event
.GetKeyCode();
1320 if ( !event
.ControlDown() && (key
== WXK_ALT
|| key
== WXK_F10
) )
1322 ms_winLastAltPress
= this;
1324 // it can't be an accel anyhow
1328 ms_winLastAltPress
= NULL
;
1329 #endif // wxUSE_MENUS
1332 for ( wxWindow
*win
= this; win
; win
= win
->GetParent() )
1334 int command
= win
->GetAcceleratorTable()->GetCommand(event
);
1335 if ( command
!= -1 )
1337 wxCommandEvent
eventCmd(wxEVT_COMMAND_MENU_SELECTED
, command
);
1338 if ( win
->GetEventHandler()->ProcessEvent(eventCmd
) )
1340 // skip "event.Skip()" below
1345 if ( win
->IsTopLevel() )
1347 // try the frame menu bar
1349 wxFrame
*frame
= wxDynamicCast(win
, wxFrame
);
1352 wxMenuBar
*menubar
= frame
->GetMenuBar();
1353 if ( menubar
&& menubar
->ProcessAccelEvent(event
) )
1355 // skip "event.Skip()" below
1359 #endif // wxUSE_MENUS
1362 // if it wasn't in a menu, try to find a button
1363 if ( command
!= -1 )
1365 wxWindow
* child
= win
->FindWindow(command
);
1366 if ( child
&& wxDynamicCast(child
, wxButton
) )
1368 wxCommandEvent
eventCmd(wxEVT_COMMAND_BUTTON_CLICKED
, command
);
1369 eventCmd
.SetEventObject(child
);
1370 if ( child
->GetEventHandler()->ProcessEvent(eventCmd
) )
1372 // skip "event.Skip()" below
1377 #endif // wxUSE_BUTTON
1379 // don't propagate accels from the child frame to the parent one
1383 #endif // wxUSE_ACCEL
1388 #endif // wxUSE_ACCEL
1392 wxMenuBar
*wxWindow::GetParentFrameMenuBar() const
1394 for ( const wxWindow
*win
= this; win
; win
= win
->GetParent() )
1396 if ( win
->IsTopLevel() )
1398 wxFrame
*frame
= wxDynamicCast(win
, wxFrame
);
1401 return frame
->GetMenuBar();
1404 // don't look further - we don't want to return the menubar of the
1413 void wxWindow::OnChar(wxKeyEvent
& event
)
1415 if ( event
.AltDown() && !event
.ControlDown() )
1417 int key
= event
.GetKeyCode();
1419 wxMenuBar
*menubar
= GetParentFrameMenuBar();
1422 int item
= menubar
->FindNextItemForAccel(-1, key
);
1425 menubar
->PopupMenu((size_t)item
);
1427 // skip "event.Skip()" below
1433 // if Return was pressed, see if there's a default button to activate
1434 if ( !event
.HasModifiers() && event
.GetKeyCode() == WXK_RETURN
)
1437 tlw
= wxDynamicCast(wxGetTopLevelParent(this), wxTopLevelWindow
);
1440 wxButton
*btn
= wxDynamicCast(tlw
->GetDefaultItem(), wxButton
);
1443 wxCommandEvent
evt(wxEVT_COMMAND_BUTTON_CLICKED
, btn
->GetId());
1444 evt
.SetEventObject(btn
);
1455 void wxWindow::OnKeyUp(wxKeyEvent
& event
)
1457 int key
= event
.GetKeyCode();
1458 if ( !event
.HasModifiers() && (key
== WXK_ALT
|| key
== WXK_F10
) )
1460 // only process Alt release specially if there were no other key
1461 // presses since Alt had been pressed and if both events happened in
1463 if ( ms_winLastAltPress
== this )
1465 wxMenuBar
*menubar
= GetParentFrameMenuBar();
1466 if ( menubar
&& this != menubar
)
1468 menubar
->SelectMenu(0);
1477 // in any case reset it
1478 ms_winLastAltPress
= NULL
;
1481 #endif // wxUSE_MENUS
1483 // ----------------------------------------------------------------------------
1484 // MSW-specific section
1485 // ----------------------------------------------------------------------------
1489 #include "wx/msw/private.h"
1491 WXLRESULT
wxWindow::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
1493 if ( message
== WM_NCHITTEST
)
1495 // the windows which contain the other windows should let the mouse
1496 // events through, otherwise a window inside a static box would
1497 // never get any events at all
1498 if ( IsStaticBox() )
1500 return HTTRANSPARENT
;
1504 return wxWindowNative::MSWWindowProc(message
, wParam
, lParam
);