This file is indexed.

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

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
/////////////////////////////////////////////////////////////////////////////
// Name:        _cmdlinkbtn.i
// Purpose:     SWIG interface for wxCommandLinkButton
//
// Author:      Robin Dunn
//
// Created:     20-Oct-2010
// RCS-ID:      $Id: $
// Copyright:   (c) 2010 by Total Control Software
// Licence:     wxWindows license
/////////////////////////////////////////////////////////////////////////////

// Not a %module


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

class wxCommandLinkButton : public wxButton
{
public:

    %pythonAppend wxCommandLinkButton         "self._setOORInfo(self)"
    %pythonAppend wxCommandLinkButton()       ""
    %typemap(out) wxCommandLinkButton*;    // turn off this typemap
    
    
    wxCommandLinkButton(wxWindow *parent,
                        wxWindowID id = -1,
                        const wxString& mainLabel = wxEmptyString,
                        const wxString& note = wxEmptyString,
                        const wxPoint& pos = wxDefaultPosition,
                        const wxSize& size = wxDefaultSize,
                        long style = 0,
                        const wxValidator& validator = wxDefaultValidator,
                        const wxString& name = wxButtonNameStr);

    DocCtorStrName(
        wxCommandLinkButton(),
        "Precreate a Button for 2-phase creation.", "",
        PreCommandLinkButton);

    // Turn it back on again
    %typemap(out) wxCommandLinkButton* { $result = wxPyMake_wxObject($1, $owner); }

    bool Create(wxWindow *parent,
                wxWindowID id=-1,
                const wxString& mainLabel = wxEmptyString,
                const wxString& note = wxEmptyString,
                const wxPoint& pos = wxDefaultPosition,
                const wxSize& size = wxDefaultSize,
                long style = 0,
                const wxValidator& validator = wxDefaultValidator,
                const wxString& name = wxButtonNameStr);

    
    virtual void SetMainLabelAndNote(const wxString& mainLabel,
                                     const wxString& note);

    virtual void SetMainLabel(const wxString& mainLabel);
    virtual void SetNote(const wxString& note);
    virtual wxString GetMainLabel() const;
    virtual wxString GetNote() const;

    %property(MainLabel, GetMainLabel, SetMainLabel);
    %property(Note, GetNote, SetNote);

};


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