This file is indexed.

/usr/include/wx-3.0/wx/wxPython/i_files/_richtextxml.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
/////////////////////////////////////////////////////////////////////////////
// Name:        _richtextxml
// Purpose:     wxRichTextXMLHandler
//
// Author:      Robin Dunn
//
// Created:     18-May-2007
// RCS-ID:      $Id$
// Copyright:   (c) 2007 by Total Control Software
// Licence:     wxWindows license
/////////////////////////////////////////////////////////////////////////////

// Not a %module


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

%{
#include <wx/richtext/richtextxml.h>
%}

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

MAKE_CONST_WXSTRING2(XmlName, wxT("XML"));
MAKE_CONST_WXSTRING2(XmlExt,  wxT("xml"));


class wxRichTextXMLHandler: public wxRichTextFileHandler
{
public:
    wxRichTextXMLHandler(const wxString& name = wxPyXmlName,
                         const wxString& ext = wxPyXmlExt,
                         int type = wxRICHTEXT_TYPE_XML);

// #if wxUSE_STREAMS
//     /// Recursively export an object
//     bool ExportXML(wxOutputStream& stream, wxMBConv* convMem, wxMBConv* convFile, wxRichTextObject& obj, int level);
//     bool ExportStyleDefinition(wxOutputStream& stream, wxMBConv* convMem, wxMBConv* convFile, wxRichTextStyleDefinition* def, int level);

//     /// Recursively import an object
//     bool ImportXML(wxRichTextBuffer* buffer, wxXmlNode* node);
//     bool ImportStyleDefinition(wxRichTextStyleSheet* sheet, wxXmlNode* node);

//     /// Create style parameters
//     wxString CreateStyle(const wxTextAttr& attr, bool isPara = false);

//     /// Get style parameters
//     bool GetStyle(wxTextAttr& attr, wxXmlNode* node, bool isPara = false);
// #endif

    /// Can we save using this handler?
    virtual bool CanSave() const;

    /// Can we load using this handler?
    virtual bool CanLoad() const;


//     bool HasParam(wxXmlNode* node, const wxString& param);
//     wxXmlNode *GetParamNode(wxXmlNode* node, const wxString& param);
//     wxString GetNodeContent(wxXmlNode *node);
//     wxString GetParamValue(wxXmlNode *node, const wxString& param);
//     wxString GetText(wxXmlNode *node, const wxString& param = wxEmptyString, bool translate = false);

};

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