1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_SD_SOURCE_UI_INC_TASKPANE_SLIDESORTERCACHEDISPLAY_HXX
#define INCLUDED_SD_SOURCE_UI_INC_TASKPANE_SLIDESORTERCACHEDISPLAY_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>
class Window;
#include "svx/svdpage.hxx"
#include "drawdoc.hxx"
namespace sd { namespace toolpanel {
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 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
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|