Corrections to position and size for toolbar.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14395 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2002-02-24 20:42:20 +00:00
parent c08a4f0068
commit d1017acfc3
2 changed files with 14 additions and 2 deletions

View File

@@ -96,13 +96,18 @@ void wxFrame::PositionMenuBar()
// the menubar is positioned above the client size, hence the negative // the menubar is positioned above the client size, hence the negative
// y coord // y coord
wxCoord heightMbar = m_frameMenuBar->GetSize().y; wxCoord heightMbar = m_frameMenuBar->GetSize().y;
wxCoord heightTbar = 0;
// In between sits the toolbar
if (m_frameToolBar)
heightTbar = m_frameToolBar->GetSize().y;
m_frameMenuBar->SetSize(0, m_frameMenuBar->SetSize(0,
#ifdef __WXPM__ // FIXME -- remove this, make wxOS2/Univ behave as #ifdef __WXPM__ // FIXME -- remove this, make wxOS2/Univ behave as
// the rest of the world!!! // the rest of the world!!!
GetClientSize().y - heightMbar, GetClientSize().y - heightMbar,
#else #else
-heightMbar, - heightMbar - heightTbar,
#endif #endif
GetClientSize().x, heightMbar); GetClientSize().x, heightMbar);
} }
@@ -191,7 +196,8 @@ wxPoint wxFrame::GetClientAreaOrigin() const
} }
#endif // wxUSE_MENUS #endif // wxUSE_MENUS
#if wxUSE_TOOLBAR // This is done in wxFrameBase already
#if 0 // wxUSE_TOOLBAR
if ( m_frameToolBar ) if ( m_frameToolBar )
{ {
if ( m_frameToolBar->GetWindowStyleFlag() & wxTB_VERTICAL ) if ( m_frameToolBar->GetWindowStyleFlag() & wxTB_VERTICAL )

View File

@@ -165,6 +165,10 @@ void wxToolBar::OnPaint(wxPaintEvent &event)
{ {
wxPaintDC dc(this); wxPaintDC dc(this);
wxSize clientSize = GetClientSize();
dc.SetPen( *wxBLACK_PEN );
dc.DrawLine( 0,0, clientSize.x,0 );
for ( wxToolBarToolsList::Node *node = m_tools.GetFirst(); for ( wxToolBarToolsList::Node *node = m_tools.GetFirst();
node; node;
node = node->GetNext() ) node = node->GetNext() )
@@ -201,6 +205,8 @@ bool wxToolBar::Realize()
x += m_defaultWidth + 6; x += m_defaultWidth + 6;
} }
SetSize( x+16, m_defaultHeight + 14 );
return TRUE; return TRUE;
} }