summaryrefslogtreecommitdiffstats
path: root/sc/inc/undorangename.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kyoshida@novell.com>2011-03-15 14:50:20 -0400
committerKohei Yoshida <kyoshida@novell.com>2011-03-15 23:51:41 -0400
commit3098641cba6f749f3be091fd70af483aa709f25b (patch)
tree426f2951e206997c11e523ab83764b124408e79f /sc/inc/undorangename.hxx
parentImplement ModifyAllRangeNames(), minus undo. (diff)
downloadcore-3098641cba6f749f3be091fd70af483aa709f25b.tar.gz
core-3098641cba6f749f3be091fd70af483aa709f25b.zip
Added skeleton for undo of all range names, global and local.
Diffstat (limited to 'sc/inc/undorangename.hxx')
-rw-r--r--sc/inc/undorangename.hxx63
1 files changed, 63 insertions, 0 deletions
diff --git a/sc/inc/undorangename.hxx b/sc/inc/undorangename.hxx
new file mode 100644
index 000000000000..ee8fc41ad3fd
--- /dev/null
+++ b/sc/inc/undorangename.hxx
@@ -0,0 +1,63 @@
+/*
+ * Version: MPL 1.1 / GPLv3+ / LGPLv3+
+ *
+ * The contents of this file are subject to the Mozilla Public License Version
+ * 1.1 (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ * http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+ * for the specific language governing rights and limitations under the
+ * License.
+ *
+ * The Initial Developer of the Original Code is
+ * Kohei Yoshida <kyoshida@novell.com> (Novell, Inc)
+ * Portions created by the Initial Developer are Copyright (C) 2010 the
+ * Initial Developer. All Rights Reserved.
+ *
+ * Contributor(s):
+ *
+ * Alternatively, the contents of this file may be used under the terms of
+ * either the GNU General Public License Version 3 or later (the "GPLv3+"), or
+ * the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
+ * in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
+ * instead of those above.
+ */
+
+#ifndef __SC_UNDORANGENAME_HXX__
+#define __SC_UNDORANGENAME_HXX__
+
+#include "undobase.hxx"
+#include "rangenam.hxx"
+
+class ScDocShell;
+
+/**
+ * Undo object for named ranges, both in global and sheet-local scopes.
+ */
+class ScUndoAllRangeNames : public ScSimpleUndo
+{
+public:
+ ScUndoAllRangeNames(ScDocShell* pDocSh,
+ const ScRangeName* pOldGlobal,
+ const ScRangeName* pNewGlobal,
+ const ScRangeName::TabNameCopyMap& rOldLocal,
+ const ScRangeName::TabNameCopyMap& rNewLocal);
+
+ virtual ~ScUndoAllRangeNames();
+
+ virtual void Undo();
+ virtual void Redo();
+ virtual void Repeat(SfxRepeatTarget& rTarget);
+ virtual BOOL CanRepeat(SfxRepeatTarget& rTarget) const;
+ virtual String GetComment() const;
+
+private:
+ ScRangeName maOldGlobalNames;
+ ScRangeName maNewGlobalNames;
+ ScRangeName::TabNameMap maOldLocalNames;
+ ScRangeName::TabNameMap maNewLocalNames;
+};
+
+#endif