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 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639
|
/* -*- 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 ---------------------------------------------------------------
#include <vcl/msgbox.hxx>
#include <vcl/field.hxx>
#include <svl/eitem.hxx>
#include <svl/intitem.hxx>
#include <svl/style.hxx>
#include <sfx2/styfitem.hxx>
#include <sfx2/styledlg.hxx>
#include <sfx2/app.hxx>
#include <sfx2/mgetempl.hxx>
#include <sfx2/objsh.hxx>
#include "sfxtypes.hxx"
#include "sfx2/sfxresid.hxx"
#include <sfx2/module.hxx>
#include <sfx2/sfx.hrc>
#include "dialog.hrc"
#include "mgetempl.hrc"
#include <svl/style.hrc>
// SfxManageStyleSheetPage -----------------------------------------------
SfxManageStyleSheetPage::SfxManageStyleSheetPage( Window* pParent, const SfxItemSet& rAttrSet ) :
SfxTabPage( pParent, SfxResId( TP_MANAGE_STYLES ), rAttrSet ),
aNameFt ( this, SfxResId( FT_NAME ) ),
aNameEd ( this, SfxResId( ED_NAME ) ),
aNameMLE ( this, SfxResId( MLE_NAME ) ),
aAutoCB ( this, SfxResId( CB_AUTO ) ),
aFollowFt ( this, SfxResId( FT_NEXT ) ),
aFollowLb ( this, SfxResId( LB_NEXT ) ),
aBaseFt ( this, SfxResId( FT_BASE ) ),
aBaseLb ( this, SfxResId( LB_BASE ) ),
aFilterFt ( this, SfxResId( FT_REGION ) ),
aFilterLb ( this, SfxResId( LB_REGION ) ),
aDescGb ( this, SfxResId( GB_DESC ) ),
aDescFt ( this, SfxResId( FT_DESC ) ),
aDescED ( this, SfxResId( ED_DESC ) ),
pStyle( &( (SfxStyleDialog*)pParent->GetParent() )->GetStyleSheet() ),
pItem ( 0 ),
bModified ( sal_False ),
aName ( pStyle->GetName() ),
aFollow ( pStyle->GetFollow() ),
aParent ( pStyle->GetParent() ),
nFlags ( pStyle->GetMask() )
/* [Description]
Constructor, initializes the list box with the templates
*/
{
FreeResource();
if ( IsBackground() )
aDescED.SetBackground( GetBackground() );
FixedInfo* pInfo = new FixedInfo( this );
aDescED.SetFont( pInfo->GetFont() );
delete pInfo;
aDescED.Hide();
aDescFt.Show();
// this Page needs ExchangeSupport
SetExchangeSupport();
ResMgr* pResMgr = SFX_APP()->GetModule_Impl()->GetResMgr();
OSL_ENSURE( pResMgr, "No ResMgr in Module" );
pFamilies = new SfxStyleFamilies( ResId( DLG_STYLE_DESIGNER, *pResMgr ) );
SfxStyleSheetBasePool* pPool = 0;
SfxObjectShell* pDocShell = SfxObjectShell::Current();
if ( pDocShell )
pPool = pDocShell->GetStyleSheetPool();
OSL_ENSURE( pPool, "no Pool or no DocShell" );
if ( pPool )
{
pPool->SetSearchMask( pStyle->GetFamily() );
pPool->First(); // for SW - update internal list
}
if ( !pStyle->GetName().Len() && pPool )
{
// NullString as Name -> generate Name
String aNoName( SfxResId( STR_NONAME ) );
sal_uInt16 nNo = 1;
String aNo( aNoName );
aNoName += String::CreateFromInt32( nNo );
while ( pPool->Find( aNoName ) )
{
++nNo;
aNoName = aNo;
aNoName += String::CreateFromInt32( nNo );
}
pStyle->SetName( aNoName );
aName = aNoName;
aFollow = pStyle->GetFollow();
aParent = pStyle->GetParent();
}
aNameEd.SetText(pStyle->GetName());
// Set the field read-only if it is NOT an user-defined style
// but allow selecting and copying
if ( !pStyle->IsUserDefined() ) {
aNameEd.SetReadOnly();
aNameEd.Hide();
aNameMLE.SetControlBackground( GetSettings().GetStyleSettings().GetDialogColor() );
aNameMLE.SetText( pStyle->GetName() );
aNameMLE.EnableCursor( sal_False );
aNameMLE.Show();
}
if ( pStyle->HasFollowSupport() && pPool )
{
SfxStyleSheetBase* pPoolStyle = pPool->First();
while ( pPoolStyle )
{
aFollowLb.InsertEntry( pPoolStyle->GetName() );
pPoolStyle = pPool->Next();
}
// A new Template is not jet in the Pool
if ( LISTBOX_ENTRY_NOTFOUND == aFollowLb.GetEntryPos( pStyle->GetName() ) )
aFollowLb.InsertEntry( pStyle->GetName() );
}
else
{
aFollowFt.Hide();
aFollowLb.Hide();
aFilterFt.SetPosPixel( aBaseFt.GetPosPixel() );
aFilterLb.SetPosPixel( aBaseLb.GetPosPixel() );
aBaseFt.SetPosPixel( aFollowFt.GetPosPixel() );
aBaseLb.SetPosPixel( aFollowLb.GetPosPixel() );
}
if ( pStyle->HasParentSupport() && pPool )
{
if ( pStyle->HasClearParentSupport() )
// the base template can be set to NULL
aBaseLb.InsertEntry( String( SfxResId( STR_NONE ) ) );
SfxStyleSheetBase* pPoolStyle = pPool->First();
while ( pPoolStyle )
{
const String aStr( pPoolStyle->GetName() );
// own name as base template
if ( aStr != aName )
aBaseLb.InsertEntry( aStr );
pPoolStyle = pPool->Next();
}
}
else
{
aBaseFt.Disable();
aBaseLb.Disable();
}
size_t nCount = pFamilies->size();
size_t i;
for ( i = 0; i < nCount; ++i )
{
pItem = pFamilies->at( i );
if ( pItem->GetFamily() == pStyle->GetFamily() )
break;
}
if ( i < nCount )
{
sal_uInt16 nStyleFilterIdx = 0xffff;
// Filter flags
const SfxStyleFilter& rList = pItem->GetFilterList();
nCount = rList.size();
sal_uInt16 nIdx = 0;
sal_uInt16 nMask = pStyle->GetMask() & ~SFXSTYLEBIT_USERDEF;
if ( !nMask ) // User Template?
nMask = pStyle->GetMask();
for ( i = 0; i < nCount; ++i )
{
SfxFilterTupel* pTupel = rList[ i ];
if ( pTupel->nFlags != SFXSTYLEBIT_AUTO &&
pTupel->nFlags != SFXSTYLEBIT_USED &&
pTupel->nFlags != SFXSTYLEBIT_ALL )
{
aFilterLb.InsertEntry( pTupel->aName, nIdx );
aFilterLb.SetEntryData(nIdx, (void*)(long)i);
if ( ( pTupel->nFlags & nMask ) == nMask )
nStyleFilterIdx = nIdx;
++nIdx;
}
}
if ( nStyleFilterIdx != 0xFFFF )
aFilterLb.SelectEntryPos( nStyleFilterIdx );
}
if ( !aFilterLb.GetEntryCount() || !pStyle->IsUserDefined() )
{
pItem = 0;
aFilterFt.Disable();
aFilterLb.Disable();
}
else
aFilterLb.SaveValue();
SetDescriptionText_Impl();
if ( aFollowLb.IsEnabled() || aBaseLb.IsEnabled() )
{
aNameEd.SetGetFocusHdl(
LINK( this, SfxManageStyleSheetPage, GetFocusHdl ) );
aNameEd.SetLoseFocusHdl(
LINK( this, SfxManageStyleSheetPage, LoseFocusHdl ) );
}
// It is a style with auto update? (SW only)
if(SFX_ITEM_SET == rAttrSet.GetItemState(SID_ATTR_AUTO_STYLE_UPDATE))
{
Size aSize = aNameEd.GetSizePixel();
aSize.Width() /= 2;
aNameEd.SetSizePixel(aSize);
aAutoCB.Show();
}
}
//-------------------------------------------------------------------------
SfxManageStyleSheetPage::~SfxManageStyleSheetPage()
/* [Description]
Destructor, release of the data
*/
{
aNameEd.SetGetFocusHdl( Link() );
aNameEd.SetLoseFocusHdl( Link() );
delete pFamilies;
pItem = 0;
pStyle = 0;
}
//-------------------------------------------------------------------------
void SfxManageStyleSheetPage::UpdateName_Impl( ListBox* pBox,
const String& rNew )
/* [Description]
After the change of a template name update the ListBox pBox
[Parameter]
ListBox* pBox ListBox, whose entries are to be updated
const String& rNew the new Name
*/
{
if ( pBox->IsEnabled() )
{
// it is the current entry, which name was modified
const sal_Bool bSelect = pBox->GetSelectEntry() == aBuf;
pBox->RemoveEntry( aBuf );
pBox->InsertEntry( rNew );
if ( bSelect )
pBox->SelectEntry( rNew );
}
}
//-------------------------------------------------------------------------
void SfxManageStyleSheetPage::SetDescriptionText_Impl()
/* [Description]
Set attribute description. Get the set metric for this.
*/
{
SfxMapUnit eUnit = SFX_MAPUNIT_CM;
FieldUnit eFieldUnit( FUNIT_CM );
SfxModule* pModule = SfxModule::GetActiveModule();
if ( pModule )
{
const SfxPoolItem* pPoolItem = pModule->GetItem( SID_ATTR_METRIC );
if ( pPoolItem )
eFieldUnit = (FieldUnit)( (SfxUInt16Item*)pPoolItem )->GetValue();
}
switch ( eFieldUnit )
{
case FUNIT_MM: eUnit = SFX_MAPUNIT_MM; break;
case FUNIT_CM:
case FUNIT_M:
case FUNIT_KM: eUnit = SFX_MAPUNIT_CM; break;
case FUNIT_POINT:
case FUNIT_PICA: eUnit = SFX_MAPUNIT_POINT; break;
case FUNIT_INCH:
case FUNIT_FOOT:
case FUNIT_MILE: eUnit = SFX_MAPUNIT_INCH; break;
default:
OSL_FAIL( "non supported field unit" );
}
aDescFt.SetText( pStyle->GetDescription( eUnit ) );
}
//-------------------------------------------------------------------------
IMPL_LINK_INLINE_START( SfxManageStyleSheetPage, GetFocusHdl, Edit *, pEdit )
/* [Description]
StarView Handler; GetFocus-Handler of the Edits with the template name.
*/
{
aBuf = pEdit->GetText().EraseLeadingChars();
return 0;
}
IMPL_LINK_INLINE_END( SfxManageStyleSheetPage, GetFocusHdl, Edit *, pEdit )
//-------------------------------------------------------------------------
IMPL_LINK_INLINE_START( SfxManageStyleSheetPage, LoseFocusHdl, Edit *, pEdit )
/* [Description]
StarView Handler; loose-focus-handler of the edits of the template name.
This will update the listbox with the subsequent templates. The current
template itself is not returned in the listbox of the base templates.
*/
{
const String aStr( pEdit->GetText().EraseLeadingChars() );
pEdit->SetText( aStr );
// Update the Listbox of the base template if possible
if ( aStr != aBuf )
UpdateName_Impl( &aFollowLb, aStr );
return 0;
}
IMPL_LINK_INLINE_END( SfxManageStyleSheetPage, LoseFocusHdl, Edit *, pEdit )
//-------------------------------------------------------------------------
sal_Bool SfxManageStyleSheetPage::FillItemSet( SfxItemSet& rSet )
/* [Description]
Handler for setting the (modified) data. I called from the OK of the
SfxTabDialog.
[Parameter]
SfxItemSet &rAttrSet The set, which receives the data.
[Return value]
sal_Bool sal_True: The data had been changed
sal_False: The data had not been changed
[Cross-reference]
<class SfxTabDialog>
*/
{
const sal_uInt16 nFilterIdx = aFilterLb.GetSelectEntryPos();
// Set Filter
if ( LISTBOX_ENTRY_NOTFOUND != nFilterIdx &&
nFilterIdx != aFilterLb.GetSavedValue() &&
aFilterLb.IsEnabled() )
{
bModified = sal_True;
OSL_ENSURE( pItem, "No Item" );
// is only possibly for user templates
sal_uInt16 nMask = pItem->GetFilterList()[ (size_t)aFilterLb.GetEntryData( nFilterIdx ) ]->nFlags | SFXSTYLEBIT_USERDEF;
pStyle->SetMask( nMask );
}
if(aAutoCB.IsVisible() &&
aAutoCB.IsChecked() != aAutoCB.GetSavedValue())
{
rSet.Put(SfxBoolItem(SID_ATTR_AUTO_STYLE_UPDATE, aAutoCB.IsChecked()));
}
return bModified;
}
//-------------------------------------------------------------------------
void SfxManageStyleSheetPage::Reset( const SfxItemSet& /*rAttrSet*/ )
/* [Description]
Handler to initialize the page with the initial data.
[Parameter]
const SfxItemSet &rAttrSet The data set
[Cross-reference]
<class SfxTabDialog>
*/
{
bModified = sal_False;
String sCmp( pStyle->GetName() );
if ( sCmp != aName )
pStyle->SetName( aName );
aNameEd.SetText( aName );
if ( aFollowLb.IsEnabled() )
{
sCmp = pStyle->GetFollow();
if ( sCmp != aFollow )
pStyle->SetFollow( aFollow );
if ( !aFollow.Len() )
aFollowLb.SelectEntry( aName );
else
aFollowLb.SelectEntry( aFollow );
}
if ( aBaseLb.IsEnabled() )
{
sCmp = pStyle->GetParent();
if ( sCmp != aParent )
pStyle->SetParent( aParent );
if ( !aParent.Len() )
aBaseLb.SelectEntry( String( SfxResId( STR_NONE ) ) );
else
aBaseLb.SelectEntry( aParent );
if ( String( SfxResId( STR_STANDARD ) ) == aName )
{
// the default template can not be linked
aBaseFt.Disable();
aBaseLb.Disable();
}
}
if ( aFilterLb.IsEnabled() )
{
sal_uInt16 nCmp = pStyle->GetMask();
if ( nCmp != nFlags )
pStyle->SetMask( nFlags );
aFilterLb.SelectEntryPos( aFilterLb.GetSavedValue() );
}
}
//-------------------------------------------------------------------------
SfxTabPage* SfxManageStyleSheetPage::Create( Window* pParent,
const SfxItemSet &rAttrSet )
/* [Description]
Factory for the creation of the page.
[Cross-reference]
<class SfxTabDialog>
*/
{
return new SfxManageStyleSheetPage( pParent, rAttrSet );
}
//-------------------------------------------------------------------------
void SfxManageStyleSheetPage::ActivatePage( const SfxItemSet& rSet)
/* [Description]
ActivatePage handler of SfxTabDialog, is used for the the update of the
descriptive text, since this might have changed through changes of data on
other pages.
[Parameter]
const SfxItemSet& the set for the exchange of data; is not used here.
[Cross-reference]
<SfxTabDialog::ActivatePage(const SfxItemSet &)>
*/
{
SetDescriptionText_Impl();
// It is a style with auto update? (SW only)
const SfxPoolItem* pPoolItem;
if ( SFX_ITEM_SET ==
rSet.GetItemState( SID_ATTR_AUTO_STYLE_UPDATE, sal_False, &pPoolItem ) )
aAutoCB.Check( ( (const SfxBoolItem*)pPoolItem )->GetValue() );
aAutoCB.SaveValue();
}
//-------------------------------------------------------------------------
int SfxManageStyleSheetPage::DeactivatePage( SfxItemSet* pItemSet )
/* [Description]
DeactivatePage-handler of SfxTabDialog; data is set on the template, so
that the correct inheritance on the other pages of the dialog is made.
If an error occurs, leaving the page is prevented.
[Parameter]
SfxItemSet* the set for the exchange of data; is not used here.
[Cross-reference]
<SfxTabDialog::DeactivatePage(SfxItemSet*)>
*/
{
int nRet = SfxTabPage::LEAVE_PAGE;
if ( aNameEd.IsModified() )
{
// By pressing <Enter> LoseFocus() is not trigged through StarView
if ( aNameEd.HasFocus() )
LoseFocusHdl( &aNameEd );
if ( !pStyle->SetName( aNameEd.GetText().EraseLeadingChars() ) )
{
InfoBox aBox( this, SfxResId( MSG_TABPAGE_INVALIDNAME ) );
aBox.Execute();
aNameEd.GrabFocus();
aNameEd.SetSelection( Selection( SELECTION_MIN, SELECTION_MAX ) );
return SfxTabPage::KEEP_PAGE;
}
bModified = sal_True;
}
if ( pStyle->HasFollowSupport() && aFollowLb.IsEnabled() )
{
const String aFollowEntry( aFollowLb.GetSelectEntry() );
if ( pStyle->GetFollow() != aFollowEntry )
{
if ( !pStyle->SetFollow( aFollowEntry ) )
{
InfoBox aBox( this, SfxResId( MSG_TABPAGE_INVALIDSTYLE ) );
aBox.Execute();
aFollowLb.GrabFocus();
return SfxTabPage::KEEP_PAGE;
}
bModified = sal_True;
}
}
if ( aBaseLb.IsEnabled() )
{
String aParentEntry( aBaseLb.GetSelectEntry() );
if ( String( SfxResId( STR_NONE ) ) == aParentEntry || aParentEntry == pStyle->GetName() )
aParentEntry.Erase();
if ( pStyle->GetParent() != aParentEntry )
{
if ( !pStyle->SetParent( aParentEntry ) )
{
InfoBox aBox( this, SfxResId( MSG_TABPAGE_INVALIDPARENT ) );
aBox.Execute();
aBaseLb.GrabFocus();
return SfxTabPage::KEEP_PAGE;
}
bModified = sal_True;
nRet |= (int)SfxTabPage::REFRESH_SET;
}
}
if ( pItemSet )
FillItemSet( *pItemSet );
return nRet;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|