1 /////////////////////////////////////////////////////////////////////////////
2 // Name: generic/tbarsmpl.cpp
3 // Purpose: wxToolBarSimple
4 // Author: Julian Smart
5 // Modified by: VZ on 14.12.99 during wxToolBarSimple reorganization
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "tbarsmpl.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
31 #if wxUSE_TOOLBAR_SIMPLE
34 #include "wx/settings.h"
35 #include "wx/window.h"
36 #include "wx/dcclient.h"
37 #include "wx/dcmemory.h"
40 #include "wx/tbarsmpl.h"
42 // ----------------------------------------------------------------------------
44 // ----------------------------------------------------------------------------
46 class WXDLLEXPORT wxToolBarToolSimple
: public wxToolBarToolBase
49 wxToolBarToolSimple(wxToolBarSimple
*tbar
,
51 const wxBitmap
& bitmap1
,
52 const wxBitmap
& bitmap2
,
55 const wxString
& shortHelpString
,
56 const wxString
& longHelpString
)
57 : wxToolBarToolBase(tbar
, id
, bitmap1
, bitmap2
, toggle
,
58 clientData
, shortHelpString
, longHelpString
)
62 wxToolBarToolSimple(wxToolBarSimple
*tbar
, wxControl
*control
)
63 : wxToolBarToolBase(tbar
, control
)
67 void SetSize(const wxSize
& size
)
73 wxCoord
GetWidth() const { return m_width
; }
74 wxCoord
GetHeight() const { return m_height
; }
82 // ----------------------------------------------------------------------------
84 // ----------------------------------------------------------------------------
86 IMPLEMENT_DYNAMIC_CLASS(wxToolBarSimple
, wxToolBarBase
)
88 #if !wxUSE_TOOLBAR_NATIVE || defined(__WXUNIVERSAL__)
89 #include "wx/toolbar.h"
91 IMPLEMENT_DYNAMIC_CLASS(wxToolBar
, wxToolBarSimple
)
94 BEGIN_EVENT_TABLE(wxToolBarSimple
, wxToolBarBase
)
95 EVT_SIZE(wxToolBarSimple::OnSize
)
96 EVT_SCROLL(wxToolBarSimple::OnScroll
)
97 EVT_PAINT(wxToolBarSimple::OnPaint
)
98 EVT_KILL_FOCUS(wxToolBarSimple::OnKillFocus
)
99 EVT_MOUSE_EVENTS(wxToolBarSimple::OnMouseEvent
)
102 // ============================================================================
104 // ============================================================================
106 // ----------------------------------------------------------------------------
107 // tool bar tools creation
108 // ----------------------------------------------------------------------------
110 wxToolBarToolBase
*wxToolBarSimple::CreateTool(int id
,
111 const wxBitmap
& bitmap1
,
112 const wxBitmap
& bitmap2
,
114 wxObject
*clientData
,
115 const wxString
& shortHelpString
,
116 const wxString
& longHelpString
)
118 return new wxToolBarToolSimple(this, id
, bitmap1
, bitmap2
, toggle
,
119 clientData
, shortHelpString
, longHelpString
);
122 wxToolBarToolBase
*wxToolBarSimple::CreateTool(wxControl
*control
)
124 return new wxToolBarToolSimple(this, control
);
127 // ----------------------------------------------------------------------------
128 // wxToolBarSimple creation
129 // ----------------------------------------------------------------------------
131 void wxToolBarSimple::Init()
133 m_currentRowsOrColumns
= 0;
148 m_toolSeparation
= 5;
151 m_defaultHeight
= 15;
153 m_xScrollPixelsPerLine
= 1;
154 m_yScrollPixelsPerLine
= 1;
155 m_xScrollingEnabled
= FALSE
;
156 m_yScrollingEnabled
= FALSE
;
157 m_xScrollPosition
= 0;
158 m_yScrollPosition
= 0;
161 m_xScrollLinesPerPage
= 0;
162 m_yScrollLinesPerPage
= 0;
165 wxToolBarToolBase
*wxToolBarSimple::AddTool(int id
,
166 const wxBitmap
& bitmap
,
167 const wxBitmap
& pushedBitmap
,
171 wxObject
*clientData
,
172 const wxString
& helpString1
,
173 const wxString
& helpString2
)
175 // rememeber the position for DoInsertTool()
179 return wxToolBarBase::AddTool(id
, bitmap
, pushedBitmap
, toggle
,
180 xPos
, yPos
, clientData
,
181 helpString1
, helpString2
);
184 bool wxToolBarSimple::DoInsertTool(size_t WXUNUSED(pos
),
185 wxToolBarToolBase
*toolBase
)
187 wxToolBarToolSimple
*tool
= (wxToolBarToolSimple
*)toolBase
;
189 wxCHECK_MSG( !tool
->IsControl(), FALSE
,
190 _T("generic wxToolBarSimple doesn't support controls") );
193 if ( tool
->m_x
== -1 )
194 tool
->m_x
= m_xMargin
;
197 if ( tool
->m_y
== -1 )
198 tool
->m_y
= m_yMargin
;
200 tool
->SetSize(GetToolSize());
202 if ( tool
->IsButton() )
204 // Calculate reasonable max size in case Layout() not called
205 if ((tool
->m_x
+ tool
->GetBitmap1().GetWidth() + m_xMargin
) > m_maxWidth
)
206 m_maxWidth
= (wxCoord
)((tool
->m_x
+ tool
->GetWidth() + m_xMargin
));
208 if ((tool
->m_y
+ tool
->GetBitmap1().GetHeight() + m_yMargin
) > m_maxHeight
)
209 m_maxHeight
= (wxCoord
)((tool
->m_y
+ tool
->GetHeight() + m_yMargin
));
215 bool wxToolBarSimple::DoDeleteTool(size_t WXUNUSED(pos
),
216 wxToolBarToolBase
*tool
)
218 // VZ: didn't test whether it works, but why not...
226 bool wxToolBarSimple::Create(wxWindow
*parent
,
231 const wxString
& name
)
233 if ( !wxWindow::Create(parent
, id
, pos
, size
, style
, name
) )
236 // Set it to grey (or other 3D face colour)
237 wxSystemSettings settings
;
238 SetBackgroundColour(settings
.GetSystemColour(wxSYS_COLOUR_3DFACE
));
240 if ( GetWindowStyleFlag() & wxTB_VERTICAL
)
245 m_maxRows
= 32000; // a lot
254 m_maxCols
= 32000; // a lot
257 SetCursor(*wxSTANDARD_CURSOR
);
262 wxToolBarSimple::~wxToolBarSimple()
266 bool wxToolBarSimple::Realize()
268 m_currentRowsOrColumns
= 0;
274 int maxToolWidth
= 0;
275 int maxToolHeight
= 0;
277 // Find the maximum tool width and height
278 wxToolBarToolsList::Node
*node
= m_tools
.GetFirst();
281 wxToolBarToolSimple
*tool
= (wxToolBarToolSimple
*)node
->GetData();
282 if ( tool
->GetWidth() > maxToolWidth
)
283 maxToolWidth
= tool
->GetWidth();
284 if (tool
->GetHeight() > maxToolHeight
)
285 maxToolHeight
= tool
->GetHeight();
287 node
= node
->GetNext();
290 int separatorSize
= m_toolSeparation
;
292 node
= m_tools
.GetFirst();
295 wxToolBarToolSimple
*tool
= (wxToolBarToolSimple
*)node
->GetData();
296 if ( tool
->IsSeparator() )
298 if ( GetWindowStyleFlag() & wxTB_HORIZONTAL
)
300 if (m_currentRowsOrColumns
>= m_maxCols
)
301 m_lastY
+= separatorSize
;
303 m_lastX
+= separatorSize
;
307 if (m_currentRowsOrColumns
>= m_maxRows
)
308 m_lastX
+= separatorSize
;
310 m_lastY
+= separatorSize
;
313 else if ( tool
->IsButton() )
315 if ( GetWindowStyleFlag() & wxTB_HORIZONTAL
)
317 if (m_currentRowsOrColumns
>= m_maxCols
)
319 m_currentRowsOrColumns
= 0;
321 m_lastY
+= maxToolHeight
+ m_toolPacking
;
323 tool
->m_x
= (wxCoord
)(m_lastX
+ (maxToolWidth
- tool
->GetWidth())/2.0);
324 tool
->m_y
= (wxCoord
)(m_lastY
+ (maxToolHeight
- tool
->GetHeight())/2.0);
326 m_lastX
+= maxToolWidth
+ m_toolPacking
;
330 if (m_currentRowsOrColumns
>= m_maxRows
)
332 m_currentRowsOrColumns
= 0;
333 m_lastX
+= (maxToolWidth
+ m_toolPacking
);
336 tool
->m_x
= (wxCoord
)(m_lastX
+ (maxToolWidth
- tool
->GetWidth())/2.0);
337 tool
->m_y
= (wxCoord
)(m_lastY
+ (maxToolHeight
- tool
->GetHeight())/2.0);
339 m_lastY
+= maxToolHeight
+ m_toolPacking
;
341 m_currentRowsOrColumns
++;
345 // TODO: support the controls
348 if (m_lastX
> m_maxWidth
)
349 m_maxWidth
= m_lastX
;
350 if (m_lastY
> m_maxHeight
)
351 m_maxHeight
= m_lastY
;
353 node
= node
->GetNext();
356 if ( GetWindowStyleFlag() & wxTB_HORIZONTAL
)
357 m_maxWidth
+= maxToolWidth
;
359 m_maxHeight
+= maxToolHeight
;
361 m_maxWidth
+= m_xMargin
;
362 m_maxHeight
+= m_yMargin
;
367 // ----------------------------------------------------------------------------
369 // ----------------------------------------------------------------------------
371 void wxToolBarSimple::OnPaint (wxPaintEvent
& WXUNUSED(event
))
376 static int count
= 0;
377 // Prevent reentry of OnPaint which would cause wxMemoryDC errors.
382 for ( wxToolBarToolsList::Node
*node
= m_tools
.GetFirst();
384 node
= node
->GetNext() )
386 wxToolBarToolBase
*tool
= node
->GetData();
387 if ( tool
->IsButton() )
394 void wxToolBarSimple::OnSize (wxSizeEvent
& WXUNUSED(event
))
396 #if wxUSE_CONSTRAINTS
404 void wxToolBarSimple::OnKillFocus(wxFocusEvent
& WXUNUSED(event
))
406 OnMouseEnter(m_pressedTool
= m_currentTool
= -1);
409 void wxToolBarSimple::OnMouseEvent(wxMouseEvent
& event
)
412 event
.GetPosition(&x
, &y
);
413 wxToolBarToolSimple
*tool
= (wxToolBarToolSimple
*)FindToolForPosition(x
, y
);
415 if (event
.LeftDown())
426 if (m_currentTool
> -1)
428 if (event
.LeftIsDown())
429 SpringUpButton(m_currentTool
);
436 if (!event
.IsButton())
438 if ( tool
->GetId() != m_currentTool
)
440 // If the left button is kept down and moved over buttons,
441 // press those buttons.
442 if ( event
.LeftIsDown() && tool
->IsEnabled() )
444 SpringUpButton(m_currentTool
);
446 if ( tool
->CanBeToggled() )
454 m_currentTool
= tool
->GetId();
455 OnMouseEnter(m_currentTool
);
460 // Left button pressed.
461 if ( event
.LeftDown() && tool
->IsEnabled() )
463 if ( tool
->CanBeToggled() )
470 else if (event
.RightDown())
472 OnRightClick(tool
->GetId(), x
, y
);
475 // Left Button Released. Only this action confirms selection.
476 // If the button is enabled and it is not a toggle tool and it is
477 // in the pressed state, then raise the button and call OnLeftClick.
479 if ( event
.LeftUp() && tool
->IsEnabled() )
481 // Pass the OnLeftClick event to tool
482 if ( !OnLeftClick(tool
->GetId(), tool
->IsToggled()) &&
483 tool
->CanBeToggled() )
485 // If it was a toggle, and OnLeftClick says No Toggle allowed,
486 // then change it back
494 // ----------------------------------------------------------------------------
496 // ----------------------------------------------------------------------------
498 void wxToolBarSimple::DrawTool(wxToolBarToolBase
*tool
)
504 void wxToolBarSimple::DrawTool(wxDC
& dc
, wxToolBarToolBase
*toolBase
)
506 wxToolBarToolSimple
*tool
= (wxToolBarToolSimple
*)toolBase
;
511 wxPen
dark_grey_pen(wxColour( 85,85,85 ), 1, wxSOLID
);
512 wxPen
white_pen("WHITE", 1, wxSOLID
);
513 wxPen
black_pen("BLACK", 1, wxSOLID
);
515 wxBitmap bitmap
= tool
->GetBitmap();
520 if (bitmap
.GetPalette())
521 memDC
.SetPalette(*bitmap
.GetPalette());
524 int ax
= (int)tool
->m_x
,
526 bx
= (int)(tool
->m_x
+tool
->GetWidth()),
527 by
= (int)(tool
->m_y
+tool
->GetHeight());
529 memDC
.SelectObject(bitmap
);
530 if (m_windowStyle
& wxTB_3DBUTTONS
)
532 dc
.SetClippingRegion(ax
, ay
, (bx
-ax
+1), (by
-ay
+1));
533 dc
.Blit((ax
+1), (ay
+1), (bx
-ax
-2), (by
-ay
-2), &memDC
, 0, 0);
534 wxPen
* old_pen
= & dc
.GetPen();
535 dc
.SetPen( white_pen
);
536 dc
.DrawLine(ax
,(by
-1),ax
,ay
);
537 dc
.DrawLine(ax
,ay
,(bx
-1),ay
);
538 dc
.SetPen( dark_grey_pen
);
539 dc
.DrawLine((bx
-1),(ay
+1),(bx
-1),(by
-1));
540 dc
.DrawLine((bx
-1),(by
-1),(ax
+1),(by
-1));
541 dc
.SetPen( black_pen
);
542 dc
.DrawLine(bx
,ay
,bx
,by
);
543 dc
.DrawLine(bx
,by
,ax
,by
);
544 dc
.SetPen( *old_pen
);
545 dc
.DestroyClippingRegion();
546 // Select bitmap out of the DC
550 dc
.Blit(tool
->m_x
, tool
->m_y
,
551 bitmap
.GetWidth(), bitmap
.GetHeight(),
554 memDC
.SelectObject(wxNullBitmap
);
556 memDC
.SetPalette(wxNullPalette
);
559 // No second bitmap, so draw a thick line around bitmap, or invert if mono
560 else if ( tool
->IsToggled() )
562 bool drawBorder
= FALSE
;
563 #ifdef __X__ // X doesn't invert properly on colour
564 drawBorder
= wxColourDisplay();
565 #else // Inversion works fine under Windows
571 memDC
.SelectObject(tool
->GetBitmap1());
572 dc
.Blit(tool
->m_x
, tool
->m_y
, tool
->GetWidth(), tool
->GetHeight(),
573 &memDC
, 0, 0, wxSRC_INVERT
);
574 memDC
.SelectObject(wxNullBitmap
);
578 bitmap
= tool
->GetBitmap1();
580 if (m_windowStyle
& wxTB_3DBUTTONS
)
582 int ax
= (int)tool
->m_x
,
584 bx
= (int)(tool
->m_x
+tool
->GetWidth()),
585 by
= (int)(tool
->m_y
+tool
->GetHeight());
587 memDC
.SelectObject(bitmap
);
588 dc
.SetClippingRegion(ax
, ay
, (bx
-ax
+1), (by
-ay
+1));
589 dc
.Blit((ax
+2), (ay
+2), (bx
-ax
-2), (by
-ay
-2), &memDC
, 0, 0);
590 wxPen
* old_pen
= & dc
.GetPen();
591 dc
.SetPen( black_pen
);
592 dc
.DrawLine(ax
,(by
-1),ax
,ay
);
593 dc
.DrawLine(ax
,ay
,(bx
-1),ay
);
594 dc
.SetPen( dark_grey_pen
);
595 dc
.DrawLine((ax
+1),(by
-2),(ax
+1),(ay
+1));
596 dc
.DrawLine((ax
+1),(ay
+1),(bx
-2),(ay
+1));
597 dc
.SetPen( white_pen
);
598 dc
.DrawLine(bx
,ay
,bx
,by
);
599 dc
.DrawLine(bx
,by
,ax
,by
);
600 dc
.SetPen( *old_pen
);
601 dc
.DestroyClippingRegion();
602 memDC
.SelectObject(wxNullBitmap
);
606 wxCoord x
= tool
->m_x
;
607 wxCoord y
= tool
->m_y
;
608 wxCoord w
= bitmap
.GetWidth();
609 wxCoord h
= bitmap
.GetHeight();
610 wxPen
thick_black_pen("BLACK", 3, wxSOLID
);
612 memDC
.SelectObject(bitmap
);
613 dc
.SetClippingRegion(tool
->m_x
, tool
->m_y
, w
, h
);
614 dc
.Blit(tool
->m_x
, tool
->m_y
, w
, h
,
616 dc
.SetPen(thick_black_pen
);
617 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
618 dc
.DrawRectangle(x
, y
, w
-1, h
-1);
619 dc
.DestroyClippingRegion();
620 memDC
.SelectObject(wxNullBitmap
);
626 // ----------------------------------------------------------------------------
628 // ----------------------------------------------------------------------------
630 void wxToolBarSimple::SetRows(int nRows
)
632 wxCHECK_RET( nRows
!= 0, _T("max number of rows must be > 0") );
634 m_maxCols
= (GetToolsCount() + nRows
- 1) / nRows
;
640 wxToolBarToolBase
*wxToolBarSimple::FindToolForPosition(wxCoord x
,
643 wxToolBarToolsList::Node
*node
= m_tools
.GetFirst();
646 wxToolBarToolSimple
*tool
= (wxToolBarToolSimple
*)node
->GetData();
647 if ((x
>= tool
->m_x
) && (y
>= tool
->m_y
) &&
648 (x
<= (tool
->m_x
+ tool
->GetWidth())) &&
649 (y
<= (tool
->m_y
+ tool
->GetHeight())))
654 node
= node
->GetNext();
657 return (wxToolBarToolBase
*)NULL
;
660 // ----------------------------------------------------------------------------
661 // tool state change handlers
662 // ----------------------------------------------------------------------------
664 void wxToolBarSimple::DoEnableTool(wxToolBarToolBase
*tool
,
665 bool WXUNUSED(enable
))
670 void wxToolBarSimple::DoToggleTool(wxToolBarToolBase
*tool
,
671 bool WXUNUSED(toggle
))
676 void wxToolBarSimple::DoSetToggle(wxToolBarToolBase
* WXUNUSED(tool
),
677 bool WXUNUSED(toggle
))
682 // Okay, so we've left the tool we're in ... we must check if the tool we're
683 // leaving was a 'sprung push button' and if so, spring it back to the up
685 void wxToolBarSimple::SpringUpButton(int id
)
687 wxToolBarToolBase
*tool
= FindById(id
);
689 if ( tool
&& tool
->CanBeToggled() )
691 if (tool
->IsToggled())
698 // ----------------------------------------------------------------------------
699 // scrolling implementation
700 // ----------------------------------------------------------------------------
703 * pixelsPerUnitX/pixelsPerUnitY: number of pixels per unit (e.g. pixels per text line)
704 * noUnitsX/noUnitsY: : no. units per scrollbar
706 void wxToolBarSimple::SetScrollbars (int pixelsPerUnitX
, int pixelsPerUnitY
,
707 int noUnitsX
, int noUnitsY
,
710 m_xScrollPixelsPerLine
= pixelsPerUnitX
;
711 m_yScrollPixelsPerLine
= pixelsPerUnitY
;
712 m_xScrollLines
= noUnitsX
;
713 m_yScrollLines
= noUnitsY
;
718 // Recalculate scroll bar range and position
719 if (m_xScrollLines
> 0)
721 m_xScrollPosition
= xPos
;
722 SetScrollPos (wxHORIZONTAL
, m_xScrollPosition
, TRUE
);
726 SetScrollbar(wxHORIZONTAL
, 0, 0, 0, FALSE
);
727 m_xScrollPosition
= 0;
730 if (m_yScrollLines
> 0)
732 m_yScrollPosition
= yPos
;
733 SetScrollPos (wxVERTICAL
, m_yScrollPosition
, TRUE
);
737 SetScrollbar(wxVERTICAL
, 0, 0, 0, FALSE
);
738 m_yScrollPosition
= 0;
743 #if 0 //def __WXMSW__
744 ::UpdateWindow ((HWND
) GetHWND());
748 void wxToolBarSimple::OnScroll(wxScrollEvent
& event
)
750 int orient
= event
.GetOrientation();
752 int nScrollInc
= CalcScrollInc(event
);
756 if (orient
== wxHORIZONTAL
)
758 int newPos
= m_xScrollPosition
+ nScrollInc
;
759 SetScrollPos(wxHORIZONTAL
, newPos
, TRUE
);
763 int newPos
= m_yScrollPosition
+ nScrollInc
;
764 SetScrollPos(wxVERTICAL
, newPos
, TRUE
);
767 if (orient
== wxHORIZONTAL
)
769 if (m_xScrollingEnabled
)
770 ScrollWindow(-m_xScrollPixelsPerLine
* nScrollInc
, 0, NULL
);
776 if (m_yScrollingEnabled
)
777 ScrollWindow(0, -m_yScrollPixelsPerLine
* nScrollInc
, NULL
);
782 if (orient
== wxHORIZONTAL
)
784 m_xScrollPosition
+= nScrollInc
;
788 m_yScrollPosition
+= nScrollInc
;
793 int wxToolBarSimple::CalcScrollInc(wxScrollEvent
& event
)
795 int pos
= event
.GetPosition();
796 int orient
= event
.GetOrientation();
799 if (event
.GetEventType() == wxEVT_SCROLL_TOP
)
801 if (orient
== wxHORIZONTAL
)
802 nScrollInc
= - m_xScrollPosition
;
804 nScrollInc
= - m_yScrollPosition
;
806 if (event
.GetEventType() == wxEVT_SCROLL_BOTTOM
)
808 if (orient
== wxHORIZONTAL
)
809 nScrollInc
= m_xScrollLines
- m_xScrollPosition
;
811 nScrollInc
= m_yScrollLines
- m_yScrollPosition
;
813 if (event
.GetEventType() == wxEVT_SCROLL_LINEUP
)
817 if (event
.GetEventType() == wxEVT_SCROLL_LINEDOWN
)
821 if (event
.GetEventType() == wxEVT_SCROLL_PAGEUP
)
823 if (orient
== wxHORIZONTAL
)
824 nScrollInc
= -GetScrollPageSize(wxHORIZONTAL
);
826 nScrollInc
= -GetScrollPageSize(wxVERTICAL
);
828 if (event
.GetEventType() == wxEVT_SCROLL_PAGEDOWN
)
830 if (orient
== wxHORIZONTAL
)
831 nScrollInc
= GetScrollPageSize(wxHORIZONTAL
);
833 nScrollInc
= GetScrollPageSize(wxVERTICAL
);
835 if ((event
.GetEventType() == wxEVT_SCROLL_THUMBTRACK
) ||
836 (event
.GetEventType() == wxEVT_SCROLL_THUMBRELEASE
))
838 if (orient
== wxHORIZONTAL
)
839 nScrollInc
= pos
- m_xScrollPosition
;
841 nScrollInc
= pos
- m_yScrollPosition
;
844 if (orient
== wxHORIZONTAL
)
847 GetClientSize(&w
, &h
);
849 int nMaxWidth
= m_xScrollLines
*m_xScrollPixelsPerLine
;
850 int noPositions
= (int) ( ((nMaxWidth
- w
)/(float)m_xScrollPixelsPerLine
) + 0.5 );
854 if ( (m_xScrollPosition
+ nScrollInc
) < 0 )
855 nScrollInc
= -m_xScrollPosition
; // As -ve as we can go
856 else if ( (m_xScrollPosition
+ nScrollInc
) > noPositions
)
857 nScrollInc
= noPositions
- m_xScrollPosition
; // As +ve as we can go
864 GetClientSize(&w
, &h
);
866 int nMaxHeight
= m_yScrollLines
*m_yScrollPixelsPerLine
;
867 int noPositions
= (int) ( ((nMaxHeight
- h
)/(float)m_yScrollPixelsPerLine
) + 0.5 );
871 if ( (m_yScrollPosition
+ nScrollInc
) < 0 )
872 nScrollInc
= -m_yScrollPosition
; // As -ve as we can go
873 else if ( (m_yScrollPosition
+ nScrollInc
) > noPositions
)
874 nScrollInc
= noPositions
- m_yScrollPosition
; // As +ve as we can go
880 // Adjust the scrollbars - new version.
881 void wxToolBarSimple::AdjustScrollbars()
884 GetClientSize(&w
, &h
);
886 // Recalculate scroll bar range and position
887 if (m_xScrollLines
> 0)
889 int nMaxWidth
= m_xScrollLines
*m_xScrollPixelsPerLine
;
890 int newRange
= (int) ( ((nMaxWidth
)/(float)m_xScrollPixelsPerLine
) + 0.5 );
894 m_xScrollPosition
= wxMin(newRange
, m_xScrollPosition
);
896 // Calculate page size i.e. number of scroll units you get on the
897 // current client window
898 int noPagePositions
= (int) ( (w
/(float)m_xScrollPixelsPerLine
) + 0.5 );
899 if (noPagePositions
< 1)
902 SetScrollbar(wxHORIZONTAL
, m_xScrollPosition
, noPagePositions
, newRange
);
903 SetScrollPageSize(wxHORIZONTAL
, noPagePositions
);
905 if (m_yScrollLines
> 0)
907 int nMaxHeight
= m_yScrollLines
*m_yScrollPixelsPerLine
;
908 int newRange
= (int) ( ((nMaxHeight
)/(float)m_yScrollPixelsPerLine
) + 0.5 );
912 m_yScrollPosition
= wxMin(newRange
, m_yScrollPosition
);
914 // Calculate page size i.e. number of scroll units you get on the
915 // current client window
916 int noPagePositions
= (int) ( (h
/(float)m_yScrollPixelsPerLine
) + 0.5 );
917 if (noPagePositions
< 1)
920 SetScrollbar(wxVERTICAL
, m_yScrollPosition
, noPagePositions
, newRange
);
921 SetScrollPageSize(wxVERTICAL
, noPagePositions
);
925 // Prepare the DC by translating it according to the current scroll position
926 void wxToolBarSimple::PrepareDC(wxDC
& dc
)
928 dc
.SetDeviceOrigin(- m_xScrollPosition
* m_xScrollPixelsPerLine
, - m_yScrollPosition
* m_yScrollPixelsPerLine
);
931 void wxToolBarSimple::GetScrollPixelsPerUnit (int *x_unit
, int *y_unit
) const
933 *x_unit
= m_xScrollPixelsPerLine
;
934 *y_unit
= m_yScrollPixelsPerLine
;
937 int wxToolBarSimple::GetScrollPageSize(int orient
) const
939 if ( orient
== wxHORIZONTAL
)
940 return m_xScrollLinesPerPage
;
942 return m_yScrollLinesPerPage
;
945 void wxToolBarSimple::SetScrollPageSize(int orient
, int pageSize
)
947 if ( orient
== wxHORIZONTAL
)
948 m_xScrollLinesPerPage
= pageSize
;
950 m_yScrollLinesPerPage
= pageSize
;
954 * Scroll to given position (scroll position, not pixel position)
956 void wxToolBarSimple::Scroll (int x_pos
, int y_pos
)
959 ViewStart (&old_x
, &old_y
);
960 if (((x_pos
== -1) || (x_pos
== old_x
)) && ((y_pos
== -1) || (y_pos
== old_y
)))
965 m_xScrollPosition
= x_pos
;
966 SetScrollPos (wxHORIZONTAL
, x_pos
, TRUE
);
970 m_yScrollPosition
= y_pos
;
971 SetScrollPos (wxVERTICAL
, y_pos
, TRUE
);
975 #if 0 //def __WXMSW__
976 UpdateWindow ((HWND
) GetHWND());
980 void wxToolBarSimple::EnableScrolling (bool x_scroll
, bool y_scroll
)
982 m_xScrollingEnabled
= x_scroll
;
983 m_yScrollingEnabled
= y_scroll
;
986 void wxToolBarSimple::GetVirtualSize (int *x
, int *y
) const
988 *x
= m_xScrollPixelsPerLine
* m_xScrollLines
;
989 *y
= m_yScrollPixelsPerLine
* m_yScrollLines
;
992 // Where the current view starts from
993 void wxToolBarSimple::ViewStart (int *x
, int *y
) const
995 *x
= m_xScrollPosition
;
996 *y
= m_yScrollPosition
;
999 #endif // wxUSE_TOOLBAR_SIMPLE