This file is indexed.

/usr/include/cegui-0.8.4/CEGUI/widgets/ClippedContainer.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
/***********************************************************************
	created:	Sun Jun 11 2006
	author:		Tomas Lindquist Olsen
*************************************************************************/
/***************************************************************************
 *   Copyright (C) 2004 - 2006 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 _CEGUIClippedContainer_h_
#define _CEGUIClippedContainer_h_

#include "../Window.h"
#include "../WindowFactory.h"

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

// Start of CEGUI namespace section
namespace CEGUI
{
/*!
\brief
    Helper container window that has configurable clipping.
    Used by the ItemListbox widget.

\deprecated
    This class is deprecated and is scheduled for removal.  The function this
    class used to provide was broken when the inner-rect (aka client area)
    support got fixed.  The good news is that fixing inner-rect support
    effectively negated the need for this class anyway - clipping areas can
    now be established in the looknfeel and extracted via the WindowRenderer.
*/
class CEGUIEXPORT ClippedContainer : public Window
{
public:
    /*************************************************************************
        Constants
    *************************************************************************/
    static const String WidgetTypeName;     //!< Type name for ClippedContainer.
    static const String EventNamespace;     //!< Namespace for global events

    /*************************************************************************
    	Object construction and destruction
    *************************************************************************/
    /*!
    \brief
        Constructor for ClippedContainer objects.
    */
    ClippedContainer(const String& type, const String& name);

    /*!
    \brief
        Destructor for ClippedContainer objects.
    */
    ~ClippedContainer(void);

    /*************************************************************************
    	Public interface methods
    *************************************************************************/
    /*!
    \brief
        Return the current clipping rectangle.

    \return
        Rect object describing the clipping area in pixel that will be applied during rendering.
    */
    const Rectf& getClipArea(void) const;

    /*!
    \brief
        Returns the reference window used for converting the clipper rect to screen space.
    */
    Window* getClipperWindow(void) const;

    /*!
    \brief
        Set the custom clipper area in pixels.
    */
    void setClipArea(const Rectf& r);

    /*!
    \brief
        Set the clipper reference window.

    \param w
        The window to be used a base for converting the custom clipper rect to
        screen space. NULL if the clipper rect is relative to the screen.
    */
    void setClipperWindow(Window* w);

protected:
    /*************************************************************************
    	Overridden from Window.
    *************************************************************************/
    virtual Rectf getUnclippedInnerRect_impl(bool skipAllPixelAlignment) const;
    virtual void drawSelf(const RenderingContext&) {}

    /*************************************************************************
    	Data fields
    *************************************************************************/
    //! the pixel rect to be used for clipping relative to either a window or the screen.
    Rectf d_clipArea;
    //! the base window which the clipping rect is relative to.
    Window* d_clipperWindow;
};

} // End of  CEGUI namespace section

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

#endif	// end of guard _CEGUIClippedContainer_h_