2010-10-12 15:51:52 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-11-27 16:10:40 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2012-11-27 16:10:40 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2012-11-27 16:10:40 +00:00
|
|
|
* This file incorporates work covered by the following license notice:
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2012-11-27 16:10:40 +00:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2006-09-16 17:54:24 +00:00
|
|
|
|
2004-01-20 10:11:12 +00:00
|
|
|
#include "fuprobjs.hxx"
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
#include <vcl/msgbox.hxx>
|
2009-10-16 00:05:16 +02:00
|
|
|
#include <svl/style.hxx>
|
2010-01-08 18:32:51 +01:00
|
|
|
#include <editeng/outliner.hxx>
|
2009-10-16 00:05:16 +02:00
|
|
|
#include <svl/smplhint.hxx>
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
#include "app.hrc"
|
|
|
|
#include "res_bmp.hrc"
|
|
|
|
#include "strings.hrc"
|
|
|
|
#include "glob.hrc"
|
|
|
|
#include "prltempl.hrc"
|
|
|
|
|
|
|
|
#include "sdresid.hxx"
|
|
|
|
#include "drawdoc.hxx"
|
2004-01-20 10:11:12 +00:00
|
|
|
#include "OutlineViewShell.hxx"
|
|
|
|
#include "ViewShell.hxx"
|
|
|
|
#include "Window.hxx"
|
2000-09-18 16:07:07 +00:00
|
|
|
#include "glob.hxx"
|
|
|
|
#include "prlayout.hxx"
|
|
|
|
#include "unchss.hxx"
|
2006-12-12 16:22:19 +00:00
|
|
|
#include "sdabstdlg.hxx"
|
2004-01-20 10:11:12 +00:00
|
|
|
namespace sd {
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
TYPEINIT1( FuPresentationObjects, FuPoor );
|
|
|
|
|
|
|
|
|
2004-01-20 10:11:12 +00:00
|
|
|
FuPresentationObjects::FuPresentationObjects (
|
|
|
|
ViewShell* pViewSh,
|
|
|
|
::sd::Window* pWin,
|
|
|
|
::sd::View* pView,
|
|
|
|
SdDrawDocument* pDoc,
|
|
|
|
SfxRequest& rReq)
|
2000-09-18 16:07:07 +00:00
|
|
|
: FuPoor(pViewSh, pWin, pView, pDoc, rReq)
|
|
|
|
{
|
2005-12-14 16:02:40 +00:00
|
|
|
}
|
|
|
|
|
2013-10-25 15:42:11 +02:00
|
|
|
rtl::Reference<FuPoor> FuPresentationObjects::Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq )
|
2005-12-14 16:02:40 +00:00
|
|
|
{
|
2013-10-25 15:42:11 +02:00
|
|
|
rtl::Reference<FuPoor> xFunc( new FuPresentationObjects( pViewSh, pWin, pView, pDoc, rReq ) );
|
2005-12-14 16:02:40 +00:00
|
|
|
xFunc->DoExecute(rReq);
|
|
|
|
return xFunc;
|
|
|
|
}
|
|
|
|
|
2006-12-12 16:22:19 +00:00
|
|
|
void FuPresentationObjects::DoExecute( SfxRequest& )
|
2005-12-14 16:02:40 +00:00
|
|
|
{
|
2006-12-12 16:22:19 +00:00
|
|
|
OutlineViewShell* pOutlineViewShell = dynamic_cast< OutlineViewShell* >( mpViewShell );
|
2005-12-14 16:02:40 +00:00
|
|
|
DBG_ASSERT( pOutlineViewShell, "sd::FuPresentationObjects::DoExecute(), does not work without an OutlineViewShell!");
|
|
|
|
if( !pOutlineViewShell )
|
|
|
|
return;
|
|
|
|
|
2013-03-12 20:27:21 +01:00
|
|
|
/* does the selections end in a unique presentation layout?
|
|
|
|
if not, it is not allowed to edit the templates */
|
2006-12-12 16:22:19 +00:00
|
|
|
SfxItemSet aSet(mpDoc->GetItemPool(), SID_STATUS_LAYOUT, SID_STATUS_LAYOUT);
|
2005-12-14 16:02:40 +00:00
|
|
|
pOutlineViewShell->GetStatusBarState( aSet );
|
2013-08-24 22:22:45 +04:00
|
|
|
OUString aLayoutName = ((SfxStringItem&)aSet.Get(SID_STATUS_LAYOUT)).GetValue();
|
|
|
|
DBG_ASSERT(!aLayoutName.isEmpty(), "Layout not defined");
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2011-01-17 11:41:00 +01:00
|
|
|
sal_Bool bUnique = sal_False;
|
2008-06-06 11:05:17 +00:00
|
|
|
sal_Int16 nDepth, nTmp;
|
2005-12-14 16:02:40 +00:00
|
|
|
OutlineView* pOlView = static_cast<OutlineView*>(pOutlineViewShell->GetView());
|
2006-12-12 16:22:19 +00:00
|
|
|
OutlinerView* pOutlinerView = pOlView->GetViewByWindow( (Window*) mpWindow );
|
2004-01-20 10:11:12 +00:00
|
|
|
::Outliner* pOutl = pOutlinerView->GetOutliner();
|
2011-03-14 16:51:38 +01:00
|
|
|
|
|
|
|
std::vector<Paragraph*> aSelList;
|
|
|
|
pOutlinerView->CreateSelectionList(aSelList);
|
|
|
|
|
|
|
|
std::vector<Paragraph*>::const_iterator iter = aSelList.begin();
|
|
|
|
Paragraph* pPara = aSelList.empty() ? NULL : *iter;
|
|
|
|
|
2013-05-08 18:12:32 +02:00
|
|
|
nDepth = pOutl->GetDepth(pOutl->GetAbsPos( pPara ) );
|
2008-07-30 13:11:56 +00:00
|
|
|
bool bPage = pOutl->HasParaFlag( pPara, PARAFLAG_ISPAGE );
|
2008-06-06 11:05:17 +00:00
|
|
|
|
2011-03-14 16:51:38 +01:00
|
|
|
while( iter != aSelList.end() )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2011-03-14 16:51:38 +01:00
|
|
|
pPara = *iter;
|
|
|
|
|
2013-05-08 18:12:32 +02:00
|
|
|
nTmp = pOutl->GetDepth( pOutl->GetAbsPos( pPara ) );
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
if( nDepth != nTmp )
|
|
|
|
{
|
2011-01-17 11:41:00 +01:00
|
|
|
bUnique = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-06-06 11:05:17 +00:00
|
|
|
|
2008-07-30 13:11:56 +00:00
|
|
|
if( pOutl->HasParaFlag( pPara, PARAFLAG_ISPAGE ) != bPage )
|
2008-06-06 11:05:17 +00:00
|
|
|
{
|
2011-01-17 11:41:00 +01:00
|
|
|
bUnique = sal_False;
|
2008-06-06 11:05:17 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-01-17 11:41:00 +01:00
|
|
|
bUnique = sal_True;
|
2011-03-14 16:51:38 +01:00
|
|
|
++iter;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( bUnique )
|
|
|
|
{
|
2013-02-21 03:54:57 +05:30
|
|
|
OUString aStyleName = aLayoutName;
|
|
|
|
aStyleName += SD_LT_SEPARATOR ;
|
2011-01-17 11:41:00 +01:00
|
|
|
sal_uInt16 nDlgId = TAB_PRES_LAYOUT_TEMPLATE;
|
2000-09-18 16:07:07 +00:00
|
|
|
PresentationObjects ePO;
|
|
|
|
|
2008-06-06 11:05:17 +00:00
|
|
|
if( bPage )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
ePO = PO_TITLE;
|
2013-08-24 22:22:45 +04:00
|
|
|
aStyleName += SD_RESSTR(STR_LAYOUT_TITLE);
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ePO = (PresentationObjects) ( PO_OUTLINE_1 + nDepth - 1 );
|
2013-08-24 22:22:45 +04:00
|
|
|
aStyleName += SD_RESSTR(STR_LAYOUT_OUTLINE);
|
2013-02-21 03:54:57 +05:30
|
|
|
aStyleName += OUString(' ') ;
|
|
|
|
aStyleName += OUString::number( nDepth ) ;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
2006-12-12 16:22:19 +00:00
|
|
|
SfxStyleSheetBasePool* pStyleSheetPool = mpDocSh->GetStyleSheetPool();
|
2008-03-12 10:40:00 +00:00
|
|
|
SfxStyleSheetBase* pStyleSheet = pStyleSheetPool->Find( aStyleName, SD_STYLE_FAMILY_MASTERPAGE );
|
2013-03-11 22:51:42 +01:00
|
|
|
DBG_ASSERT(pStyleSheet, "StyleSheet missing");
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
if( pStyleSheet )
|
|
|
|
{
|
|
|
|
SfxStyleSheetBase& rStyleSheet = *pStyleSheet;
|
|
|
|
|
2006-12-12 16:22:19 +00:00
|
|
|
SdAbstractDialogFactory* pFact = SdAbstractDialogFactory::Create();
|
|
|
|
SfxAbstractTabDialog* pDlg = pFact ? pFact->CreateSdPresLayoutTemplateDlg( mpDocSh, NULL, SdResId( nDlgId ), rStyleSheet, ePO, pStyleSheetPool ) : 0;
|
2005-12-14 16:02:40 +00:00
|
|
|
if( pDlg && (pDlg->Execute() == RET_OK) )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2000-11-15 12:34:21 +00:00
|
|
|
const SfxItemSet* pOutSet = pDlg->GetOutputItemSet();
|
2000-09-18 16:07:07 +00:00
|
|
|
// Undo-Action
|
|
|
|
StyleSheetUndoAction* pAction = new StyleSheetUndoAction
|
2006-12-12 16:22:19 +00:00
|
|
|
(mpDoc, (SfxStyleSheet*)pStyleSheet,
|
2000-11-15 12:34:21 +00:00
|
|
|
pOutSet);
|
2006-12-12 16:22:19 +00:00
|
|
|
mpDocSh->GetUndoManager()->AddUndoAction(pAction);
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2000-11-15 12:34:21 +00:00
|
|
|
pStyleSheet->GetItemSet().Put( *pOutSet );
|
2000-09-18 16:07:07 +00:00
|
|
|
( (SfxStyleSheet*) pStyleSheet )->Broadcast( SfxSimpleHint( SFX_HINT_DATACHANGED ) );
|
|
|
|
}
|
|
|
|
delete( pDlg );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-20 10:11:12 +00:00
|
|
|
} // end of namespace sd
|
2010-10-12 15:51:52 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|