xref: /trunk/main/sc/source/ui/inc/undostyl.hxx (revision 914d351e5f5b84e4342a86d6ab8d4aca7308b9bd)
1*38d50f7bSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*38d50f7bSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*38d50f7bSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*38d50f7bSAndrew Rist  * distributed with this work for additional information
6*38d50f7bSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*38d50f7bSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*38d50f7bSAndrew Rist  * "License"); you may not use this file except in compliance
9*38d50f7bSAndrew Rist  * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir  *
11*38d50f7bSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir  *
13*38d50f7bSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*38d50f7bSAndrew Rist  * software distributed under the License is distributed on an
15*38d50f7bSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*38d50f7bSAndrew Rist  * KIND, either express or implied.  See the License for the
17*38d50f7bSAndrew Rist  * specific language governing permissions and limitations
18*38d50f7bSAndrew Rist  * under the License.
19cdf0e10cSrcweir  *
20*38d50f7bSAndrew Rist  *************************************************************/
21*38d50f7bSAndrew Rist 
22*38d50f7bSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef SC_UNDOSTYL_HXX
25cdf0e10cSrcweir #define SC_UNDOSTYL_HXX
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #include <rsc/rscsfx.hxx>
28cdf0e10cSrcweir #include "undobase.hxx"
29cdf0e10cSrcweir 
30cdf0e10cSrcweir class ScDocShell;
31cdf0e10cSrcweir class SfxStyleSheetBase;
32cdf0e10cSrcweir 
33cdf0e10cSrcweir //----------------------------------------------------------------------------
34cdf0e10cSrcweir 
35cdf0e10cSrcweir class ScStyleSaveData
36cdf0e10cSrcweir {
37cdf0e10cSrcweir private:
38cdf0e10cSrcweir     String          aName;
39cdf0e10cSrcweir     String          aParent;
40cdf0e10cSrcweir     SfxItemSet*     pItems;
41cdf0e10cSrcweir 
42cdf0e10cSrcweir public:
43cdf0e10cSrcweir                         ScStyleSaveData();
44cdf0e10cSrcweir                         ScStyleSaveData( const ScStyleSaveData& rOther );
45cdf0e10cSrcweir                         ~ScStyleSaveData();
46cdf0e10cSrcweir     ScStyleSaveData&    operator=( const ScStyleSaveData& rOther );
47cdf0e10cSrcweir 
48cdf0e10cSrcweir     void                InitFromStyle( const SfxStyleSheetBase* pSource );
49cdf0e10cSrcweir 
GetName() const50cdf0e10cSrcweir     const String&       GetName() const     { return aName; }
GetParent() const51cdf0e10cSrcweir     const String&       GetParent() const   { return aParent; }
GetItems() const52cdf0e10cSrcweir     const SfxItemSet*   GetItems() const    { return pItems; }
53cdf0e10cSrcweir };
54cdf0e10cSrcweir 
55cdf0e10cSrcweir class ScUndoModifyStyle: public ScSimpleUndo
56cdf0e10cSrcweir {
57cdf0e10cSrcweir private:
58cdf0e10cSrcweir     SfxStyleFamily  eFamily;
59cdf0e10cSrcweir     ScStyleSaveData aOldData;
60cdf0e10cSrcweir     ScStyleSaveData aNewData;
61cdf0e10cSrcweir 
62cdf0e10cSrcweir     static void     DoChange( ScDocShell* pDocSh,
63cdf0e10cSrcweir                                 const String& rName, SfxStyleFamily eStyleFamily,
64cdf0e10cSrcweir                                 const ScStyleSaveData& rData );
65cdf0e10cSrcweir 
66cdf0e10cSrcweir public:
67cdf0e10cSrcweir                     TYPEINFO();
68cdf0e10cSrcweir                     ScUndoModifyStyle( ScDocShell* pDocSh,
69cdf0e10cSrcweir                                         SfxStyleFamily eFam,
70cdf0e10cSrcweir                                         const ScStyleSaveData& rOld,
71cdf0e10cSrcweir                                         const ScStyleSaveData& rNew );
72cdf0e10cSrcweir     virtual         ~ScUndoModifyStyle();
73cdf0e10cSrcweir 
74cdf0e10cSrcweir     virtual void    Undo();
75cdf0e10cSrcweir     virtual void    Redo();
76cdf0e10cSrcweir     virtual void    Repeat(SfxRepeatTarget& rTarget);
77cdf0e10cSrcweir     virtual sal_Bool    CanRepeat(SfxRepeatTarget& rTarget) const;
78cdf0e10cSrcweir 
79cdf0e10cSrcweir     virtual String  GetComment() const;
80cdf0e10cSrcweir };
81cdf0e10cSrcweir 
82cdf0e10cSrcweir class ScUndoApplyPageStyle: public ScSimpleUndo
83cdf0e10cSrcweir {
84cdf0e10cSrcweir public:
85cdf0e10cSrcweir                     TYPEINFO();
86cdf0e10cSrcweir                     ScUndoApplyPageStyle( ScDocShell* pDocSh, const String& rNewStyle );
87cdf0e10cSrcweir     virtual         ~ScUndoApplyPageStyle();
88cdf0e10cSrcweir 
89cdf0e10cSrcweir     void            AddSheetAction( SCTAB nTab, const String& rOld );
90cdf0e10cSrcweir 
91cdf0e10cSrcweir     virtual void    Undo();
92cdf0e10cSrcweir     virtual void    Redo();
93cdf0e10cSrcweir     virtual void    Repeat(SfxRepeatTarget& rTarget);
94cdf0e10cSrcweir     virtual sal_Bool    CanRepeat(SfxRepeatTarget& rTarget) const;
95cdf0e10cSrcweir 
96cdf0e10cSrcweir     virtual String  GetComment() const;
97cdf0e10cSrcweir 
98cdf0e10cSrcweir private:
99cdf0e10cSrcweir     struct ApplyStyleEntry
100cdf0e10cSrcweir     {
101cdf0e10cSrcweir         SCTAB           mnTab;
102cdf0e10cSrcweir         String          maOldStyle;
103cdf0e10cSrcweir         explicit        ApplyStyleEntry( SCTAB nTab, const String& rOldStyle );
104cdf0e10cSrcweir     };
105cdf0e10cSrcweir     typedef ::std::vector< ApplyStyleEntry > ApplyStyleVec;
106cdf0e10cSrcweir 
107cdf0e10cSrcweir     ApplyStyleVec   maEntries;
108cdf0e10cSrcweir     String          maNewStyle;
109cdf0e10cSrcweir };
110cdf0e10cSrcweir 
111cdf0e10cSrcweir 
112cdf0e10cSrcweir #endif
113