summaryrefslogtreecommitdiff
path: root/sd/source/ui/toolpanel/controls/MasterPagesSelector.hxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-07-13 13:45:16 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-07-13 13:45:16 +0000
commit36b6b9311c21cee0a922ca63ea859f7aa46f306d (patch)
tree18e51241660973069d67448ae0bcad50cd3f6a62 /sd/source/ui/toolpanel/controls/MasterPagesSelector.hxx
parent7d5dbe3dec0a95a0f33afb86f91167215e45b276 (diff)
INTEGRATION: CWS impress2 (1.1.2); FILE ADDED
2004/07/04 13:42:03 af 1.1.2.11: #i22705# Added AddItemForToken() method. 2004/07/02 12:24:12 af 1.1.2.10: #i22705# Added Clear() method. 2004/07/01 11:40:35 af 1.1.2.9: #i22705# Added methods UpdateSelection() and Fill(). 2004/06/23 13:06:16 af 1.1.2.8: #i22705# Removed ::Control base class. The value set is returned now by GetWindow(). 2004/06/09 13:50:51 af 1.1.2.7: #i22705# Code cleanup. 2004/06/08 12:33:57 af 1.1.2.6: #i22705# Converted int to sal_Int32 in ILayoutableWindow interface. Added GetMinimumWidth() function. 2004/06/04 06:14:49 af 1.1.2.5: #i22705# Adaption to new base class TreeNode. Class is now a shell. 2004/05/23 14:01:53 af 1.1.2.4: #i22705# mpPageSet is now an auto pointer. 2004/05/19 13:58:51 af 1.1.2.3: #i22705# Support of ILayoutableWindow. 2004/05/10 09:10:25 af 1.1.2.2: #i22705# Added a PreviewRenderer member. Fixed calculation of required size. 2004/05/05 12:36:31 af 1.1.2.1: #i22705# Initial revision.
Diffstat (limited to 'sd/source/ui/toolpanel/controls/MasterPagesSelector.hxx')
-rw-r--r--sd/source/ui/toolpanel/controls/MasterPagesSelector.hxx200
1 files changed, 200 insertions, 0 deletions
diff --git a/sd/source/ui/toolpanel/controls/MasterPagesSelector.hxx b/sd/source/ui/toolpanel/controls/MasterPagesSelector.hxx
new file mode 100644
index 000000000000..ee8a2ace3eef
--- /dev/null
+++ b/sd/source/ui/toolpanel/controls/MasterPagesSelector.hxx
@@ -0,0 +1,200 @@
+/*************************************************************************
+ *
+ * $RCSfile: MasterPagesSelector.hxx,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: rt $ $Date: 2004-07-13 14:45:16 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library 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 for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source 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.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+#ifndef SD_TOOLPANEL_CONTROLS_MASTER_PAGES_SELECTOR_HXX
+#define SD_TOOLPANEL_CONTROLS_MASTER_PAGES_SELECTOR_HXX
+
+#include "../TaskPaneTreeNode.hxx"
+#include "MasterPageContainer.hxx"
+
+#ifndef _PRESENTATION_HXX
+#include "pres.hxx"
+#endif
+#include <sfx2/shell.hxx>
+#include <vcl/image.hxx>
+#include "glob.hxx"
+
+class MouseEvent;
+class SdDrawDocument;
+class SdPage;
+class SfxModule;
+
+namespace sd {
+class DrawViewShell;
+class TemplateEntry;
+class TemplateDir;
+class ViewShellBase;
+}
+
+namespace sd { namespace toolpanel { namespace controls {
+
+class PreviewValueSet;
+
+/** Base class of a menu that lets the user select from a list of
+ templates or designs that are loaded from files.
+*/
+class MasterPagesSelector
+ : public TreeNode,
+ public SfxShell
+{
+public:
+ static const int snSmallPreviewWidth;
+ static const int snLargePreviewWidth;
+
+ TYPEINFO();
+ SFX_DECL_INTERFACE(SD_IF_SDMASTERPAGESSELECTOR);
+
+ MasterPagesSelector (
+ TreeNode* pParent,
+ SdDrawDocument& rDocument,
+ ViewShellBase& rBase);
+ virtual ~MasterPagesSelector (void);
+
+ virtual void LateInit (void);
+
+ /** Return the height that this control needs to show all of its lines.
+ */
+ long GetRequiredHeight (int nWidth) const;
+
+ /** The given master page, either the master page of a slide or a notes
+ page, is cloned and inserted into mrDocument. The necessary styles
+ are copied as well.
+ */
+ static SdPage* AddMasterPage (
+ SdDrawDocument* pTargetDocument,
+ SdPage* pMasterPage);
+
+ virtual Size GetPreferredSize (void);
+ virtual sal_Int32 GetPreferredWidth (sal_Int32 nHeight);
+ virtual sal_Int32 GetPreferredHeight (sal_Int32 nWidth);
+ virtual bool IsResizable (void);
+ virtual ::Window* GetWindow (void);
+ virtual sal_Int32 GetMinimumWidth (void);
+
+ void Execute (SfxRequest& rRequest);
+ void GetState (SfxItemSet& rItemSet);
+
+ void SetPreviewWidth (int nPreviewWidth);
+
+ /** Update the selection of previews according to whatever
+ influences them appart from mouse and keyboard. If, for
+ example, the current page of the main pane changes, then call
+ this method at the CurrentMasterPagesSelector to select the
+ previews of the master pages that are assigned to the new
+ current page.
+ */
+ virtual void UpdateSelection (void);
+
+ virtual void Fill (void);
+ virtual void Clear (void);
+
+protected:
+ SdDrawDocument& mrDocument;
+ ::std::auto_ptr<PreviewValueSet> mpPageSet;
+ int mnPreviewWidth;
+ ViewShellBase& mrBase;
+
+ SdPage* GetSelectedMasterPage (void);
+
+ /** Assign the given master page to all slides of the document.
+ @param pMasterPage
+ The master page to assign to all slides.
+ */
+ void AssignMasterPageToAllSlides (SdPage* pMasterPage);
+
+ /** Assign the given master page to all slides that are selected in a
+ slide sorter that is displayed in the lef or center pane. When both
+ panes display a slide sorter then the one in the center pane is
+ used.
+ */
+ void AssignMasterPageToSelectedSlides (SdPage* pMasterPage);
+
+ void AddItemForPage (
+ const String& sURL,
+ const String& sPageName,
+ SdPage* pMasterPage,
+ Image aPreview,
+ bool bCreatePreview = true);
+ void AddItemForToken (
+ MasterPageContainer::Token aToken,
+ bool bCreatePreview = true);
+
+ /** Ask the master page container for the previews of all items and set
+ them to the value set. Call this function when the size of the
+ previews has changed.
+ */
+ void FillPreviews (void);
+
+ DECL_LINK(PreviewAvailableCallback, void*);
+
+private:
+ DECL_LINK(ClickHandler, PreviewValueSet*);
+ DECL_LINK(RightClickHandler, MouseEvent*);
+
+ static void ProvideStyles (
+ SdDrawDocument* pSourceDoc,
+ SdDrawDocument* pTargetDoc,
+ SdPage* pPage);
+};
+
+} } } // end of namespace ::sd::toolpanel::controls
+
+#endif