Files
libreoffice/sd/source/ui/inc/taskpane/SlideSorterCacheDisplay.hxx
Rüdiger Timm 5d2f6f08a8 INTEGRATION: CWS pj42 (1.2.20); FILE MERGED
2005/11/10 21:58:58 pjanik 1.2.20.1: #i57567#: Remove SISSL license.
2005-11-11 09:47:11 +00:00

211 lines
6.6 KiB
C++

/*************************************************************************
*
* $RCSfile: SlideSorterCacheDisplay.hxx,v $
*
* $Revision: 1.3 $
*
* last change: $Author: rt $ $Date: 2005-11-11 10:47:11 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 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
*
************************************************************************/
#ifndef SD_TASKPANE_SLIDE_SORTER_CACHE_DISPLAY_HXX
#define SD_TASKPANE_SLIDE_SORTER_CACHE_DISPLAY_HXX
// Uncomment the define below to activate the slide sorter cache display in
// the task pane. Visible slide previews are displayed as large rectangles,
// off-screen previews as smaller rectangles. The color shows the state:
// green for no action, different shades of yellow for a request being in
// the queue, pink for currently being rendered. A diagonal line indicates
// that the preview is not up-to-date.
#ifdef DEBUG
//#define USE_SLIDE_SORTER_CACHE_DISPLAY
#endif
#ifdef USE_SLIDE_SORTER_CACHE_DISPLAY
#include <taskpane/TaskPaneTreeNode.hxx>
#include <map>
#include <vector>
#include <memory>
class Window;
#include "svx/svdpage.hxx"
#include "drawdoc.hxx"
namespace sd { namespace toolpanel {
class ControlFactory;
class TreeNode;
/** This panel demonstrates how to create a panel for the task pane.
*/
class SlideSorterCacheDisplay
: public TreeNode
{
public:
SlideSorterCacheDisplay (const SdDrawDocument* pDocument);
virtual ~SlideSorterCacheDisplay (void);
void SetParentWindow (::Window* pParentWindow);
virtual void Paint (const Rectangle& rBoundingBox);
virtual void Resize (void);
static std::auto_ptr<ControlFactory> CreateControlFactory (const SdDrawDocument* pDocument);
static SlideSorterCacheDisplay* Instance (const SdDrawDocument* pDocument);
void SetPageCount (sal_Int32 nPageCount);
enum PageStatus {
NONE,
IN_QUEUE_PRIORITY_0,
IN_QUEUE_PRIORITY_1,
IN_QUEUE_PRIORITY_2,
RENDERING
};
void SetPageStatus (sal_Int32 nPageIndex, PageStatus eStatus);
void SetPageVisibility (sal_Int32 nPageIndex, bool bVisible);
void SetUpToDate (sal_Int32 nPageIndex, bool bUpToDate);
virtual Size GetPreferredSize (void);
virtual sal_Int32 GetPreferredWidth (sal_Int32 nHeigh);
virtual sal_Int32 GetPreferredHeight (sal_Int32 nWidth);
virtual ::Window* GetWindow (void);
virtual bool IsResizable (void);
virtual bool IsExpandable (void) const;
virtual bool IsExpanded (void) const;
private:
static ::std::map<const SdDrawDocument*, SlideSorterCacheDisplay*> maDisplays;
static void AddInstance (const SdDrawDocument* pDocument, SlideSorterCacheDisplay* pControl);
static void RemoveInstance (SlideSorterCacheDisplay* pControl);
::Window* mpWindow;
sal_Int32 mnPageCount;
sal_Int32 mnColumnCount;
sal_Int32 mnRowCount;
Size maCellSize;
sal_Int32 mnHorizontalBorder;
sal_Int32 mnVerticalBorder;
sal_Int32 mnHorizontalGap;
sal_Int32 mnVerticalGap;
class PageDescriptor
{
public:
PageStatus meStatus;
bool mbVisible;
bool mbUpToDate;
};
typedef ::std::vector<PageDescriptor> PageDescriptorList;
PageDescriptorList maPageDescriptors;
Rectangle GetPageBox (sal_Int32 nPageIndex);
void ProvideSize (sal_Int32 nPageIndex);
void PaintPage (sal_Int32 nPageIndex);
};
} } // end of namespace ::sd::toolpanel
namespace {
void SscdSetStatus (const SdrPage* pPage,
::sd::toolpanel::SlideSorterCacheDisplay::PageStatus eStatus)
{
::sd::toolpanel::SlideSorterCacheDisplay* pDisplay
= ::sd::toolpanel::SlideSorterCacheDisplay::Instance(
dynamic_cast<SdDrawDocument*>(pPage->GetModel()));
if (pDisplay != NULL)
pDisplay->SetPageStatus((pPage->GetPageNum()-1)/2, eStatus);
}
void SscdSetRequestClass (const SdrPage* pPage, sal_Int32 nClass)
{
sd::toolpanel::SlideSorterCacheDisplay::PageStatus eStatus;
switch (nClass)
{
case 0:
eStatus = ::sd::toolpanel::SlideSorterCacheDisplay::IN_QUEUE_PRIORITY_0; break;
case 1:
eStatus = ::sd::toolpanel::SlideSorterCacheDisplay::IN_QUEUE_PRIORITY_1; break;
case 2:
eStatus = ::sd::toolpanel::SlideSorterCacheDisplay::IN_QUEUE_PRIORITY_2; break;
default:
eStatus = ::sd::toolpanel::SlideSorterCacheDisplay::NONE; break;
}
SscdSetStatus(pPage,eStatus);
}
void SscdSetVisibility (const SdrModel* pModel, sal_Int32 nIndex, bool bVisible)
{
::sd::toolpanel::SlideSorterCacheDisplay* pDisplay
= ::sd::toolpanel::SlideSorterCacheDisplay::Instance(
dynamic_cast<const SdDrawDocument*>(pModel));
if (pDisplay != NULL)
pDisplay->SetPageVisibility(nIndex, bVisible);
}
void SscdSetUpToDate (const SdrPage* pPage, bool bUpToDate)
{
::sd::toolpanel::SlideSorterCacheDisplay* pDisplay
= ::sd::toolpanel::SlideSorterCacheDisplay::Instance(
dynamic_cast<const SdDrawDocument*>(pPage->GetModel()));
if (pDisplay != NULL)
pDisplay->SetUpToDate((pPage->GetPageNum()-1)/2, bUpToDate);
}
#define SSCD_SET_REQUEST_CLASS(Page,RequestClass) \
SscdSetRequestClass(Page,RequestClass)
#define SSCD_SET_STATUS(RequestData,Status) \
SscdSetStatus(RequestData,::sd::toolpanel::SlideSorterCacheDisplay::Status)
#define SSCD_SET_VISIBILITY(Model,Index,Visible) \
SscdSetVisibility(Model,Index,Visible)
#define SSCD_SET_UPTODATE(Page,UpToDate) \
SscdSetUpToDate(Page,UpToDate)
}
#else
#define SSCD_SET_REQUEST_CLASS(Page,RequestClass)
#define SSCD_SET_STATUS(RequestData,Status)
#define SSCD_SET_VISIBILITY(Model,Index,Visible)
#define SSCD_SET_UPTODATE(Page,UpToDate)
#endif
#endif