2000-09-18 16:07:07 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 08:14:36 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 08:14:36 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 08:14:36 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 08:14:36 +00:00
|
|
|
* 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.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 08:14:36 +00:00
|
|
|
* 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).
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 08:14:36 +00:00
|
|
|
* 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.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 11:22:35 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_vcl.hxx"
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
#include <tools/ref.hxx>
|
|
|
|
|
|
|
|
#ifndef _SV_RC_H
|
2004-01-06 13:18:29 +00:00
|
|
|
#include <tools/rc.h>
|
2000-09-18 16:07:07 +00:00
|
|
|
#endif
|
2007-06-27 19:34:50 +00:00
|
|
|
#include <vcl/svdata.hxx>
|
|
|
|
#include <vcl/svapp.hxx>
|
|
|
|
#include <vcl/event.hxx>
|
|
|
|
#include <vcl/tabpage.hxx>
|
|
|
|
#include <vcl/tabctrl.hxx>
|
2007-11-26 15:42:46 +00:00
|
|
|
#include <vcl/bitmapex.hxx>
|
2003-04-24 15:32:38 +00:00
|
|
|
#include <com/sun/star/accessibility/XAccessible.hpp>
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2003-12-01 12:40:57 +00:00
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2002-08-19 15:01:07 +00:00
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
// =======================================================================
|
|
|
|
|
|
|
|
void TabPage::ImplInit( Window* pParent, WinBits nStyle )
|
|
|
|
{
|
|
|
|
if ( !(nStyle & WB_NODIALOGCONTROL) )
|
|
|
|
nStyle |= WB_DIALOGCONTROL;
|
|
|
|
|
|
|
|
Window::ImplInit( pParent, nStyle, NULL );
|
|
|
|
|
|
|
|
ImplInitSettings();
|
2004-05-10 14:50:49 +00:00
|
|
|
|
|
|
|
// if the tabpage is drawn (ie filled) by a native widget, make sure all contols will have transparent background
|
|
|
|
// otherwise they will paint with a wrong background
|
|
|
|
if( IsNativeControlSupported(CTRL_TAB_BODY, PART_ENTIRE_CONTROL) && GetParent() && (GetParent()->GetType() == WINDOW_TABCONTROL) )
|
|
|
|
EnableChildTransparentMode( TRUE );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void TabPage::ImplInitSettings()
|
|
|
|
{
|
|
|
|
Window* pParent = GetParent();
|
|
|
|
if ( pParent->IsChildTransparentModeEnabled() && !IsControlBackground() )
|
|
|
|
{
|
|
|
|
EnableChildTransparentMode( TRUE );
|
|
|
|
SetParentClipMode( PARENTCLIPMODE_NOCLIP );
|
|
|
|
SetPaintTransparent( TRUE );
|
|
|
|
SetBackground();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
EnableChildTransparentMode( FALSE );
|
|
|
|
SetParentClipMode( 0 );
|
|
|
|
SetPaintTransparent( FALSE );
|
|
|
|
|
|
|
|
if ( IsControlBackground() )
|
|
|
|
SetBackground( GetControlBackground() );
|
|
|
|
else
|
|
|
|
SetBackground( pParent->GetBackground() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
TabPage::TabPage( Window* pParent, WinBits nStyle ) :
|
|
|
|
Window( WINDOW_TABPAGE )
|
|
|
|
{
|
|
|
|
ImplInit( pParent, nStyle );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
TabPage::TabPage( Window* pParent, const ResId& rResId ) :
|
|
|
|
Window( WINDOW_TABPAGE )
|
|
|
|
{
|
|
|
|
rResId.SetRT( RSC_TABPAGE );
|
|
|
|
WinBits nStyle = ImplInitRes( rResId );
|
|
|
|
ImplInit( pParent, nStyle );
|
|
|
|
ImplLoadRes( rResId );
|
|
|
|
|
|
|
|
if ( !(nStyle & WB_HIDE) )
|
|
|
|
Show();
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void TabPage::StateChanged( StateChangedType nType )
|
|
|
|
{
|
|
|
|
Window::StateChanged( nType );
|
|
|
|
|
|
|
|
if ( nType == STATE_CHANGE_INITSHOW )
|
|
|
|
{
|
2002-10-18 12:58:20 +00:00
|
|
|
if ( GetSettings().GetStyleSettings().GetAutoMnemonic() )
|
2000-09-18 16:07:07 +00:00
|
|
|
ImplWindowAutoMnemonic( this );
|
2009-08-07 10:16:34 +00:00
|
|
|
// FIXME: no layouting, workaround some clipping issues
|
|
|
|
ImplAdjustNWFSizes();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
else if ( nType == STATE_CHANGE_CONTROLBACKGROUND )
|
|
|
|
{
|
|
|
|
ImplInitSettings();
|
|
|
|
Invalidate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void TabPage::DataChanged( const DataChangedEvent& rDCEvt )
|
|
|
|
{
|
|
|
|
Window::DataChanged( rDCEvt );
|
|
|
|
|
|
|
|
if ( (rDCEvt.GetType() == DATACHANGED_SETTINGS) &&
|
|
|
|
(rDCEvt.GetFlags() & SETTINGS_STYLE) )
|
|
|
|
{
|
|
|
|
ImplInitSettings();
|
|
|
|
Invalidate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2006-06-19 18:41:22 +00:00
|
|
|
void TabPage::Paint( const Rectangle& )
|
2004-02-20 07:52:14 +00:00
|
|
|
{
|
2004-05-10 14:50:49 +00:00
|
|
|
// draw native tabpage only inside tabcontrols, standalone tabpages look ugly (due to bad dialog design)
|
|
|
|
if( IsNativeControlSupported(CTRL_TAB_BODY, PART_ENTIRE_CONTROL) && GetParent() && (GetParent()->GetType() == WINDOW_TABCONTROL) )
|
|
|
|
{
|
|
|
|
const ImplControlValue aControlValue( BUTTONVALUE_DONTKNOW, rtl::OUString(), 0 );
|
|
|
|
|
|
|
|
ControlState nState = CTRL_STATE_ENABLED;
|
|
|
|
int part = PART_ENTIRE_CONTROL;
|
|
|
|
if ( !IsEnabled() )
|
|
|
|
nState &= ~CTRL_STATE_ENABLED;
|
|
|
|
if ( HasFocus() )
|
|
|
|
nState |= CTRL_STATE_FOCUSED;
|
|
|
|
Point aPoint;
|
|
|
|
// pass the whole window region to NWF as the tab body might be a gradient or bitmap
|
|
|
|
// that has to be scaled properly, clipping makes sure that we do not paint too much
|
|
|
|
Region aCtrlRegion( Rectangle( aPoint, GetOutputSizePixel() ) );
|
|
|
|
DrawNativeControl( CTRL_TAB_BODY, part, aCtrlRegion, nState,
|
|
|
|
aControlValue, rtl::OUString() );
|
|
|
|
}
|
2004-02-20 07:52:14 +00:00
|
|
|
}
|
|
|
|
|
2007-06-20 09:38:36 +00:00
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
void TabPage::Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, ULONG )
|
|
|
|
{
|
|
|
|
Point aPos = pDev->LogicToPixel( rPos );
|
|
|
|
Size aSize = pDev->LogicToPixel( rSize );
|
|
|
|
|
2007-11-26 15:42:46 +00:00
|
|
|
Wallpaper aWallpaper = GetBackground();
|
|
|
|
if ( !aWallpaper.IsBitmap() )
|
|
|
|
ImplInitSettings();
|
2007-06-20 09:38:36 +00:00
|
|
|
|
|
|
|
pDev->Push();
|
|
|
|
pDev->SetMapMode();
|
|
|
|
pDev->SetLineColor();
|
|
|
|
|
2007-11-26 15:42:46 +00:00
|
|
|
if ( aWallpaper.IsBitmap() )
|
|
|
|
pDev->DrawBitmapEx( aPos, aSize, aWallpaper.GetBitmap() );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( aWallpaper.GetColor() == COL_AUTO )
|
|
|
|
pDev->SetFillColor( GetSettings().GetStyleSettings().GetDialogColor() );
|
|
|
|
else
|
|
|
|
pDev->SetFillColor( aWallpaper.GetColor() );
|
|
|
|
pDev->DrawRect( Rectangle( aPos, aSize ) );
|
|
|
|
}
|
2007-06-20 09:38:36 +00:00
|
|
|
|
|
|
|
pDev->Pop();
|
|
|
|
}
|
|
|
|
|
2004-02-20 07:52:14 +00:00
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
void TabPage::ActivatePage()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void TabPage::DeactivatePage()
|
|
|
|
{
|
|
|
|
}
|
2002-08-19 15:01:07 +00:00
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2003-04-24 15:32:38 +00:00
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > TabPage::CreateAccessible()
|
2002-08-19 15:01:07 +00:00
|
|
|
{
|
2003-06-12 06:51:42 +00:00
|
|
|
// TODO: remove this method (incompatible)
|
2002-08-19 15:01:07 +00:00
|
|
|
|
2003-06-12 06:51:42 +00:00
|
|
|
return Window::CreateAccessible();
|
2002-08-19 15:01:07 +00:00
|
|
|
}
|