This file is indexed.

/usr/include/wx-2.8/wx/fl/updatesmgr.h is in wx2.8-headers 2.8.12.1-6ubuntu2.

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
/////////////////////////////////////////////////////////////////////////////
// Name:        updatesmgr.h
// Purpose:     cbSimpleUpdatesMgr class declaration
// Author:      Aleksandras Gluchovas (@Lithuania)
// Modified by:
// Created:     19/10/98
// RCS-ID:      $Id: updatesmgr.h 35650 2005-09-23 12:56:45Z MR $
// Copyright:   (c) Aleksandras Gluchovas
// Licence:     wxWindows licence
/////////////////////////////////////////////////////////////////////////////

#ifndef __UPDATESMGR_G__
#define __UPDATESMGR_G__

#include "wx/fl/controlbar.h"

/*
This class implements slightly optimized logic for refreshing
the areas of frame layout that actually need to be updated.
*/

class WXDLLIMPEXP_FL cbSimpleUpdatesMgr : public cbUpdatesManagerBase
{
    DECLARE_DYNAMIC_CLASS( cbSimpleUpdatesMgr )
protected:

        // Helper function.
    bool WasChanged( cbUpdateMgrData& data, wxRect& currentBounds );

public:
        // Default constructor.
    cbSimpleUpdatesMgr() {}

        // Constructor taking frame layout panel.
    cbSimpleUpdatesMgr( wxFrameLayout* pPanel );

        // Notification received from Frame Layout in the order in which
        // they would usually be invoked.
    virtual void OnStartChanges();

        // Notification received from Frame Layout in the order in which
        // they would usually be invoked.
    virtual void OnRowWillChange( cbRowInfo* pRow, cbDockPane* pInPane );

        // Notification received from Frame Layout in the order in which
        // they would usually be invoked.
    virtual void OnBarWillChange( cbBarInfo* pBar, cbRowInfo* pInRow, cbDockPane* pInPane );

        // Notification received from Frame Layout in the order in which
        // they would usually be invoked.
    virtual void OnPaneMarginsWillChange( cbDockPane* pPane );

        // Notification received from Frame Layout in the order in which
        // they would usually be invoked.
    virtual void OnPaneWillChange( cbDockPane* pPane );

        // Notification received from Frame Layout in the order in which
        // they would usually be invoked.
    virtual void OnFinishChanges();

        // Refreshes the parts of the frame layoutthat need an update.
    virtual void UpdateNow();
};

#endif /* __UPDATESMGR_G__ */