xref: /aoo41x/main/sd/source/ui/dlg/morphdlg.cxx (revision 79aad27f)
1*5b190011SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*5b190011SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*5b190011SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*5b190011SAndrew Rist  * distributed with this work for additional information
6*5b190011SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*5b190011SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*5b190011SAndrew Rist  * "License"); you may not use this file except in compliance
9*5b190011SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*5b190011SAndrew Rist  *
11*5b190011SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*5b190011SAndrew Rist  *
13*5b190011SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*5b190011SAndrew Rist  * software distributed under the License is distributed on an
15*5b190011SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*5b190011SAndrew Rist  * KIND, either express or implied.  See the License for the
17*5b190011SAndrew Rist  * specific language governing permissions and limitations
18*5b190011SAndrew Rist  * under the License.
19*5b190011SAndrew Rist  *
20*5b190011SAndrew Rist  *************************************************************/
21*5b190011SAndrew Rist 
22*5b190011SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_sd.hxx"
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #ifdef SD_DLLIMPLEMENTATION
28cdf0e10cSrcweir #undef SD_DLLIMPLEMENTATION
29cdf0e10cSrcweir #endif
30cdf0e10cSrcweir 
31cdf0e10cSrcweir #include "morphdlg.hxx"
32cdf0e10cSrcweir 
33cdf0e10cSrcweir #include "strings.hrc"
34cdf0e10cSrcweir #include "sdresid.hxx"
35cdf0e10cSrcweir #include "sdmod.hxx"
36cdf0e10cSrcweir #include "sdiocmpt.hxx"
37cdf0e10cSrcweir #include "morphdlg.hrc"
38cdf0e10cSrcweir #include <tools/config.hxx>
39cdf0e10cSrcweir #include <svx/xfillit0.hxx>
40cdf0e10cSrcweir #include <svx/xlineit0.hxx>
41cdf0e10cSrcweir #include <svx/xenum.hxx>
42cdf0e10cSrcweir #include <svx/svdobj.hxx>
43cdf0e10cSrcweir #include <svl/itemset.hxx>
44cdf0e10cSrcweir #include <svl/itempool.hxx>
45cdf0e10cSrcweir 
46cdf0e10cSrcweir namespace sd {
47cdf0e10cSrcweir 
48cdf0e10cSrcweir 
49cdf0e10cSrcweir /******************************************************************************/
50cdf0e10cSrcweir 
51cdf0e10cSrcweir 
52cdf0e10cSrcweir #define FADE_STEP	"FadeSteps"
53cdf0e10cSrcweir #define FADE_ATTRIB	"FadeAttributes"
54cdf0e10cSrcweir #define FADE_ORIENT	"FadeOrientation"
55cdf0e10cSrcweir #define FADE_TRUE	"true"
56cdf0e10cSrcweir #define FADE_FALSE	"false"
57cdf0e10cSrcweir 
58cdf0e10cSrcweir 
59cdf0e10cSrcweir /******************************************************************************/
60cdf0e10cSrcweir 
61cdf0e10cSrcweir 
62cdf0e10cSrcweir /******************************************************************************
63cdf0e10cSrcweir |*
64cdf0e10cSrcweir |*
65cdf0e10cSrcweir |*
66cdf0e10cSrcweir \******************************************************************************/
67cdf0e10cSrcweir 
MorphDlg(::Window * pParent,const SdrObject * pObj1,const SdrObject * pObj2)68cdf0e10cSrcweir MorphDlg::MorphDlg( ::Window* pParent, const SdrObject* pObj1, const SdrObject* pObj2 ) :
69cdf0e10cSrcweir 			ModalDialog     ( pParent, SdResId( DLG_MORPH ) ),
70cdf0e10cSrcweir 			aGrpPreset      ( this, SdResId( GRP_PRESET ) ),
71cdf0e10cSrcweir 			aFtSteps        ( this, SdResId( FT_STEPS ) ),
72cdf0e10cSrcweir 			aMtfSteps       ( this, SdResId( MTF_STEPS ) ),
73cdf0e10cSrcweir 			aCbxAttributes  ( this, SdResId( CBX_ATTRIBUTES ) ),
74cdf0e10cSrcweir 			aCbxOrientation ( this, SdResId( CBX_ORIENTATION ) ),
75cdf0e10cSrcweir 			aBtnOK          ( this, SdResId( BTN_OK ) ),
76cdf0e10cSrcweir 			aBtnCancel      ( this, SdResId( BTN_CANCEL ) ),
77cdf0e10cSrcweir 			aBtnHelp        ( this, SdResId( BTN_HELP ) )
78cdf0e10cSrcweir {
79cdf0e10cSrcweir 	FreeResource();
80cdf0e10cSrcweir 	LoadSettings();
81cdf0e10cSrcweir 
82cdf0e10cSrcweir 	SfxItemPool*	pPool = (SfxItemPool*) pObj1->GetObjectItemPool();
83cdf0e10cSrcweir 	SfxItemSet		aSet1( *pPool );
84cdf0e10cSrcweir 	SfxItemSet		aSet2( *pPool );
85cdf0e10cSrcweir 
86cdf0e10cSrcweir 	aSet1.Put(pObj1->GetMergedItemSet());
87cdf0e10cSrcweir 	aSet2.Put(pObj2->GetMergedItemSet());
88cdf0e10cSrcweir 
89cdf0e10cSrcweir 	const XLineStyle	eLineStyle1 = ( (const XLineStyleItem&) aSet1.Get( XATTR_LINESTYLE ) ).GetValue();
90cdf0e10cSrcweir 	const XLineStyle	eLineStyle2 = ( (const XLineStyleItem&) aSet2.Get( XATTR_LINESTYLE ) ).GetValue();
91cdf0e10cSrcweir 	const XFillStyle	eFillStyle1 = ( (const XFillStyleItem&) aSet1.Get( XATTR_FILLSTYLE ) ).GetValue();
92cdf0e10cSrcweir 	const XFillStyle	eFillStyle2 = ( (const XFillStyleItem&) aSet2.Get( XATTR_FILLSTYLE ) ).GetValue();
93cdf0e10cSrcweir 
94cdf0e10cSrcweir 	if ( ( ( eLineStyle1 == XLINE_NONE ) || ( eLineStyle2 == XLINE_NONE ) ) &&
95cdf0e10cSrcweir 		 ( ( eFillStyle1 != XFILL_SOLID ) || ( eFillStyle2 != XFILL_SOLID ) ) )
96cdf0e10cSrcweir 	{
97cdf0e10cSrcweir 		aCbxAttributes.Disable();
98cdf0e10cSrcweir 	}
99cdf0e10cSrcweir }
100cdf0e10cSrcweir 
101cdf0e10cSrcweir 
102cdf0e10cSrcweir /******************************************************************************
103cdf0e10cSrcweir |*
104cdf0e10cSrcweir |*
105cdf0e10cSrcweir |*
106cdf0e10cSrcweir \******************************************************************************/
107cdf0e10cSrcweir 
~MorphDlg()108cdf0e10cSrcweir MorphDlg::~MorphDlg()
109cdf0e10cSrcweir {
110cdf0e10cSrcweir }
111cdf0e10cSrcweir 
112cdf0e10cSrcweir 
113cdf0e10cSrcweir /******************************************************************************
114cdf0e10cSrcweir |*
115cdf0e10cSrcweir |*
116cdf0e10cSrcweir |*
117cdf0e10cSrcweir \******************************************************************************/
118cdf0e10cSrcweir 
LoadSettings()119cdf0e10cSrcweir void MorphDlg::LoadSettings()
120cdf0e10cSrcweir {
121cdf0e10cSrcweir 	SvStorageStreamRef	xIStm( SD_MOD()->GetOptionStream( UniString::CreateFromAscii(
122cdf0e10cSrcweir 		                       RTL_CONSTASCII_STRINGPARAM( SD_OPTION_MORPHING ) ),
123cdf0e10cSrcweir 							   SD_OPTION_LOAD ) );
124cdf0e10cSrcweir 	sal_uInt16				nSteps;
125cdf0e10cSrcweir 	sal_Bool				bOrient, bAttrib;
126cdf0e10cSrcweir 
127cdf0e10cSrcweir 	if( xIStm.Is() )
128cdf0e10cSrcweir 	{
129cdf0e10cSrcweir 		SdIOCompat aCompat( *xIStm, STREAM_READ );
130cdf0e10cSrcweir 
131cdf0e10cSrcweir 		*xIStm >> nSteps >> bOrient >> bAttrib;
132cdf0e10cSrcweir 	}
133cdf0e10cSrcweir 	else
134cdf0e10cSrcweir 	{
135cdf0e10cSrcweir 		nSteps = 16;
136cdf0e10cSrcweir 		bOrient = bAttrib = sal_True;
137cdf0e10cSrcweir 	}
138cdf0e10cSrcweir 
139cdf0e10cSrcweir 	aMtfSteps.SetValue( nSteps );
140cdf0e10cSrcweir 	aCbxOrientation.Check( bOrient );
141cdf0e10cSrcweir 	aCbxAttributes.Check( bAttrib );
142cdf0e10cSrcweir }
143cdf0e10cSrcweir 
144cdf0e10cSrcweir // -----------------------------------------------------------------------------
145cdf0e10cSrcweir 
SaveSettings() const146cdf0e10cSrcweir void MorphDlg::SaveSettings() const
147cdf0e10cSrcweir {
148cdf0e10cSrcweir 	SvStorageStreamRef xOStm( SD_MOD()->GetOptionStream( UniString::CreateFromAscii(
149cdf0e10cSrcweir 		                       RTL_CONSTASCII_STRINGPARAM( SD_OPTION_MORPHING ) ),
150cdf0e10cSrcweir 							   SD_OPTION_STORE ) );
151cdf0e10cSrcweir 
152cdf0e10cSrcweir 	if( xOStm.Is() )
153cdf0e10cSrcweir 	{
154cdf0e10cSrcweir 		SdIOCompat aCompat( *xOStm, STREAM_WRITE, 1 );
155cdf0e10cSrcweir 
156cdf0e10cSrcweir 		*xOStm << (sal_uInt16) aMtfSteps.GetValue()
157cdf0e10cSrcweir 			   << aCbxOrientation.IsChecked()
158cdf0e10cSrcweir 			   << aCbxAttributes.IsChecked();
159cdf0e10cSrcweir 	}
160cdf0e10cSrcweir }
161cdf0e10cSrcweir 
162cdf0e10cSrcweir } // end of namespace sd
163