1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24 #ifndef SC_UNDODRAW_HXX 25 #define SC_UNDODRAW_HXX 26 27 #include <svl/undo.hxx> 28 29 class ScDocShell; 30 31 class ScUndoDraw: public SfxUndoAction 32 { 33 SfxUndoAction* pDrawUndo; 34 ScDocShell* pDocShell; 35 36 void UpdateSubShell(); 37 38 public: 39 TYPEINFO(); 40 ScUndoDraw( SfxUndoAction* pUndo, ScDocShell* pDocSh ); 41 virtual ~ScUndoDraw(); 42 GetDrawUndo()43 SfxUndoAction* GetDrawUndo() { return pDrawUndo; } 44 void ForgetDrawUndo(); 45 46 virtual void SetLinkToSfxLinkUndoAction(SfxLinkUndoAction* pSfxLinkUndoAction); 47 48 virtual void Undo(); 49 virtual void Redo(); 50 virtual void Repeat(SfxRepeatTarget& rTarget); 51 virtual sal_Bool CanRepeat(SfxRepeatTarget& rTarget) const; 52 virtual sal_Bool Merge( SfxUndoAction *pNextAction ); 53 virtual String GetComment() const; 54 virtual String GetRepeatComment(SfxRepeatTarget&) const; 55 virtual sal_uInt16 GetId() const; 56 }; 57 58 59 60 #endif 61 62