This file is indexed.

/usr/include/wx-3.0/wx/wxPython/i_files/_effects.i is in python-wxgtk3.0-dev 3.0.2.0+dfsg-7.

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
/////////////////////////////////////////////////////////////////////////////
// Name:        _effects.i
// Purpose:     wxEffects
//
// Author:      Robin Dunn
//
// Created:     18-June-1999
// RCS-ID:      $Id$
// Copyright:   (c) 2003 by Total Control Software
// Licence:     wxWindows license
/////////////////////////////////////////////////////////////////////////////

// Not a %module


// //---------------------------------------------------------------------------
// %newgroup

// %{
// #include <wx/effects.h>
// %}

// //---------------------------------------------------------------------------

// class wxEffects: public wxObject
// {
// public:
//     // Assume system colours
//     wxEffects();

//     wxColour GetHighlightColour() const;
//     wxColour GetLightShadow() const;
//     wxColour GetFaceColour() const;
//     wxColour GetMediumShadow() const;
//     wxColour GetDarkShadow() const;

//     void SetHighlightColour(const wxColour& c);
//     void SetLightShadow(const wxColour& c);
//     void SetFaceColour(const wxColour& c);
//     void SetMediumShadow(const wxColour& c);
//     void SetDarkShadow(const wxColour& c);

//     void Set(const wxColour& highlightColour, const wxColour& lightShadow,
//              const wxColour& faceColour, const wxColour& mediumShadow,
//              const wxColour& darkShadow);

//     // Draw a sunken edge
//     void DrawSunkenEdge(wxDC& dc, const wxRect& rect, int borderSize = 1);

//     // Tile a bitmap
//     bool TileBitmap(const wxRect& rect, wxDC& dc, wxBitmap& bitmap);

//     %property(DarkShadow, GetDarkShadow, SetDarkShadow, doc="See `GetDarkShadow` and `SetDarkShadow`");
//     %property(FaceColour, GetFaceColour, SetFaceColour, doc="See `GetFaceColour` and `SetFaceColour`");
//     %property(HighlightColour, GetHighlightColour, SetHighlightColour, doc="See `GetHighlightColour` and `SetHighlightColour`");
//     %property(LightShadow, GetLightShadow, SetLightShadow, doc="See `GetLightShadow` and `SetLightShadow`");
//     %property(MediumShadow, GetMediumShadow, SetMediumShadow, doc="See `GetMediumShadow` and `SetMediumShadow`");
    
// };

// %pythoncode { Effects = wx.deprecated(Effects) }

//---------------------------------------------------------------------------