This file is indexed.

/usr/include/CEGUI/elements/CEGUIItemListbox.h is in libcegui-mk2-dev 0.7.5-8.

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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
/************************************************************************
    filename:   CEGUIItemListbox.h
    created:    Tue Sep 27 2005
    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 _CEGUIItemListbox_h_
#define _CEGUIItemListbox_h_

#include "CEGUIScrolledItemListBase.h"
#include "CEGUIItemListboxProperties.h"

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

// begin CEGUI namespace
namespace CEGUI
{

/*!
\brief
    ItemListbox window class
*/
class CEGUIEXPORT ItemListbox : public ScrolledItemListBase
{
public:
    static const String EventNamespace; //!< Namespace for global events
    static const String WidgetTypeName; //!< Window factory name

    /************************************************************************
        Constants
    *************************************************************************/
    /** Event fired when the list selection changes.
     * Handlers are passed a const WindowEventArgs reference with
     * WindowEventArgs::window set to the ItemListbox whose current selection
     * has been changed.
     */
    static const String EventSelectionChanged;
    /** Event fired when the multiselect mode of the list box is changed.
     * Handlers are passed a const WindowEventArgs reference with
     * WindowEventArgs::window set to the ItemListbox whose multiselect mode
     * has been changed.
     */
    static const String EventMultiSelectModeChanged;

    /************************************************************************
        Accessors
    *************************************************************************/
    /*!
    \brief
        Returns the number of selected items in this ItemListbox.
    */
    size_t getSelectedCount(void) const;

    /*!
    \brief
        Returns a pointer to the last selected item.

    \return
        A pointer to the last selected item, 0 is none.
    */
    ItemEntry* getLastSelectedItem(void) const      {return d_lastSelected;}

    /*!
    \brief
        Returns a pointer to the first selected item

    \param start_index
        The index where the search should begin. If omitted the search will
        begin with the first item.

    \return
        A pointer to the first selected item in the listbox.
        If no item is selected the return value is 0.
        If \a start_index is out of bounds the return value is 0.

    \note
        If multiselect is disabled then this does the equivalent of calling
        getLastSelectedItem.
        If multiselect is enabled it will search the array starting at \a start_index
    */
    ItemEntry* getFirstSelectedItem(size_t start_index=0) const;

    /*!
    \brief
        Returns a pointer to the next seleced item relative to a previous call to
        getFirstSelectedItem or getNextSelectedItem.

    \return
        A pointer to the next seleced item. If there are no further selected items
        the return value is 0.
        If multiselect is disabled the return value is 0.

    \note
        This member function will take on from where the last call to
        getFirstSelectedItem or getNextSelectedItem returned. So be sure to start with a
        call to getFirstSelectedItem.

        This member function should be preferred over getNextSelectedItemAfter as it will
        perform better, especially on large lists.
    */
    ItemEntry* getNextSelectedItem(void) const;

    /*!
    \brief
        Returns a pointer to the next selected item after the item 'start_item' given.

    \note
        This member function will search the array from the beginning and will be slow
        for large lists, it will not advance the internal counter used by
        getFirstSelectedItem and getNextSelectedItem either.
    */
    ItemEntry* getNextSelectedItemAfter(const ItemEntry* start_item) const;

    /*!
    \brief
        Returns 'true' if multiple selections are allowed. 'false' if not.
    */
    bool isMultiSelectEnabled(void) const   {return d_multiSelect;}

    /*!
    \brief
        Returns 'true' if the item at the given index is selectable and currently selected.
    */
    bool isItemSelected(size_t index) const;

    /************************************************************************
        Manipulators
    *************************************************************************/
    // Overridden from base class
    virtual void initialiseComponents(void);

    /*!
    \brief
        Set whether or not multiple selections should be allowed.
    */
    void setMultiSelectEnabled(bool state);

    /*!
    \brief
        Clears all selections.
    */
    void clearAllSelections(void);

    /*!
    \brief
        Select a range of items.

    \param a
        Start item. (inclusive)

    \param z
        End item. (inclusive)
    */
    void selectRange(size_t a, size_t z);

    /*!
    \brief
        Select all items.
        Does nothing if multiselect is disabled.
    */
    void selectAllItems(void);

    /************************************************************************
        Object Construction and Destruction
    *************************************************************************/
    /*!
    \brief
        Constructor for the ItemListbox base class constructor.
    */
    ItemListbox(const String& type, const String& name);

    /*!
    \brief
        Destructor for the ItemListbox base class.
     */
    virtual ~ItemListbox(void) {}

    /************************************************************************
        Implementation functions
    ************************************************************************/
    /*!
    \brief
        Setup size and position for the item widgets attached to this ItemListbox
    */
    virtual void layoutItemWidgets();

    /*!
    \brief
        Returns the Size in unclipped pixels of the content attached to this ItemListbox.
    */
    virtual Size getContentSize() const;

    /*!
    \brief
        Return whether this window was inherited from the given class name at some point
        in the inheritance hierarchy.

    \param class_name
        The class name that is to be checked.

    \return
        true if this window was inherited from \a class_name. false if not.
    */
    virtual bool testClassName_impl(const String& class_name) const
    {
        if (class_name=="ItemListbox")
        {
            return true;
        }
        return ScrolledItemListBase::testClassName_impl(class_name);
    }

    /*!
    \brief
        Notify this ItemListbox that the given ListItem was just clicked.
        Internal function - not to be used from client code.
    */
    virtual void notifyItemClicked(ItemEntry* li);

    /*!
    \brief
        Notify this ItemListbox that the given ListItem just changed selection state.
        Internal function - not to be used from client code.
    */
    virtual void notifyItemSelectState(ItemEntry* li, bool state);

protected:
    /************************************************************************
        Protected implementation functions
    ************************************************************************/
    /*!
    \brief
        Returns a pointer to the first selected item starting the search
        from \a start_index

    \param start_index
        The index where the search should begin (inclusive)

    \return
        A pointer to the first selected item in the listbox found
        If no item is selected the return value is 0
        If \a start_index is out of bounds the return value is 0

    \note
        This function advances the internal counter and is made for
        getFirstSelectedItem and getNextSelectedItem
    */
    ItemEntry* findSelectedItem(size_t start_index) const;

    /************************************************************************
        New event handlers
    ************************************************************************/
    virtual void onSelectionChanged(WindowEventArgs& e);
    virtual void onMultiSelectModeChanged(WindowEventArgs& e);

    /************************************************************************
        Overridden event handlers
    ************************************************************************/
    virtual void onKeyDown(KeyEventArgs& e);

    /************************************************************************
        Static Properties for this class
    ************************************************************************/
    static ItemListboxProperties::MultiSelect d_multiSelectProperty;

    /************************************************************************
        Implementation data
    ************************************************************************/
    bool d_multiSelect; //! Controls whether multiple items can be selected simultaneously
    ItemEntry* d_lastSelected; //! The last item that was selected
    mutable size_t d_nextSelectionIndex; //! The index of the last item that was returned with the getFirst/NextSelection members

private:
    void addItemListboxProperties(void);
    void addItemListboxEvents(void);
    //! Handler called when window is removed from the content pane
    bool handle_PaneChildRemoved(const EventArgs& e);
};

} // end CEGUI namespace

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

#endif // end of guard _CEGUIItemListbox_h_