1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* 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.
*
************************************************************************/
#include "DrawDocShell.hxx"
#include <vcl/msgbox.hxx>
#include <svx/svdpagv.hxx>
#include <svx/svxdlg.hxx>
#include <svx/dialogs.hrc>
#include "helpids.h"
#include "ViewShell.hxx"
#include "drawview.hxx"
#include "FrameView.hxx"
#include "drawdoc.hxx"
#include "sdpage.hxx"
#include "View.hxx"
#include "ClientView.hxx"
#include "Window.hxx"
#include "strings.hrc"
#include "res_bmp.hrc"
#include "sdresid.hxx"
#include "strmname.h"
#include "fupoor.hxx"
#include <vcl/svapp.hxx>
#include <vcl/virdev.hxx>
#include <comphelper/string.hxx>
namespace sd {
/*************************************************************************
|*
|* Zeichnen der DocShell (mittels der Hilfsklasse SdDrawViewShell)
|*
\************************************************************************/
void DrawDocShell::Draw(OutputDevice* pOut, const JobSetup&, sal_uInt16 nAspect)
{
if (nAspect == ASPECT_THUMBNAIL)
{
/**********************************************************************
* THUMBNAIL: Hier koennte ev. einmal der Draft-Mode gesetzt werden
**********************************************************************/
}
ClientView* pView = new ClientView(this, pOut, NULL);
pView->SetHlplVisible(sal_False);
pView->SetGridVisible(sal_False);
pView->SetBordVisible(sal_False);
pView->SetPageVisible(sal_False);
pView->SetGlueVisible(sal_False);
SdPage* pSelectedPage = NULL;
const std::vector<sd::FrameView*> &rViews = mpDoc->GetFrameViewList();
if( !rViews.empty() )
{
sd::FrameView* pFrameView = rViews[0];
if( pFrameView->GetPageKind() == PK_STANDARD )
{
sal_uInt16 nSelectedPage = pFrameView->GetSelectedPage();
pSelectedPage = mpDoc->GetSdPage(nSelectedPage, PK_STANDARD);
}
}
if( NULL == pSelectedPage )
{
SdPage* pPage = NULL;
sal_uInt16 nPageCnt = (sal_uInt16) mpDoc->GetSdPageCount(PK_STANDARD);
for (sal_uInt16 i = 0; i < nPageCnt; i++)
{
pPage = mpDoc->GetSdPage(i, PK_STANDARD);
if ( pPage->IsSelected() )
pSelectedPage = pPage;
}
if( NULL == pSelectedPage )
pSelectedPage = mpDoc->GetSdPage(0, PK_STANDARD);
}
Rectangle aVisArea = GetVisArea(nAspect);
pOut->IntersectClipRegion(aVisArea);
pView->ShowSdrPage(pSelectedPage);
if (pOut->GetOutDevType() != OUTDEV_WINDOW)
{
MapMode aOldMapMode = pOut->GetMapMode();
if (pOut->GetOutDevType() == OUTDEV_PRINTER)
{
MapMode aMapMode = aOldMapMode;
Point aOrigin = aMapMode.GetOrigin();
aOrigin.X() += 1;
aOrigin.Y() += 1;
aMapMode.SetOrigin(aOrigin);
pOut->SetMapMode(aMapMode);
}
Region aRegion(aVisArea);
pView->CompleteRedraw(pOut, aRegion);
if (pOut->GetOutDevType() == OUTDEV_PRINTER)
{
pOut->SetMapMode(aOldMapMode);
}
}
delete pView;
}
Rectangle DrawDocShell::GetVisArea(sal_uInt16 nAspect) const
{
Rectangle aVisArea;
if( ( ASPECT_THUMBNAIL == nAspect ) || ( ASPECT_DOCPRINT == nAspect ) )
{
// Groesse der ersten Seite herausgeben
MapMode aSrcMapMode(MAP_PIXEL);
MapMode aDstMapMode(MAP_100TH_MM);
Size aSize = mpDoc->GetSdPage(0, PK_STANDARD)->GetSize();
aSrcMapMode.SetMapUnit(MAP_100TH_MM);
aSize = Application::GetDefaultDevice()->LogicToLogic(aSize, &aSrcMapMode, &aDstMapMode);
aVisArea.SetSize(aSize);
}
else
{
aVisArea = SfxObjectShell::GetVisArea(nAspect);
}
if (aVisArea.IsEmpty() && mpViewShell)
{
Window* pWin = mpViewShell->GetActiveWindow();
if (pWin)
{
aVisArea = pWin->PixelToLogic(Rectangle(Point(0,0), pWin->GetOutputSizePixel()));
}
}
return (aVisArea);
}
/*************************************************************************
|*
|* ViewShell anmelden
|*
\************************************************************************/
void DrawDocShell::Connect(ViewShell* pViewSh)
{
mpViewShell = pViewSh;
}
/*************************************************************************
|*
|* ViewShell abmelden
|*
\************************************************************************/
void DrawDocShell::Disconnect(ViewShell* pViewSh)
{
if (mpViewShell == pViewSh)
{
mpViewShell = NULL;
}
}
FrameView* DrawDocShell::GetFrameView()
{
FrameView* pFrameView = NULL;
if (mpViewShell)
{
pFrameView = mpViewShell->GetFrameView();
}
return(pFrameView);
}
/*************************************************************************
|*
|* Groesse der ersten Seite zurueckgeben
|*
\************************************************************************/
Size DrawDocShell::GetFirstPageSize()
{
return SfxObjectShell::GetFirstPageSize();
}
/*************************************************************************
|*
|* Bitmap einer beliebigen Seite erzeugen
|*
\************************************************************************/
Bitmap DrawDocShell::GetPagePreviewBitmap(SdPage* pPage, sal_uInt16 nMaxEdgePixel)
{
MapMode aMapMode( MAP_100TH_MM );
const Size aSize( pPage->GetSize() );
const Point aNullPt;
VirtualDevice aVDev( *Application::GetDefaultDevice() );
aVDev.SetMapMode( aMapMode );
const Size aPixSize( aVDev.LogicToPixel( aSize ) );
const sal_uLong nMaxEdgePix = Max( aPixSize.Width(), aPixSize.Height() );
Fraction aFrac( nMaxEdgePixel, nMaxEdgePix );
aMapMode.SetScaleX( aFrac );
aMapMode.SetScaleY( aFrac );
aVDev.SetMapMode( aMapMode );
aVDev.SetOutputSize( aSize );
// damit die dunklen Linien am rechten und unteren Seitenrans mitkommen
aFrac = Fraction( nMaxEdgePixel - 1, nMaxEdgePix );
aMapMode.SetScaleX( aFrac );
aMapMode.SetScaleY( aFrac );
aVDev.SetMapMode( aMapMode );
ClientView* pView = new ClientView( this, &aVDev, NULL );
FrameView* pFrameView = GetFrameView();
pView->ShowSdrPage( pPage );
if ( GetFrameView() )
{
// Initialisierungen der Zeichen-(Bildschirm-)Attribute
pView->SetGridCoarse( pFrameView->GetGridCoarse() );
pView->SetGridFine( pFrameView->GetGridFine() );
pView->SetSnapGridWidth(pFrameView->GetSnapGridWidthX(), pFrameView->GetSnapGridWidthY());
pView->SetGridVisible( pFrameView->IsGridVisible() );
pView->SetGridFront( pFrameView->IsGridFront() );
pView->SetSnapAngle( pFrameView->GetSnapAngle() );
pView->SetGridSnap( pFrameView->IsGridSnap() );
pView->SetBordSnap( pFrameView->IsBordSnap() );
pView->SetHlplSnap( pFrameView->IsHlplSnap() );
pView->SetOFrmSnap( pFrameView->IsOFrmSnap() );
pView->SetOPntSnap( pFrameView->IsOPntSnap() );
pView->SetOConSnap( pFrameView->IsOConSnap() );
pView->SetDragStripes( pFrameView->IsDragStripes() );
pView->SetFrameDragSingles( pFrameView->IsFrameDragSingles() );
pView->SetSnapMagneticPixel( pFrameView->GetSnapMagneticPixel() );
pView->SetMarkedHitMovesAlways( pFrameView->IsMarkedHitMovesAlways() );
pView->SetMoveOnlyDragging( pFrameView->IsMoveOnlyDragging() );
pView->SetSlantButShear( pFrameView->IsSlantButShear() );
pView->SetNoDragXorPolys( pFrameView->IsNoDragXorPolys() );
pView->SetCrookNoContortion( pFrameView->IsCrookNoContortion() );
pView->SetAngleSnapEnabled( pFrameView->IsAngleSnapEnabled() );
pView->SetBigOrtho( pFrameView->IsBigOrtho() );
pView->SetOrtho( pFrameView->IsOrtho() );
SdrPageView* pPageView = pView->GetSdrPageView();
if (pPageView)
{
if ( pPageView->GetVisibleLayers() != pFrameView->GetVisibleLayers() )
pPageView->SetVisibleLayers( pFrameView->GetVisibleLayers() );
if ( pPageView->GetPrintableLayers() != pFrameView->GetPrintableLayers() )
pPageView->SetPrintableLayers( pFrameView->GetPrintableLayers() );
if ( pPageView->GetLockedLayers() != pFrameView->GetLockedLayers() )
pPageView->SetLockedLayers( pFrameView->GetLockedLayers() );
pPageView->SetHelpLines( pFrameView->GetStandardHelpLines() );
}
if ( pView->GetActiveLayer() != pFrameView->GetActiveLayer() )
pView->SetActiveLayer( pFrameView->GetActiveLayer() );
}
pView->CompleteRedraw( &aVDev, Rectangle( aNullPt, aSize ) );
// IsRedrawReady() always gives sal_True while ( !pView->IsRedrawReady() ) {}
delete pView;
aVDev.SetMapMode( MapMode() );
Bitmap aPreview( aVDev.GetBitmap( aNullPt, aVDev.GetOutputSizePixel() ) );
DBG_ASSERT(!!aPreview, "Vorschau-Bitmap konnte nicht erzeugt werden");
return aPreview;
}
/*************************************************************************
|*
|* Pruefen, ob die Seite vorhanden ist und dann den Anwender zwingen einen
|* noch nicht vorhandenen Namen einzugeben. Wird sal_False zurueckgegeben,
|* wurde die Aktion vom Anwender abgebrochen.
|*
\************************************************************************/
sal_Bool DrawDocShell::CheckPageName (::Window* pWin, String& rName )
{
const String aStrForDlg( rName );
bool bIsNameValid = IsNewPageNameValid( rName, true );
if( ! bIsNameValid )
{
String aDesc( SdResId( STR_WARN_PAGE_EXISTS ) );
SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
AbstractSvxNameDialog* aNameDlg = pFact ? pFact->CreateSvxNameDialog( pWin, aStrForDlg, aDesc ) : 0;
if( aNameDlg )
{
aNameDlg->SetEditHelpId( HID_SD_NAMEDIALOG_PAGE );
if( mpViewShell )
aNameDlg->SetCheckNameHdl( LINK( this, DrawDocShell, RenameSlideHdl ) );
FunctionReference xFunc( mpViewShell->GetCurrentFunction() );
if( xFunc.is() )
xFunc->cancel();
if( aNameDlg->Execute() == RET_OK )
{
aNameDlg->GetName( rName );
bIsNameValid = IsNewPageNameValid( rName );
}
delete aNameDlg;
}
}
return ( bIsNameValid ? sal_True : sal_False );
}
bool DrawDocShell::IsNewPageNameValid( String & rInOutPageName, bool bResetStringIfStandardName /* = false */ )
{
bool bCanUseNewName = false;
// check if name is something like 'Slide n'
String aStrPage( SdResId( STR_SD_PAGE ) );
aStrPage += ' ';
bool bIsStandardName = false;
// prevent also _future_ slide names of the form "'STR_SD_PAGE' + ' ' + '[0-9]+|[a-z]|[A-Z]|[CDILMVX]+|[cdilmvx]+'"
// (arabic, lower- and upper case single letter, lower- and upper case roman numbers)
if( 0 == rInOutPageName.Search( aStrPage ) )
{
if( rInOutPageName.GetToken( 1, sal_Unicode(' ') ).GetChar(0) >= '0' &&
rInOutPageName.GetToken( 1, sal_Unicode(' ') ).GetChar(0) <= '9' )
{
// check for arabic numbering
// gobble up all following numbers
String sRemainder = rInOutPageName.GetToken( 1, sal_Unicode(' ') );
while( sRemainder.Len() &&
sRemainder.GetChar(0) >= '0' &&
sRemainder.GetChar(0) <= '9' )
{
// trim by one
sRemainder.Erase(0, 1);
}
// EOL? Reserved name!
if( !sRemainder.Len() )
{
bIsStandardName = true;
}
}
else if( rInOutPageName.GetToken( 1, sal_Unicode(' ') ).Len() == 1 &&
comphelper::string::islowerAscii(rInOutPageName.GetToken( 1, sal_Unicode(' ') ).GetChar(0) ) )
{
// lower case, single character: reserved
bIsStandardName = true;
}
else if( rInOutPageName.GetToken( 1, sal_Unicode(' ') ).Len() == 1 &&
comphelper::string::isupperAscii(rInOutPageName.GetToken( 1, sal_Unicode(' ') ).GetChar(0) ) )
{
// upper case, single character: reserved
bIsStandardName = true;
}
else
{
// check for upper/lower case roman numbering
String sReserved( String::CreateFromAscii( "cdilmvx" ) );
// gobble up all following characters contained in one reserved class
String sRemainder = rInOutPageName.GetToken( 1, sal_Unicode(' ') );
if( sReserved.Search( sRemainder.GetChar(0) ) == STRING_NOTFOUND )
sReserved.ToUpperAscii();
while( sReserved.Search( sRemainder.GetChar(0) ) != STRING_NOTFOUND )
{
// trim by one
sRemainder.Erase(0, 1);
}
// EOL? Reserved name!
if( !sRemainder.Len() )
{
bIsStandardName = true;
}
}
}
if( bIsStandardName )
{
if( bResetStringIfStandardName )
{
// this is for insertion of slides from other files with standard
// name. They get a new standard name, if the string is set to an
// empty one.
rInOutPageName = String();
bCanUseNewName = true;
}
else
bCanUseNewName = false;
}
else
{
if( rInOutPageName.Len() > 0 )
{
sal_Bool bOutDummy;
sal_uInt16 nExistingPageNum = mpDoc->GetPageByName( rInOutPageName, bOutDummy );
bCanUseNewName = ( nExistingPageNum == SDRPAGE_NOTFOUND );
}
else
bCanUseNewName = false;
}
return bCanUseNewName;
}
IMPL_LINK( DrawDocShell, RenameSlideHdl, AbstractSvxNameDialog*, pDialog )
{
if( ! pDialog )
return 0;
String aNewName;
pDialog->GetName( aNewName );
return IsNewPageNameValid( aNewName );
}
} // end of namespace sd
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|