Files correlati : Commento : Spostamento in libraries delle librerie esterne di Campo per una maggiore pulizia e organizzazione git-svn-id: svn://10.65.10.50/branches/R_10_00@24150 c028cbd2-c16b-5b4b-a496-9718f37d4682
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: dyntbarhnd.cpp
|
|
// Purpose: cbDynToolBarDimHandler implementation.
|
|
// Author: Aleksandras Gluchovas
|
|
// Modified by:
|
|
// Created: 23/01/99
|
|
// RCS-ID: $Id: dyntbarhnd.cpp 35650 2005-09-23 12:56:45Z MR $
|
|
// Copyright: (c) Aleksandras Gluchovas
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// For compilers that support precompilation, includes "wx/wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/wx.h"
|
|
#endif
|
|
|
|
#include "wx/fl/dyntbarhnd.h"
|
|
/***** Implementation for class cbDynToolBarDimHandler *****/
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS( cbDynToolBarDimHandler, cbBarDimHandlerBase )
|
|
|
|
void cbDynToolBarDimHandler::OnChangeBarState(cbBarInfo* WXUNUSED(pBar), int WXUNUSED(newState) )
|
|
{
|
|
// nothing
|
|
}
|
|
|
|
void cbDynToolBarDimHandler::OnResizeBar( cbBarInfo* pBar,
|
|
const wxSize& given,
|
|
wxSize& preferred )
|
|
{
|
|
wxASSERT( pBar->mpBarWnd ); // DBG:: should be present
|
|
|
|
wxDynamicToolBar* pTBar = (wxDynamicToolBar*)pBar->mpBarWnd;
|
|
|
|
pTBar->GetPreferredDim( given, preferred );
|
|
}
|
|
|