summaryrefslogtreecommitdiff
path: root/svx/inc/svx/svdopage.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/inc/svx/svdopage.hxx')
-rw-r--r--svx/inc/svx/svdopage.hxx78
1 files changed, 78 insertions, 0 deletions
diff --git a/svx/inc/svx/svdopage.hxx b/svx/inc/svx/svdopage.hxx
new file mode 100644
index 000000000000..62ef24ab8611
--- /dev/null
+++ b/svx/inc/svx/svdopage.hxx
@@ -0,0 +1,78 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+#ifndef _SVDOPAGE_HXX
+#define _SVDOPAGE_HXX
+
+#include <svx/svdobj.hxx>
+#include <svx/sdrpageuser.hxx>
+#include "svx/svxdllapi.h"
+
+class SVX_DLLPUBLIC SdrPageObj : public SdrObject, public sdr::PageUser
+{
+public:
+ // this method is called form the destructor of the referenced page.
+ // do all necessary action to forget the page. It is not necessary to call
+ // RemovePageUser(), that is done form the destructor.
+ virtual void PageInDestruction(const SdrPage& rPage);
+
+private:
+ // #111111#
+ // To make things more safe, remember the page, not a number
+ SdrPage* mpShownPage;
+
+protected:
+ virtual sdr::contact::ViewContact* CreateObjectSpecificViewContact();
+ virtual sdr::properties::BaseProperties* CreateObjectSpecificProperties();
+
+public:
+ TYPEINFO();
+ SdrPageObj(SdrPage* pNewPage = 0L);
+ SdrPageObj(const Rectangle& rRect, SdrPage* pNewPage = 0L);
+ ~SdrPageObj();
+
+ // #111111#
+ SdrPage* GetReferencedPage() const;
+ void SetReferencedPage(SdrPage* pNewPage);
+
+ // #i96598#
+ virtual void SetBoundRectDirty();
+
+ virtual UINT16 GetObjIdentifier() const;
+ virtual void TakeObjInfo(SdrObjTransformInfoRec& rInfo) const;
+ virtual void operator=(const SdrObject& rObj);
+
+ virtual void TakeObjNameSingul(String& rName) const;
+ virtual void TakeObjNamePlural(String& rName) const;
+};
+
+////////////////////////////////////////////////////////////////////////////////////////////////////
+
+#endif //_SVDOPAGE_HXX
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */