This file is indexed.

/usr/include/cegui-0.8.4/CEGUI/ImageManager.h is in libcegui-mk2-dev 0.8.4+dfsg-4ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
/***********************************************************************
    created:    Wed Feb 16 2011
    author:     Paul D Turner <paul@cegui.org.uk>
*************************************************************************/
/***************************************************************************
 *   Copyright (C) 2004 - 2011 Paul D Turner & The CEGUI Development Team
 *
 *   Permission is hereby granted, free of charge, to any person obtaining
 *   a copy of this software and associated documentation files (the
 *   "Software"), to deal in the Software without restriction, including
 *   without limitation the rights to use, copy, modify, merge, publish,
 *   distribute, sublicense, and/or sell copies of the Software, and to
 *   permit persons to whom the Software is furnished to do so, subject to
 *   the following conditions:
 *
 *   The above copyright notice and this permission notice shall be
 *   included in all copies or substantial portions of the Software.
 *
 *   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 *   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 *   MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 *   IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
 *   OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 *   ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 *   OTHER DEALINGS IN THE SOFTWARE.
 ***************************************************************************/
#ifndef _CEGUIImageManager_h_
#define _CEGUIImageManager_h_

#include "CEGUI/Singleton.h"
#include "CEGUI/ChainedXMLHandler.h"
#include "CEGUI/String.h"
#include "CEGUI/Size.h"
#include "CEGUI/ImageFactory.h"
#include "CEGUI/Logger.h"
#include "CEGUI/Exceptions.h"
#include "CEGUI/IteratorBase.h"
#include <map>

#if defined(_MSC_VER)
#	pragma warning(push)
#	pragma warning(disable : 4251)
#endif

// Start of CEGUI namespace section
namespace CEGUI
{
class CEGUIEXPORT ImageManager :
        public Singleton<ImageManager>,
        public AllocatedObject<ImageManager>,
        public ChainedXMLHandler
{
public:
    ImageManager();
    ~ImageManager();

    /*!
    \brief
        Register an Image subclass with the system and associate it with the
        identifier \a name.

        This registers a subclass of the Image class, such that instances of
        that subclass can subsequently be created by using the identifier
        \a name.

    \tparam T
        The Image subclass to be instantiated when an Image is created using the
        type identifier \a name.

    \param name
        String object describing the identifier that the Image subclass will be
        registered under.

    \exception AlreadyExistsException
        thrown if an Image subclass is already registered using \a name.
    */
    template <typename T>
    void addImageType(const String& name);

    /*!
    \brief
        Unregister the Image subclass that was registered under the identifier
        \a name.

    \param name
        String object describing the identifier of the Image subclass that is to
        be unregistered.  If no such identifier is known within the system, no
        action is taken.

    \note
        You should avoid removing Image subclass types that are still in use.
        Internally a factory system is employed for the creation and deletion
        of Image based objects; if an Image subclass - and therefore it's
        factory - is removed while instances of that class are still active, it
        will not be possible to safely delete those instances.
    */
    void removeImageType(const String& name);

    /*!
    \brief
        Return whether an Image subclass has been registered using the
        identifier \a name.

    \param name
        String object describing the identifier to test for.

    \return
        - true if an Image subclass is registered using the identifier \a name.
        - false if no Image subclass is registered using the identifier \a name.
    */
    bool isImageTypeAvailable(const String& name) const;

    /*!
    \brief
        Create an instance of Image subclass registered for identifier \a type
        using the name \a name.

    \param type
        String object describing the identifier of the Image subclass that is to
        be created.

    \param name
        String object describing the name that the newly created instance will
        be created with.  This name must be unique within the system. 

    \exception UnknownObjectException
        thrown if no Image subclass has been registered using identifier \a type.

    \exception AlreadyExistsException
        thrown if an Image instance named \a name already exists.
    */
    Image& create(const String& type, const String& name);

    Image& create(const XMLAttributes& attributes);

    void destroy(Image& image);
    void destroy(const String& name);
    void destroyAll();

    Image& get(const String& name) const;
    bool isDefined(const String& name) const;

    uint getImageCount() const;

    void loadImageset(const String& filename, const String& resource_group = "");
    void loadImagesetFromString(const String& source);

    void destroyImageCollection(const String& prefix,
                                const bool delete_texture = true);

    void addFromImageFile(const String& name,
                          const String& filename,
                          const String& resource_group = "");

    /*!
    \brief
        Notify the ImageManager that the display size may have changed.

    \param size
        Size object describing the display resolution
    */
    void notifyDisplaySizeChanged(const Sizef& size);

    /*!
    \brief
        Sets the default resource group to be used when loading imageset data

    \param resourceGroup
        String describing the default resource group identifier to be used.
    */
    static void setImagesetDefaultResourceGroup(const String& resourceGroup)
        { d_imagesetDefaultResourceGroup = resourceGroup; }

    /*!
    \brief
        Returns the default resource group currently set for Imagesets.

    \return
        String describing the default resource group identifier that will be
        used when loading Imageset data.
    */
    static const String& getImagesetDefaultResourceGroup()
        { return d_imagesetDefaultResourceGroup; }

    // XMLHandler overrides
    const String& getSchemaName() const;
    const String& getDefaultResourceGroup() const;

    //! One entry in the image container.
    typedef std::pair<Image*, ImageFactory*> ImagePair;

    //! container type used to hold the images.
    typedef std::map<String, ImagePair,
                     StringFastLessCompare
                     CEGUI_MAP_ALLOC(String, Image*)> ImageMap;

    //! ConstBaseIterator type definition.
    typedef ConstMapIterator<ImageMap> ImageIterator;

    /*!
    \brief
        Return a ImageManager::ImageIterator object to iterate over the available
        Image objects.
    */
    ImageIterator getIterator() const;

private:
    // implement chained xml handler abstract interface
    void elementStartLocal(const String& element, const XMLAttributes& attributes);
    void elementEndLocal(const String& element);

    //! container type used to hold the registered Image types.
    typedef std::map<String, ImageFactory*, StringFastLessCompare
        CEGUI_MAP_ALLOC(String, ImageFactory*)> ImageFactoryRegistry;

    //! helper to delete an image given an map iterator.
    void destroy(ImageMap::iterator& iter);

    // XML parsing helper functions.
    void elementImagesetStart(const XMLAttributes& attributes);
    void elementImageStart(const XMLAttributes& attributes);
    //! throw exception if file version is not supported.
    void validateImagesetFileVersion(const XMLAttributes& attrs);

    //! Default resource group specifically for Imagesets.
    static String d_imagesetDefaultResourceGroup;

    //! container holding the factories.
    ImageFactoryRegistry d_factories;
    //! container holding the images.
    ImageMap d_images;
};

//---------------------------------------------------------------------------//
template <typename T>
void ImageManager::addImageType(const String& name)
{
    if (isImageTypeAvailable(name))
        CEGUI_THROW(AlreadyExistsException(
            "Image type already exists: " + name));

    d_factories[name] = CEGUI_NEW_AO TplImageFactory<T>;

    Logger::getSingleton().logEvent(
        "[CEGUI::ImageManager] Registered Image type: " + name);
}

//---------------------------------------------------------------------------//
} // End of  CEGUI namespace section

#if defined(_MSC_VER)
#	pragma warning(pop)
#endif

#endif  // end of guard _CEGUIImageManager_h_