2010-10-27 12:53:26 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-11-27 16:10:40 +00:00
|
|
|
/*
|
|
|
|
* 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 .
|
|
|
|
*/
|
2004-08-04 07:55:56 +00:00
|
|
|
|
2013-10-23 22:38:46 +02:00
|
|
|
#ifndef INCLUDED_SD_SOURCE_UI_INC_TOOLS_ICONCACHE_HXX
|
|
|
|
#define INCLUDED_SD_SOURCE_UI_INC_TOOLS_ICONCACHE_HXX
|
2004-08-04 07:55:56 +00:00
|
|
|
|
|
|
|
#include "SdGlobalResourceContainer.hxx"
|
|
|
|
#include <vcl/image.hxx>
|
|
|
|
|
|
|
|
namespace sd {
|
|
|
|
|
|
|
|
/** This simple class stores frequently used icons so that the classes that
|
|
|
|
use the icons do not have to store them in every one of their
|
|
|
|
instances.
|
|
|
|
|
2014-04-29 19:25:03 +00:00
|
|
|
Icons are addressed over their resource id and are loaded on demand.
|
2004-08-04 07:55:56 +00:00
|
|
|
|
|
|
|
This cache acts like a singleton with a lifetime equal to that of the sd
|
|
|
|
module.
|
|
|
|
*/
|
|
|
|
class IconCache
|
|
|
|
: public SdGlobalResource
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** The lifetime of the returned reference is limited to that of the sd
|
|
|
|
module.
|
|
|
|
*/
|
2015-04-14 12:44:47 +02:00
|
|
|
static IconCache& Instance();
|
2004-08-04 07:55:56 +00:00
|
|
|
|
|
|
|
/** Return the icon with the given resource id.
|
|
|
|
@return
|
|
|
|
The returned Image may be empty when there is no icon for the
|
2010-12-04 13:10:34 +09:00
|
|
|
given id or an error occurred. Should not happen under normal
|
2004-08-04 07:55:56 +00:00
|
|
|
circumstances.
|
|
|
|
*/
|
2011-01-17 11:41:00 +01:00
|
|
|
Image GetIcon (sal_uInt16 nResourceId);
|
2004-08-04 07:55:56 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
class Implementation;
|
2014-10-01 15:03:54 +02:00
|
|
|
::std::unique_ptr<Implementation> mpImpl;
|
2004-08-04 07:55:56 +00:00
|
|
|
|
|
|
|
/** The constructor creates the one instance of the cache and registers
|
|
|
|
it at the SdGlobalResourceContainer to limit is lifetime to that of
|
|
|
|
the sd module.
|
|
|
|
*/
|
2015-04-14 12:44:47 +02:00
|
|
|
IconCache();
|
2004-08-04 07:55:56 +00:00
|
|
|
|
|
|
|
/** This destructor is called by SdGlobalResourceContainer.
|
|
|
|
*/
|
2015-04-14 12:44:47 +02:00
|
|
|
virtual ~IconCache();
|
2004-08-04 07:55:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end of namespace sd
|
|
|
|
|
|
|
|
#endif
|
2010-10-27 12:53:26 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|