General makefiles to be added later. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1876 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
26 lines
750 B
C++
26 lines
750 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__
|
|
|
|
#include "controlbar.h"
|
|
#include "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 |