This file is indexed.

/usr/include/codeblocks/incrementalselectlistdlg.h is in codeblocks-dev 13.12-3.

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
/*
 * This file is part of the Code::Blocks IDE and licensed under the GNU Lesser General Public License, version 3
 * http://www.gnu.org/licenses/lgpl-3.0.html
 */

#ifndef INCREMENTALSELECTLISTDLG_H
#define INCREMENTALSELECTLISTDLG_H

#include "settings.h"
#include "scrollingdialog.h"
#include <wx/textctrl.h>
#include <wx/listbox.h>

class IncrementalSelectIterator; // forward decl


class DLLIMPORT IncrementalSelectListDlg : public wxScrollingDialog
{
    public:
        IncrementalSelectListDlg(wxWindow* parent,
                                 const IncrementalSelectIterator& iterator,
                                 const wxString& caption = wxEmptyString,
                                 const wxString& message = wxEmptyString);
        virtual ~IncrementalSelectListDlg();
        wxString GetStringSelection();
        wxIntPtr GetSelection();
    protected:
        void FillList();
        void OnSearch(wxCommandEvent& event);
        void OnSelect(wxCommandEvent& event);
        void OnKeyDown(wxKeyEvent& event);
        wxListBox* m_List;
        wxTextCtrl* m_Text;
        const IncrementalSelectIterator &m_Iterator;
    private:
        DECLARE_EVENT_TABLE();
};

class DLLIMPORT IncrementalSelectIterator
{
    public:
        virtual ~IncrementalSelectIterator() {}

        virtual long GetCount() const = 0;
        virtual wxString GetItem(long index) const = 0;
        virtual wxString GetDisplayItem(long index) const { return GetItem(index); }
};

class DLLIMPORT IncrementalSelectIteratorStringArray : public IncrementalSelectIterator
{
    public:
        IncrementalSelectIteratorStringArray(const wxArrayString& array) : m_Array(array)
        {
        }

        virtual long GetCount() const { return m_Array.GetCount(); }
        virtual wxString GetItem(long index) const { return m_Array[index]; }
    private:
        const wxArrayString& m_Array;
};

#endif // INCREMENTALSELECTLISTDLG_H