office-gobmx/basctl/source/basicide/tbxctl.cxx
Oliver Bolte de1f39f970 INTEGRATION: CWS pchfix02 (1.12.100); FILE MERGED
2006/09/01 17:16:22 kaib 1.12.100.1: #i68856# Added header markers and pch files
2006-09-16 23:30:11 +00:00

286 lines
9.9 KiB
C++

/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: tbxctl.cxx,v $
*
* $Revision: 1.13 $
*
* last change: $Author: obo $ $Date: 2006-09-17 00:30:11 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library 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 for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_basctl.hxx"
#include <ide_pch.hxx>
#define _BASIDE_POPUPWINDOWTBX
#include <tbxctl.hxx>
#include <svx/svxids.hrc>
#include <iderid.hxx>
#include <tbxctl.hrc>
#include <idetemp.hxx>
#include <sfx2/imagemgr.hxx>
#include <svtools/aeitem.hxx>
#include <vcl/toolbox.hxx>
using namespace ::com::sun::star::uno;
static ::rtl::OUString aSubToolBarResName( RTL_CONSTASCII_USTRINGPARAM( "private:resource/toolbar/insertcontrolsbar" ) );
SFX_IMPL_TOOLBOX_CONTROL( TbxControls, SfxAllEnumItem )
/*************************************************************************
|*
|* WorkWindow Alignment
|*
\************************************************************************/
/*
IMPL_LINK( PopupWindowTbx, SelectHdl, void*, EMPTYARG )
{
if ( IsInPopupMode() )
EndPopupMode();
aSelectLink.Call( &aTbx.GetToolBox() );
return 0;
}
PopupWindowTbx::PopupWindowTbx( USHORT nId, WindowAlign eAlign,
ResId aRIdWin, ResId aRIdTbx,
SfxBindings& rBind ) :
SfxPopupWindow ( nId, aRIdWin, rBind ),
aTbx ( this, GetBindings(), aRIdTbx )
{
FreeResource();
aTbx.Initialize();
ToolBox& rBox = aTbx.GetToolBox();
rBox.SetAlign( eAlign );
if( eAlign == WINDOWALIGN_LEFT )
SetText( String() );
Size aSize = aTbx.CalcWindowSizePixel();
rBox.SetSizePixel( aSize );
SetOutputSizePixel( aSize );
aSelectLink = rBox.GetSelectHdl();
rBox.SetSelectHdl( LINK( this, PopupWindowTbx, SelectHdl ) );
}
SfxPopupWindow* PopupWindowTbx::Clone() const
{
return new PopupWindowTbx( GetId(), aTbx.GetAlign(),
IDEResId( RID_TBXCONTROLS ),
IDEResId( RID_TOOLBOX ),
(SfxBindings&) GetBindings() );
}
void PopupWindowTbx::PopupModeEnd()
{
aTbx.GetToolBox().EndSelection();
SfxPopupWindow::PopupModeEnd();
}
void PopupWindowTbx::Update()
{
ToolBox *pBox = &aTbx.GetToolBox();
aTbx.Activate( pBox );
aTbx.Deactivate( pBox );
}
PopupWindowTbx::~PopupWindowTbx()
{
}
*/
/*************************************************************************
|*
|* Klasse fuer Toolbox
|*
\************************************************************************/
TbxControls::TbxControls( USHORT nSlotId, USHORT nId, ToolBox& rTbx ) :
SfxToolBoxControl( nSlotId, nId, rTbx )
{
nLastSlot = USHRT_MAX;
rTbx.SetItemBits( nId, TIB_DROPDOWN | rTbx.GetItemBits( nId ) );
rTbx.Invalidate();
}
/*************************************************************************
|*
|* Wenn man ein PopupWindow erzeugen will
|*
\************************************************************************/
SfxPopupWindowType TbxControls::GetPopupWindowType() const
{
if( nLastSlot == USHRT_MAX )
return(SFX_POPUPWINDOW_ONCLICK);
return(SFX_POPUPWINDOW_ONTIMEOUT);
}
IMPL_STATIC_LINK( TbxControls, StateChangedHdl_Impl, StateChangedInfo*, pStateChangedInfo )
{
try
{
if ( pStateChangedInfo )
{
Reference< ::com::sun::star::frame::XLayoutManager > xLayoutManager( pStateChangedInfo->xLayoutManager );
if ( xLayoutManager.is() )
{
if ( pStateChangedInfo->bDisabled )
{
xLayoutManager->destroyElement( aSubToolBarResName );
}
else
{
xLayoutManager->createElement( aSubToolBarResName );
xLayoutManager->requestElement( aSubToolBarResName );
}
}
}
}
catch ( Exception& )
{
// no update
}
delete pStateChangedInfo;
return 0;
}
void TbxControls::StateChanged( USHORT nSID, SfxItemState eState,
const SfxPoolItem* pState )
{
if ( nSID == SID_CHOOSE_CONTROLS )
{
StateChangedInfo* pStateChangedInfo = new StateChangedInfo;
pStateChangedInfo->xLayoutManager = getLayoutManager();
pStateChangedInfo->bDisabled = eState & SFX_ITEM_DISABLED;
Application::PostUserEvent( STATIC_LINK( 0, TbxControls, StateChangedHdl_Impl ), pStateChangedInfo );
}
if( pState )
{
SfxAllEnumItem* pItem = PTR_CAST(SfxAllEnumItem, pState);
if( pItem )
{
USHORT nLastEnum = pItem->GetValue();
USHORT nTemp = 0;
switch( nLastEnum )
{
case SVX_SNAP_PUSHBUTTON: nTemp = SID_INSERT_PUSHBUTTON; break;
case SVX_SNAP_CHECKBOX: nTemp = SID_INSERT_CHECKBOX; break;
case SVX_SNAP_RADIOBUTTON: nTemp = SID_INSERT_RADIOBUTTON; break;
case SVX_SNAP_SPINBUTTON: nTemp = SID_INSERT_SPINBUTTON; break;
case SVX_SNAP_FIXEDTEXT: nTemp = SID_INSERT_FIXEDTEXT; break;
case SVX_SNAP_GROUPBOX: nTemp = SID_INSERT_GROUPBOX; break;
case SVX_SNAP_LISTBOX: nTemp = SID_INSERT_LISTBOX; break;
case SVX_SNAP_COMBOBOX: nTemp = SID_INSERT_COMBOBOX; break;
case SVX_SNAP_EDIT: nTemp = SID_INSERT_EDIT; break;
case SVX_SNAP_HSCROLLBAR: nTemp = SID_INSERT_HSCROLLBAR; break;
case SVX_SNAP_VSCROLLBAR: nTemp = SID_INSERT_VSCROLLBAR; break;
case SVX_SNAP_PREVIEW: nTemp = SID_INSERT_PREVIEW; break;
case SVX_SNAP_URLBUTTON: nTemp = SID_INSERT_URLBUTTON; break;
case SVX_SNAP_IMAGECONTROL: nTemp = SID_INSERT_IMAGECONTROL; break;
case SVX_SNAP_PROGRESSBAR: nTemp = SID_INSERT_PROGRESSBAR; break;
case SVX_SNAP_HFIXEDLINE: nTemp = SID_INSERT_HFIXEDLINE; break;
case SVX_SNAP_VFIXEDLINE: nTemp = SID_INSERT_VFIXEDLINE; break;
case SVX_SNAP_DATEFIELD: nTemp = SID_INSERT_DATEFIELD; break;
case SVX_SNAP_TIMEFIELD: nTemp = SID_INSERT_TIMEFIELD; break;
case SVX_SNAP_NUMERICFIELD: nTemp = SID_INSERT_NUMERICFIELD; break;
case SVX_SNAP_CURRENCYFIELD: nTemp = SID_INSERT_CURRENCYFIELD; break;
case SVX_SNAP_FORMATTEDFIELD: nTemp = SID_INSERT_FORMATTEDFIELD; break;
case SVX_SNAP_PATTERNFIELD: nTemp = SID_INSERT_PATTERNFIELD; break;
case SVX_SNAP_FILECONTROL: nTemp = SID_INSERT_FILECONTROL; break;
}
if( nTemp )
{
rtl::OUString aSlotURL( RTL_CONSTASCII_USTRINGPARAM( "slot:" ));
aSlotURL += rtl::OUString::valueOf( sal_Int32( nTemp ));
Image aImage = GetImage( m_xFrame,
aSlotURL,
hasBigImages(),
GetToolBox().GetDisplayBackground().GetColor().IsDark() );
ToolBox& rBox = GetToolBox();
rBox.SetItemImage(GetId(), aImage);
nLastSlot = nLastEnum;
}
}
}
SfxToolBoxControl::StateChanged( nSID, eState,pState );
}
void TbxControls::Select( USHORT nModifier )
{
SfxAllEnumItem aItem( SID_CHOOSE_CONTROLS, nLastSlot );
SfxViewFrame* pCurFrame = SfxViewFrame::Current();
DBG_ASSERT( pCurFrame != NULL, "No current view frame!" );
SfxDispatcher* pDispatcher = pCurFrame ? pCurFrame->GetDispatcher() : NULL;
if( pDispatcher )
{
pDispatcher->Execute( SID_CHOOSE_CONTROLS, SFX_CALLMODE_SYNCHRON, &aItem, 0L );
}
}
/*************************************************************************
|*
|* Hier wird das Fenster erzeugt
|* Lage der Toolbox mit GetToolBox() abfragbar
|* rItemRect sind die Screen-Koordinaten
|*
\************************************************************************/
SfxPopupWindow* TbxControls::CreatePopupWindow()
{
if ( GetSlotId() == SID_CHOOSE_CONTROLS )
createAndPositionSubToolBar( aSubToolBarResName );
/*
if (GetId() == SID_CHOOSE_CONTROLS)
{
PopupWindowTbx *pWin =
new PopupWindowTbx( GetId(),
GetToolBox().IsHorizontal() ?
WINDOWALIGN_LEFT : WINDOWALIGN_TOP,
IDEResId( RID_TBXCONTROLS ),
IDEResId( RID_TOOLBOX ),
GetBindings() );
pWin->StartPopupMode(&GetToolBox(), TRUE);
pWin->Update();
pWin->StartSelection();
pWin->Show();
return(pWin);
}
*/
return(0);
}