Files
libreoffice/vcl/source/control/fixbrd.cxx
Rüdiger Timm 33131e8420 INTEGRATION: CWS changefileheader (1.8.248); FILE MERGED
2008/04/01 13:01:34 thb 1.8.248.2: #i85898# Stripping all external header guards
2008/03/28 15:44:40 rt 1.8.248.1: #i87441# Change license header to LPGL v3.
2008-04-11 07:32:27 +00:00

240 lines
6.9 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: fixbrd.cxx,v $
* $Revision: 1.9 $
*
* 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.
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_vcl.hxx"
#ifndef _SV_RC_H
#include <tools/rc.h>
#endif
#include <vcl/event.hxx>
#include <vcl/fixbrd.hxx>
// =======================================================================
void FixedBorder::ImplInit( Window* pParent, WinBits nStyle )
{
mnType = FIXEDBORDER_TYPE_DOUBLEOUT;
mbTransparent = TRUE;
nStyle = ImplInitStyle( nStyle );
Control::ImplInit( pParent, nStyle, NULL );
ImplInitSettings();
}
// -----------------------------------------------------------------------
WinBits FixedBorder::ImplInitStyle( WinBits nStyle )
{
if ( !(nStyle & WB_NOGROUP) )
nStyle |= WB_GROUP;
return nStyle;
}
// -----------------------------------------------------------------------
void FixedBorder::ImplInitSettings()
{
Window* pParent = GetParent();
if ( (pParent->IsChildTransparentModeEnabled() ||
!(pParent->GetStyle() & WB_CLIPCHILDREN) ) &&
!IsControlBackground() && mbTransparent )
{
SetMouseTransparent( TRUE );
EnableChildTransparentMode( TRUE );
SetParentClipMode( PARENTCLIPMODE_NOCLIP );
SetPaintTransparent( TRUE );
SetBackground();
}
else
{
SetMouseTransparent( FALSE );
EnableChildTransparentMode( FALSE );
SetParentClipMode( 0 );
SetPaintTransparent( FALSE );
if ( IsControlBackground() )
SetBackground( GetControlBackground() );
else
SetBackground( pParent->GetBackground() );
}
}
// -----------------------------------------------------------------------
FixedBorder::FixedBorder( Window* pParent, WinBits nStyle ) :
Control( WINDOW_FIXEDBORDER )
{
ImplInit( pParent, nStyle );
}
// -----------------------------------------------------------------------
FixedBorder::FixedBorder( Window* pParent, const ResId& rResId ) :
Control( WINDOW_FIXEDBORDER )
{
rResId.SetRT( RSC_CONTROL );
WinBits nStyle = ImplInitRes( rResId );
ImplInit( pParent, nStyle );
ImplLoadRes( rResId );
if ( !(nStyle & WB_HIDE) )
Show();
}
// -----------------------------------------------------------------------
FixedBorder::~FixedBorder()
{
}
// -----------------------------------------------------------------------
void FixedBorder::ImplDraw( OutputDevice* pDev, ULONG nDrawFlags,
const Point& rPos, const Size& rSize )
{
const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
Rectangle aRect( rPos, rSize );
USHORT nBorderStyle = mnType;
if ( (nDrawFlags & WINDOW_DRAW_MONO) ||
(rStyleSettings.GetOptions() & STYLE_OPTION_MONO) )
nBorderStyle |= FRAME_DRAW_MONO;
/*
// seems only to be used in tools->options around a tabpage (ie, no tabcontrol!)
// as tabpages that are not embedded in a tabcontrol should not be drawn natively
// the fixedborder must also not be drawn (reason was, that it looks too ugly, dialogs must be redesigned)
Window *pWin = pDev->GetOutDevType() == OUTDEV_WINDOW ? (Window*) pDev : NULL;
if( !(nBorderStyle & FRAME_DRAW_MONO) && pWin && pWin->IsNativeControlSupported( CTRL_FIXEDBORDER, PART_ENTIRE_CONTROL ) )
{
ImplControlValue aControlValue;
Point aPt;
Region aCtrlRegion( Rectangle( aPt, GetOutputSizePixel() ) );
ControlState nState = IsEnabled() ? CTRL_STATE_ENABLED : 0;
pWin->DrawNativeControl( CTRL_FIXEDBORDER, PART_ENTIRE_CONTROL, aCtrlRegion, nState,
aControlValue, rtl::OUString() );
}
else
*/
{
DecorationView aDecoView( pDev );
aDecoView.DrawFrame( aRect, nBorderStyle );
}
}
// -----------------------------------------------------------------------
void FixedBorder::Paint( const Rectangle& )
{
ImplDraw( this, 0, Point(), GetOutputSizePixel() );
}
// -----------------------------------------------------------------------
void FixedBorder::Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize,
ULONG nFlags )
{
Point aPos = pDev->LogicToPixel( rPos );
Size aSize = pDev->LogicToPixel( rSize );
pDev->Push();
pDev->SetMapMode();
ImplDraw( pDev, nFlags, aPos, aSize );
pDev->Pop();
}
// -----------------------------------------------------------------------
void FixedBorder::Resize()
{
Invalidate();
}
// -----------------------------------------------------------------------
void FixedBorder::StateChanged( StateChangedType nType )
{
Control::StateChanged( nType );
if ( (nType == STATE_CHANGE_DATA) ||
(nType == STATE_CHANGE_UPDATEMODE) )
{
if ( IsUpdateMode() )
Invalidate();
}
else if ( nType == STATE_CHANGE_STYLE )
SetStyle( ImplInitStyle( GetStyle() ) );
else if ( nType == STATE_CHANGE_CONTROLBACKGROUND )
{
ImplInitSettings();
Invalidate();
}
}
// -----------------------------------------------------------------------
void FixedBorder::DataChanged( const DataChangedEvent& rDCEvt )
{
Control::DataChanged( rDCEvt );
if ( (rDCEvt.GetType() == DATACHANGED_SETTINGS) &&
(rDCEvt.GetFlags() & SETTINGS_STYLE) )
{
ImplInitSettings();
Invalidate();
}
}
// -----------------------------------------------------------------------
void FixedBorder::SetTransparent( BOOL bTransparent )
{
if ( mbTransparent != bTransparent )
{
mbTransparent = bTransparent;
ImplInitSettings();
Invalidate();
}
}
// -----------------------------------------------------------------------
void FixedBorder::SetBorderType( USHORT nType )
{
if ( mnType != nType )
{
mnType = nType;
Invalidate();
}
}