2012-07-14 17:46:22 -05:00
|
|
|
/* -*- 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/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sfx2/templateabstractview.hxx>
|
2012-12-18 03:18:03 -06:00
|
|
|
#include <sfx2/templatecontaineritem.hxx>
|
2012-07-14 17:46:22 -05:00
|
|
|
|
2012-07-29 15:13:18 -05:00
|
|
|
#include <comphelper/processfactory.hxx>
|
2012-07-14 19:55:13 -05:00
|
|
|
#include <sfx2/templateview.hxx>
|
2012-07-29 23:00:47 -05:00
|
|
|
#include <sfx2/templateviewitem.hxx>
|
2012-12-12 15:33:49 -06:00
|
|
|
#include <tools/urlobj.hxx>
|
2012-07-29 15:13:18 -05:00
|
|
|
#include <unotools/ucbstreamhelper.hxx>
|
|
|
|
#include <vcl/pngread.hxx>
|
|
|
|
|
|
|
|
#include <com/sun/star/embed/ElementModes.hpp>
|
|
|
|
#include <com/sun/star/embed/XStorage.hpp>
|
2012-12-03 08:33:30 -06:00
|
|
|
#include <com/sun/star/embed/StorageFactory.hpp>
|
2012-07-29 15:13:18 -05:00
|
|
|
#include <com/sun/star/lang/XComponent.hpp>
|
|
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
|
|
#include <com/sun/star/lang/XSingleServiceFactory.hpp>
|
2012-07-14 19:55:13 -05:00
|
|
|
|
2012-12-12 15:33:49 -06:00
|
|
|
bool ViewFilter_Application::isValid (const OUString &rPath) const
|
2012-07-29 23:00:47 -05:00
|
|
|
{
|
2012-12-12 15:33:49 -06:00
|
|
|
bool bRet = true;
|
2012-07-29 23:00:47 -05:00
|
|
|
|
2012-12-12 15:33:49 -06:00
|
|
|
INetURLObject aUrl(rPath);
|
|
|
|
OUString aExt = aUrl.getExtension();
|
2012-07-29 23:00:47 -05:00
|
|
|
if (mApp == FILTER_APP_WRITER)
|
|
|
|
{
|
2012-12-12 15:33:49 -06:00
|
|
|
bRet = aExt == "ott" || aExt == "stw" || aExt == "oth" || aExt == "dot" || aExt == "dotx";
|
2012-07-29 23:00:47 -05:00
|
|
|
}
|
|
|
|
else if (mApp == FILTER_APP_CALC)
|
|
|
|
{
|
2012-12-12 15:33:49 -06:00
|
|
|
bRet = aExt == "ots" || aExt == "stc" || aExt == "xlt" || aExt == "xltm" || aExt == "xltx";
|
2012-07-29 23:00:47 -05:00
|
|
|
}
|
|
|
|
else if (mApp == FILTER_APP_IMPRESS)
|
|
|
|
{
|
2012-12-12 15:33:49 -06:00
|
|
|
bRet = aExt == "otp" || aExt == "sti" || aExt == "pot" || aExt == "potm" || aExt == "potx";
|
2012-07-29 23:00:47 -05:00
|
|
|
}
|
|
|
|
else if (mApp == FILTER_APP_DRAW)
|
|
|
|
{
|
2012-12-12 15:33:49 -06:00
|
|
|
bRet = aExt == "otg" || aExt == "std";
|
2012-07-29 23:00:47 -05:00
|
|
|
}
|
|
|
|
|
2012-12-12 15:33:49 -06:00
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ViewFilter_Application::operator () (const ThumbnailViewItem *pItem)
|
|
|
|
{
|
2012-12-18 03:18:03 -06:00
|
|
|
const TemplateViewItem *pTempItem = dynamic_cast<const TemplateViewItem*>(pItem);
|
|
|
|
if (pTempItem)
|
|
|
|
return isValid(pTempItem->getPath());
|
2012-12-12 15:33:49 -06:00
|
|
|
|
2012-12-18 03:18:03 -06:00
|
|
|
TemplateContainerItem *pContainerItem = const_cast<TemplateContainerItem*>(dynamic_cast<const TemplateContainerItem*>(pItem));
|
|
|
|
if (pContainerItem)
|
|
|
|
{
|
|
|
|
std::vector<TemplateItemProperties> &rTemplates = pContainerItem->maTemplates;
|
|
|
|
|
|
|
|
size_t nVisCount = 0;
|
|
|
|
|
|
|
|
// Clear thumbnails
|
|
|
|
pContainerItem->maPreview1.Clear();
|
|
|
|
pContainerItem->maPreview2.Clear();
|
|
|
|
|
|
|
|
for (size_t i = 0, n = rTemplates.size(); i < n; ++i)
|
|
|
|
{
|
|
|
|
if (isValid(rTemplates[i].aPath))
|
|
|
|
{
|
|
|
|
++nVisCount;
|
|
|
|
if ( pContainerItem->maPreview1.IsEmpty( ) )
|
|
|
|
{
|
|
|
|
pContainerItem->maPreview1 = TemplateAbstractView::scaleImg(rTemplates[i].aThumbnail,
|
|
|
|
TEMPLATE_THUMBNAIL_MAX_WIDTH*0.75,
|
|
|
|
TEMPLATE_THUMBNAIL_MAX_HEIGHT*0.75);
|
|
|
|
}
|
|
|
|
else if ( pContainerItem->maPreview2.IsEmpty() )
|
|
|
|
{
|
|
|
|
pContainerItem->maPreview2 = TemplateAbstractView::scaleImg(rTemplates[i].aThumbnail,
|
|
|
|
TEMPLATE_THUMBNAIL_MAX_WIDTH*0.75,
|
|
|
|
TEMPLATE_THUMBNAIL_MAX_HEIGHT*0.75);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return mApp != FILTER_APP_NONE ? nVisCount : true ;
|
|
|
|
}
|
|
|
|
return true;
|
2012-07-29 23:00:47 -05:00
|
|
|
}
|
|
|
|
|
2012-08-02 20:41:18 -05:00
|
|
|
bool ViewFilter_Keyword::operator ()(const ThumbnailViewItem *pItem)
|
|
|
|
{
|
|
|
|
assert(pItem);
|
|
|
|
|
|
|
|
return pItem->maTitle.matchIgnoreAsciiCase(maKeyword);
|
|
|
|
}
|
|
|
|
|
2012-07-14 17:46:22 -05:00
|
|
|
TemplateAbstractView::TemplateAbstractView (Window *pParent, WinBits nWinStyle, bool bDisableTransientChildren)
|
2012-07-14 19:55:13 -05:00
|
|
|
: ThumbnailView(pParent,nWinStyle,bDisableTransientChildren),
|
2012-12-18 03:18:03 -06:00
|
|
|
mpItemView(new TemplateView(this)),
|
|
|
|
mbFilteredResults(false),
|
|
|
|
meFilterOption(FILTER_APP_NONE)
|
2012-07-14 17:46:22 -05:00
|
|
|
{
|
2012-07-29 18:43:14 -05:00
|
|
|
mpItemView->setItemStateHdl(LINK(this,TemplateAbstractView,OverlayItemStateHdl));
|
2012-07-14 17:46:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
TemplateAbstractView::TemplateAbstractView(Window *pParent, const ResId &rResId, bool bDisableTransientChildren)
|
2012-07-14 19:55:13 -05:00
|
|
|
: ThumbnailView(pParent,rResId,bDisableTransientChildren),
|
2012-12-18 03:18:03 -06:00
|
|
|
mpItemView(new TemplateView(this)),
|
|
|
|
mbFilteredResults(false),
|
|
|
|
meFilterOption(FILTER_APP_NONE)
|
2012-07-14 17:46:22 -05:00
|
|
|
{
|
2012-07-29 18:43:14 -05:00
|
|
|
mpItemView->setItemStateHdl(LINK(this,TemplateAbstractView,OverlayItemStateHdl));
|
2012-07-14 17:46:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
TemplateAbstractView::~TemplateAbstractView ()
|
|
|
|
{
|
2012-07-14 19:55:13 -05:00
|
|
|
delete mpItemView;
|
2012-07-14 17:46:22 -05:00
|
|
|
}
|
|
|
|
|
2012-08-12 19:50:34 -05:00
|
|
|
void TemplateAbstractView::setItemDimensions(long ItemWidth, long ThumbnailHeight, long DisplayHeight, int itemPadding)
|
|
|
|
{
|
|
|
|
ThumbnailView::setItemDimensions(ItemWidth,ThumbnailHeight,DisplayHeight,itemPadding);
|
|
|
|
|
|
|
|
mpItemView->setItemDimensions(ItemWidth,ThumbnailHeight,DisplayHeight,itemPadding);
|
|
|
|
}
|
|
|
|
|
2012-07-28 21:57:31 -05:00
|
|
|
sal_uInt16 TemplateAbstractView::getOverlayRegionId() const
|
|
|
|
{
|
|
|
|
return mpItemView->getId();
|
|
|
|
}
|
|
|
|
|
2012-08-12 16:44:16 -05:00
|
|
|
const OUString &TemplateAbstractView::getOverlayName() const
|
|
|
|
{
|
|
|
|
return mpItemView->getName();
|
|
|
|
}
|
|
|
|
|
2012-07-14 22:31:55 -05:00
|
|
|
bool TemplateAbstractView::isOverlayVisible () const
|
|
|
|
{
|
|
|
|
return mpItemView->IsVisible();
|
|
|
|
}
|
|
|
|
|
2012-08-11 15:40:01 -05:00
|
|
|
void TemplateAbstractView::deselectOverlayItems()
|
|
|
|
{
|
|
|
|
mpItemView->deselectItems();
|
|
|
|
}
|
|
|
|
|
2012-08-08 20:04:22 -05:00
|
|
|
void TemplateAbstractView::deselectOverlayItem(const sal_uInt16 nItemId)
|
|
|
|
{
|
|
|
|
mpItemView->deselectItem(nItemId);
|
|
|
|
}
|
|
|
|
|
2012-07-14 22:31:55 -05:00
|
|
|
void TemplateAbstractView::sortOverlayItems(const boost::function<bool (const ThumbnailViewItem*,
|
|
|
|
const ThumbnailViewItem*) > &func)
|
|
|
|
{
|
|
|
|
mpItemView->sortItems(func);
|
|
|
|
}
|
|
|
|
|
2012-12-18 03:18:03 -06:00
|
|
|
void TemplateAbstractView::filterTemplatesByApp (const FILTER_APPLICATION &eApp)
|
|
|
|
{
|
|
|
|
meFilterOption = eApp;
|
|
|
|
|
|
|
|
if (mpItemView->IsVisible())
|
|
|
|
{
|
|
|
|
mbFilteredResults = true;
|
|
|
|
mpItemView->filterItems(ViewFilter_Application(eApp));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
filterItems(ViewFilter_Application(eApp));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-02 20:41:18 -05:00
|
|
|
void TemplateAbstractView::filterTemplatesByKeyword(const OUString &rKeyword)
|
|
|
|
{
|
|
|
|
if (mpItemView->IsVisible())
|
|
|
|
mpItemView->filterItems(ViewFilter_Keyword(rKeyword));
|
|
|
|
}
|
|
|
|
|
2012-12-06 06:30:53 -06:00
|
|
|
void TemplateAbstractView::setOverlayDblClickHdl(const Link &rLink)
|
2012-07-14 22:31:55 -05:00
|
|
|
{
|
2012-12-06 06:30:53 -06:00
|
|
|
mpItemView->setDblClickHdl(rLink);
|
2012-07-14 22:31:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void TemplateAbstractView::setOverlayCloseHdl(const Link &rLink)
|
|
|
|
{
|
|
|
|
mpItemView->setCloseHdl(rLink);
|
|
|
|
}
|
|
|
|
|
2012-07-29 15:13:18 -05:00
|
|
|
BitmapEx TemplateAbstractView::scaleImg (const BitmapEx &rImg, long width, long height)
|
|
|
|
{
|
|
|
|
BitmapEx aImg = rImg;
|
|
|
|
|
2012-12-05 11:40:16 -06:00
|
|
|
if ( !rImg.IsEmpty() )
|
|
|
|
{
|
|
|
|
|
|
|
|
const Size& aImgSize = aImg.GetSizePixel();
|
|
|
|
double nRatio = double(aImgSize.getWidth()) / double(aImgSize.getHeight());
|
|
|
|
|
|
|
|
long nDestWidth = aImgSize.getWidth();
|
|
|
|
long nDestHeight = aImgSize.getHeight();
|
|
|
|
|
|
|
|
// Which one side is the overflowing most?
|
|
|
|
long nDistW = aImgSize.getWidth() - width;
|
|
|
|
long nDistH = aImgSize.getHeight() - height;
|
2012-07-29 15:13:18 -05:00
|
|
|
|
2012-12-05 11:40:16 -06:00
|
|
|
// Use the biggest overflow side to make it fit the destination
|
|
|
|
if ( nDistW >= nDistH && nDistW > 0 )
|
|
|
|
{
|
|
|
|
nDestWidth = width;
|
|
|
|
nDestHeight = width / nRatio;
|
|
|
|
}
|
|
|
|
else if ( nDistW < nDistH && nDistH > 0 )
|
|
|
|
{
|
|
|
|
nDestHeight = height;
|
|
|
|
nDestWidth = height * nRatio;
|
|
|
|
}
|
|
|
|
|
|
|
|
aImg.Scale(Size(nDestWidth,nDestHeight));
|
|
|
|
}
|
2012-07-29 15:13:18 -05:00
|
|
|
|
|
|
|
return aImg;
|
|
|
|
}
|
|
|
|
|
2012-08-23 09:24:34 -05:00
|
|
|
BitmapEx TemplateAbstractView::fetchThumbnail (const OUString &msURL, long width, long height)
|
2012-07-29 15:13:18 -05:00
|
|
|
{
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
|
|
|
|
// Load the thumbnail from a template document.
|
|
|
|
uno::Reference<io::XInputStream> xIStream;
|
|
|
|
|
2012-12-03 08:33:30 -06:00
|
|
|
uno::Reference< uno::XComponentContext > xContext (comphelper::getProcessComponentContext());
|
2012-07-29 15:13:18 -05:00
|
|
|
|
2012-12-03 08:33:30 -06:00
|
|
|
try
|
2012-07-29 15:13:18 -05:00
|
|
|
{
|
2012-12-03 08:33:30 -06:00
|
|
|
uno::Reference<lang::XSingleServiceFactory> xStorageFactory = embed::StorageFactory::create( xContext );
|
|
|
|
|
|
|
|
uno::Sequence<uno::Any> aArgs (2);
|
|
|
|
aArgs[0] <<= msURL;
|
|
|
|
aArgs[1] <<= embed::ElementModes::READ;
|
|
|
|
uno::Reference<embed::XStorage> xDocStorage (
|
|
|
|
xStorageFactory->createInstanceWithArguments(aArgs),
|
|
|
|
uno::UNO_QUERY);
|
|
|
|
|
2012-07-29 15:13:18 -05:00
|
|
|
try
|
|
|
|
{
|
2012-12-03 08:33:30 -06:00
|
|
|
if (xDocStorage.is())
|
2012-07-29 15:13:18 -05:00
|
|
|
{
|
2012-12-03 08:33:30 -06:00
|
|
|
uno::Reference<embed::XStorage> xStorage (
|
|
|
|
xDocStorage->openStorageElement(
|
|
|
|
"Thumbnails",
|
|
|
|
embed::ElementModes::READ));
|
|
|
|
if (xStorage.is())
|
2012-07-29 15:13:18 -05:00
|
|
|
{
|
2012-12-03 08:33:30 -06:00
|
|
|
uno::Reference<io::XStream> xThumbnailCopy (
|
|
|
|
xStorage->cloneStreamElement("thumbnail.png"));
|
|
|
|
if (xThumbnailCopy.is())
|
|
|
|
xIStream = xThumbnailCopy->getInputStream();
|
2012-07-29 15:13:18 -05:00
|
|
|
}
|
2012-12-03 08:33:30 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (const uno::Exception& rException)
|
|
|
|
{
|
|
|
|
OSL_TRACE (
|
|
|
|
"caught exception while trying to access Thumbnail/thumbnail.png of %s: %s",
|
|
|
|
::rtl::OUStringToOString(msURL,
|
|
|
|
RTL_TEXTENCODING_UTF8).getStr(),
|
|
|
|
::rtl::OUStringToOString(rException.Message,
|
|
|
|
RTL_TEXTENCODING_UTF8).getStr());
|
|
|
|
}
|
2012-07-29 15:13:18 -05:00
|
|
|
|
2012-12-03 08:33:30 -06:00
|
|
|
try
|
|
|
|
{
|
|
|
|
// An (older) implementation had a bug - The storage
|
|
|
|
// name was "Thumbnail" instead of "Thumbnails". The
|
|
|
|
// old name is still used as fallback but this code can
|
|
|
|
// be removed soon.
|
|
|
|
if ( ! xIStream.is())
|
|
|
|
{
|
|
|
|
uno::Reference<embed::XStorage> xStorage (
|
|
|
|
xDocStorage->openStorageElement( "Thumbnail",
|
|
|
|
embed::ElementModes::READ));
|
|
|
|
if (xStorage.is())
|
2012-07-29 15:13:18 -05:00
|
|
|
{
|
2012-12-03 08:33:30 -06:00
|
|
|
uno::Reference<io::XStream> xThumbnailCopy (
|
|
|
|
xStorage->cloneStreamElement("thumbnail.png"));
|
|
|
|
if (xThumbnailCopy.is())
|
|
|
|
xIStream = xThumbnailCopy->getInputStream();
|
2012-07-29 15:13:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (const uno::Exception& rException)
|
|
|
|
{
|
|
|
|
OSL_TRACE (
|
2012-12-03 08:33:30 -06:00
|
|
|
"caught exception while trying to access Thumbnails/thumbnail.png of %s: %s",
|
2012-07-29 15:13:18 -05:00
|
|
|
::rtl::OUStringToOString(msURL,
|
|
|
|
RTL_TEXTENCODING_UTF8).getStr(),
|
|
|
|
::rtl::OUStringToOString(rException.Message,
|
|
|
|
RTL_TEXTENCODING_UTF8).getStr());
|
|
|
|
}
|
|
|
|
}
|
2012-12-03 08:33:30 -06:00
|
|
|
catch (const uno::Exception& rException)
|
|
|
|
{
|
|
|
|
OSL_TRACE (
|
|
|
|
"caught exception while trying to access tuhmbnail of %s: %s",
|
|
|
|
::rtl::OUStringToOString(msURL,
|
|
|
|
RTL_TEXTENCODING_UTF8).getStr(),
|
|
|
|
::rtl::OUStringToOString(rException.Message,
|
|
|
|
RTL_TEXTENCODING_UTF8).getStr());
|
|
|
|
}
|
2012-07-29 15:13:18 -05:00
|
|
|
|
|
|
|
// Extract the image from the stream.
|
|
|
|
BitmapEx aThumbnail;
|
|
|
|
if (xIStream.is())
|
|
|
|
{
|
|
|
|
::std::auto_ptr<SvStream> pStream (
|
|
|
|
::utl::UcbStreamHelper::CreateStream (xIStream));
|
|
|
|
::vcl::PNGReader aReader (*pStream);
|
|
|
|
aThumbnail = aReader.Read ();
|
|
|
|
}
|
|
|
|
|
|
|
|
return TemplateAbstractView::scaleImg(aThumbnail,width,height);
|
|
|
|
}
|
|
|
|
|
2012-08-03 10:47:07 -05:00
|
|
|
void TemplateAbstractView::Resize()
|
|
|
|
{
|
2012-12-13 03:08:34 -06:00
|
|
|
mpItemView->SetSizePixel(GetSizePixel());
|
2012-12-13 07:29:52 -06:00
|
|
|
ThumbnailView::Resize();
|
2012-12-13 03:08:34 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void TemplateAbstractView::Paint(const Rectangle &rRect)
|
|
|
|
{
|
|
|
|
if (!mpItemView->IsVisible())
|
|
|
|
ThumbnailView::Paint(rRect);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TemplateAbstractView::DrawItem(ThumbnailViewItem *pItem)
|
|
|
|
{
|
|
|
|
if (!mpItemView->IsVisible())
|
|
|
|
ThumbnailView::DrawItem(pItem);
|
2012-08-11 22:06:52 -05:00
|
|
|
}
|
|
|
|
|
2012-07-29 18:43:14 -05:00
|
|
|
IMPL_LINK(TemplateAbstractView, OverlayItemStateHdl, const ThumbnailViewItem*, pItem)
|
|
|
|
{
|
|
|
|
maOverlayItemStateHdl.Call((void*)pItem);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-14 17:46:22 -05:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|