1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 29*cdf0e10cSrcweir #include "precompiled_sfx2.hxx" 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir // include --------------------------------------------------------------- 32*cdf0e10cSrcweir #include <svl/whiter.hxx> 33*cdf0e10cSrcweir #include <svl/style.hxx> 34*cdf0e10cSrcweir #ifndef _MSGBOX_HXX //autogen 35*cdf0e10cSrcweir #include <vcl/msgbox.hxx> 36*cdf0e10cSrcweir #endif 37*cdf0e10cSrcweir #ifndef GCC 38*cdf0e10cSrcweir #endif 39*cdf0e10cSrcweir 40*cdf0e10cSrcweir #include <sfx2/styledlg.hxx> 41*cdf0e10cSrcweir #include <sfx2/mgetempl.hxx> 42*cdf0e10cSrcweir #include "sfx2/sfxresid.hxx" 43*cdf0e10cSrcweir #include <sfx2/sfxuno.hxx> 44*cdf0e10cSrcweir 45*cdf0e10cSrcweir #include "dialog.hrc" 46*cdf0e10cSrcweir 47*cdf0e10cSrcweir // class SfxStyleDialog -------------------------------------------------- 48*cdf0e10cSrcweir 49*cdf0e10cSrcweir SfxStyleDialog::SfxStyleDialog 50*cdf0e10cSrcweir ( 51*cdf0e10cSrcweir Window* pParent, // Parent 52*cdf0e10cSrcweir const ResId& rResId, // ResId 53*cdf0e10cSrcweir SfxStyleSheetBase& rStyle, // zu bearbeitendes StyleSheet 54*cdf0e10cSrcweir sal_Bool bFreeRes, // Flag Resourcen freigeben 55*cdf0e10cSrcweir const String* pUserBtnTxt 56*cdf0e10cSrcweir ) : 57*cdf0e10cSrcweir 58*cdf0e10cSrcweir /* [Beschreibung] 59*cdf0e10cSrcweir 60*cdf0e10cSrcweir Konstruktor: Verwalten-TabPage zuf"ugen, ExampleSet vom Style setzen. 61*cdf0e10cSrcweir */ 62*cdf0e10cSrcweir 63*cdf0e10cSrcweir SfxTabDialog( pParent, rResId, 64*cdf0e10cSrcweir rStyle.GetItemSet().Clone(), 65*cdf0e10cSrcweir // auch ohne ParentSupport TRUE "ubergeben, aber erweitert 66*cdf0e10cSrcweir // um den StandardButton zu unterdr"ucken 67*cdf0e10cSrcweir rStyle.HasParentSupport() ? sal_True : 2, 68*cdf0e10cSrcweir pUserBtnTxt ), 69*cdf0e10cSrcweir 70*cdf0e10cSrcweir pStyle( &rStyle ) 71*cdf0e10cSrcweir 72*cdf0e10cSrcweir { 73*cdf0e10cSrcweir AddTabPage( ID_TABPAGE_MANAGESTYLES, 74*cdf0e10cSrcweir String( SfxResId( STR_TABPAGE_MANAGESTYLES ) ), 75*cdf0e10cSrcweir SfxManageStyleSheetPage::Create, 0, sal_False, 0 ); 76*cdf0e10cSrcweir 77*cdf0e10cSrcweir // bei neuer Vorlage immer die Verwaltungsseite als aktuelle 78*cdf0e10cSrcweir // Seite setzen 79*cdf0e10cSrcweir 80*cdf0e10cSrcweir if( !rStyle.GetName().Len() ) 81*cdf0e10cSrcweir SetCurPageId( ID_TABPAGE_MANAGESTYLES ); 82*cdf0e10cSrcweir else 83*cdf0e10cSrcweir { 84*cdf0e10cSrcweir String sTxt( GetText() ); 85*cdf0e10cSrcweir sTxt += DEFINE_CONST_UNICODE(": ") ; 86*cdf0e10cSrcweir sTxt += rStyle.GetName(); 87*cdf0e10cSrcweir SetText( sTxt ); 88*cdf0e10cSrcweir } 89*cdf0e10cSrcweir delete pExampleSet; // im SfxTabDialog::Ctor() schon angelegt 90*cdf0e10cSrcweir pExampleSet = &pStyle->GetItemSet(); 91*cdf0e10cSrcweir 92*cdf0e10cSrcweir if ( bFreeRes ) 93*cdf0e10cSrcweir FreeResource(); 94*cdf0e10cSrcweir GetCancelButton().SetClickHdl( LINK(this, SfxStyleDialog, CancelHdl) ); 95*cdf0e10cSrcweir } 96*cdf0e10cSrcweir 97*cdf0e10cSrcweir // ----------------------------------------------------------------------- 98*cdf0e10cSrcweir 99*cdf0e10cSrcweir SfxStyleDialog::~SfxStyleDialog() 100*cdf0e10cSrcweir 101*cdf0e10cSrcweir /* [Beschreibung] 102*cdf0e10cSrcweir 103*cdf0e10cSrcweir Destruktor: ExampleSet auf NULL setzen, damit der SfxTabDialog nicht den 104*cdf0e10cSrcweir Set vom Style l"oscht. 105*cdf0e10cSrcweir */ 106*cdf0e10cSrcweir 107*cdf0e10cSrcweir { 108*cdf0e10cSrcweir pExampleSet = 0; 109*cdf0e10cSrcweir pStyle = 0; 110*cdf0e10cSrcweir delete GetInputSetImpl(); 111*cdf0e10cSrcweir } 112*cdf0e10cSrcweir 113*cdf0e10cSrcweir // ----------------------------------------------------------------------- 114*cdf0e10cSrcweir 115*cdf0e10cSrcweir const SfxItemSet* SfxStyleDialog::GetRefreshedSet() 116*cdf0e10cSrcweir 117*cdf0e10cSrcweir /* [Beschreibung] 118*cdf0e10cSrcweir 119*cdf0e10cSrcweir Diese wird gerufen, wenn <SfxTabPage::DeactivatePage(SfxItemSet *)> 120*cdf0e10cSrcweir <SfxTabPage::REFRESH_SET> liefert. 121*cdf0e10cSrcweir */ 122*cdf0e10cSrcweir 123*cdf0e10cSrcweir { 124*cdf0e10cSrcweir return GetInputSetImpl(); 125*cdf0e10cSrcweir } 126*cdf0e10cSrcweir 127*cdf0e10cSrcweir // ----------------------------------------------------------------------- 128*cdf0e10cSrcweir 129*cdf0e10cSrcweir short SfxStyleDialog::Ok() 130*cdf0e10cSrcweir 131*cdf0e10cSrcweir /* [Beschreibung] 132*cdf0e10cSrcweir 133*cdf0e10cSrcweir "Uberladen, damit immer RET_OK zur"uckgegeben wird. 134*cdf0e10cSrcweir */ 135*cdf0e10cSrcweir 136*cdf0e10cSrcweir { 137*cdf0e10cSrcweir SfxTabDialog::Ok(); 138*cdf0e10cSrcweir return RET_OK; 139*cdf0e10cSrcweir } 140*cdf0e10cSrcweir 141*cdf0e10cSrcweir // ----------------------------------------------------------------------- 142*cdf0e10cSrcweir 143*cdf0e10cSrcweir IMPL_LINK( SfxStyleDialog, CancelHdl, Button *, pButton ) 144*cdf0e10cSrcweir 145*cdf0e10cSrcweir /* [Beschreibung] 146*cdf0e10cSrcweir 147*cdf0e10cSrcweir Wenn der Dialog abgebrochen wurde, m"ussen alle schon eingestellten 148*cdf0e10cSrcweir Attribute wieder zur"uckgesetzt werden. 149*cdf0e10cSrcweir */ 150*cdf0e10cSrcweir 151*cdf0e10cSrcweir { 152*cdf0e10cSrcweir (void)pButton; //unused 153*cdf0e10cSrcweir SfxTabPage* pPage = GetTabPage( ID_TABPAGE_MANAGESTYLES ); 154*cdf0e10cSrcweir 155*cdf0e10cSrcweir const SfxItemSet* pInSet = GetInputSetImpl(); 156*cdf0e10cSrcweir SfxWhichIter aIter( *pInSet ); 157*cdf0e10cSrcweir sal_uInt16 nWhich = aIter.FirstWhich(); 158*cdf0e10cSrcweir 159*cdf0e10cSrcweir while ( nWhich ) 160*cdf0e10cSrcweir { 161*cdf0e10cSrcweir SfxItemState eState = pInSet->GetItemState( nWhich, sal_False ); 162*cdf0e10cSrcweir 163*cdf0e10cSrcweir if ( SFX_ITEM_DEFAULT == eState ) 164*cdf0e10cSrcweir pExampleSet->ClearItem( nWhich ); 165*cdf0e10cSrcweir else 166*cdf0e10cSrcweir pExampleSet->Put( pInSet->Get( nWhich ) ); 167*cdf0e10cSrcweir nWhich = aIter.NextWhich(); 168*cdf0e10cSrcweir } 169*cdf0e10cSrcweir 170*cdf0e10cSrcweir if ( pPage ) 171*cdf0e10cSrcweir pPage->Reset( *GetInputSetImpl() ); 172*cdf0e10cSrcweir EndDialog( RET_CANCEL ); 173*cdf0e10cSrcweir return 0; 174*cdf0e10cSrcweir } 175*cdf0e10cSrcweir 176*cdf0e10cSrcweir 177