office-gobmx/framework/inc/uielement/statusbar.hxx
Rüdiger Timm 2c32b3766a INTEGRATION: CWS changefileheader (1.4.20); FILE MERGED
2008/04/01 10:57:58 thb 1.4.20.2: #i85898# Stripping all external header guards
2008/03/28 15:34:57 rt 1.4.20.1: #i87441# Change license header to LPGL v3.
2008-04-11 06:42:11 +00:00

79 lines
3 KiB
C++

/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2008 by Sun Microsystems, Inc.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: statusbar.hxx,v $
* $Revision: 1.5 $
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#ifndef __FRAMEWORK_UIELEMENT_STATUSBAR_HXX_
#define __FRAMEWORK_UIELEMENT_STATUSBAR_HXX_
//_________________________________________________________________________________________________________________
// my own includes
//_________________________________________________________________________________________________________________
#include <uielement/statusbarmanager.hxx>
//_________________________________________________________________________________________________________________
// interface includes
//_________________________________________________________________________________________________________________
//_________________________________________________________________________________________________________________
// other includes
//_________________________________________________________________________________________________________________
#include <vcl/status.hxx>
namespace framework
{
class FrameworkStatusBar : public StatusBar
{
public:
FrameworkStatusBar( Window* pParent,
WinBits nWinBits );
virtual ~FrameworkStatusBar();
void SetStatusBarManager( StatusBarManager* pStatusBarManager );
virtual void StateChanged( StateChangedType nType );
virtual void DataChanged( const DataChangedEvent& rDCEvt );
virtual void UserDraw(const UserDrawEvent& rUDEvt);
virtual void Command( const CommandEvent &rEvt );
virtual void MouseMove( const MouseEvent& rMEvt );
virtual void MouseButtonDown( const MouseEvent& rMEvt );
virtual void MouseButtonUp( const MouseEvent& rMEvt );
private:
StatusBarManager* m_pMgr;
sal_Bool m_bShow : 1,
m_bLock : 1;
};
}
#endif // __FRAMEWORK_UIELEMENT_STATUSBAR_HXX_