Files
libreoffice/sw/source/ui/utlui/tmplctrl.cxx
Rüdiger Timm fa30c9e6dc INTEGRATION: CWS changefileheader (1.7.242); FILE MERGED
2008/04/01 15:59:51 thb 1.7.242.2: #i85898# Stripping all external header guards
2008/03/31 16:59:55 rt 1.7.242.1: #i87441# Change license header to LPGL v3.
2008-04-10 21:11:32 +00:00

178 lines
5.5 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: tmplctrl.cxx,v $
* $Revision: 1.8 $
*
* 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_sw.hxx"
// include ---------------------------------------------------------------
#include <svtools/style.hxx>
#ifndef _MENU_HXX //autogen
#include <vcl/menu.hxx>
#endif
#include <svtools/stritem.hxx>
#include <sfx2/dispatch.hxx>
#ifndef _STATUS_HXX //autogen
#include <vcl/status.hxx>
#endif
#include "wrtsh.hxx"
#include "view.hxx"
#include "swmodule.hxx"
#include "cmdid.h"
#include "docsh.hxx"
#include "tmplctrl.hxx"
// STATIC DATA -----------------------------------------------------------
SFX_IMPL_STATUSBAR_CONTROL( SwTemplateControl, SfxStringItem );
// class TemplatePopup_Impl --------------------------------------------------
class TemplatePopup_Impl : public PopupMenu
{
public:
TemplatePopup_Impl();
USHORT GetCurId() const { return nCurId; }
private:
USHORT nCurId;
virtual void Select();
};
// -----------------------------------------------------------------------
TemplatePopup_Impl::TemplatePopup_Impl() :
PopupMenu(),
nCurId(USHRT_MAX)
{
}
// -----------------------------------------------------------------------
void TemplatePopup_Impl::Select()
{
nCurId = GetCurItemId();
}
// class SvxZoomStatusBarControl ------------------------------------------
SwTemplateControl::SwTemplateControl( USHORT _nSlotId,
USHORT _nId,
StatusBar& rStb ) :
SfxStatusBarControl( _nSlotId, _nId, rStb )
{
}
// -----------------------------------------------------------------------
SwTemplateControl::~SwTemplateControl()
{
}
// -----------------------------------------------------------------------
void SwTemplateControl::StateChanged(
USHORT /*nSID*/, SfxItemState eState, const SfxPoolItem* pState )
{
if( eState != SFX_ITEM_AVAILABLE || pState->ISA( SfxVoidItem ) )
GetStatusBar().SetItemText( GetId(), String() );
else if ( pState->ISA( SfxStringItem ) )
{
sTemplate = ((SfxStringItem*)pState)->GetValue();
GetStatusBar().SetItemText( GetId(), sTemplate );
}
}
// -----------------------------------------------------------------------
void SwTemplateControl::Paint( const UserDrawEvent& )
{
GetStatusBar().SetItemText( GetId(), sTemplate );
}
// -----------------------------------------------------------------------
void SwTemplateControl::Command( const CommandEvent& rCEvt )
{
if ( rCEvt.GetCommand() == COMMAND_CONTEXTMENU &&
GetStatusBar().GetItemText( GetId() ).Len() )
{
CaptureMouse();
TemplatePopup_Impl aPop;
{
SwView* pView = ::GetActiveView();
SwWrtShell* pWrtShell;
if( pView && 0 != (pWrtShell = pView->GetWrtShellPtr()) &&
!pWrtShell->SwCrsrShell::HasSelection()&&
!pWrtShell->IsSelFrmMode() &&
!pWrtShell->IsObjSelected())
{
SfxStyleSheetBasePool* pPool = pView->GetDocShell()->
GetStyleSheetPool();
pPool->SetSearchMask(SFX_STYLE_FAMILY_PAGE, SFXSTYLEBIT_ALL);
if( pPool->Count() > 1 )
{
USHORT nCount = 0;
SfxStyleSheetBase* pStyle = pPool->First();
while( pStyle )
{
nCount++;
aPop.InsertItem( nCount, pStyle->GetName() );
pStyle = pPool->Next();
}
aPop.Execute( &GetStatusBar(), rCEvt.GetMousePosPixel());
USHORT nCurrId = aPop.GetCurId();
if( nCurrId != USHRT_MAX)
{
// sieht etwas umstaendlich aus, anders geht's aber nicht
pStyle = pPool->operator[]( nCurrId - 1 );
SfxStringItem aStyle( FN_SET_PAGE_STYLE, pStyle->GetName() );
pWrtShell->GetView().GetViewFrame()->GetDispatcher()->Execute(
FN_SET_PAGE_STYLE,
SFX_CALLMODE_SLOT|SFX_CALLMODE_RECORD,
&aStyle, 0L );
}
}
}
}
ReleaseMouse();
}
}