8e08b761b0
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11170 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
32 lines
848 B
C++
32 lines
848 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: No names yet.
|
|
// Purpose: Contrib. demo
|
|
// Author: Aleksandras Gluchovas
|
|
// Modified by:
|
|
// Created: 23/01/99
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) Aleksandras Gluchovas
|
|
// Licence: wxWindows license
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __DYNTBARHND_G__
|
|
#define __DYNTBARHND_G__
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface "dyntbarhnd.h"
|
|
#endif
|
|
|
|
#include "wx/fl/controlbar.h"
|
|
#include "wx/fl/dyntbar.h"
|
|
|
|
class cbDynToolBarDimHandler : public cbBarDimHandlerBase
|
|
{
|
|
DECLARE_DYNAMIC_CLASS( cbDynToolBarDimHandler )
|
|
public:
|
|
void OnChangeBarState(cbBarInfo* pBar, int newState );
|
|
void OnResizeBar( cbBarInfo* pBar, const wxSize& given, wxSize& preferred );
|
|
};
|
|
|
|
#endif /* __DYNTBARHND_G__ */
|
|
|