This file is indexed.

/usr/share/doc/python-gtkmvc-doc/reference/view.html is in python-gtkmvc-doc 1.99.1-1build1.

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
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>The View &mdash; GTK MVC 1.99.1 documentation</title>
    
    <link rel="stylesheet" href="_static/default.css" type="text/css" />
    <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
    
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    '',
        VERSION:     '1.99.1',
        COLLAPSE_INDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true
      };
    </script>
    <script type="text/javascript" src="_static/jquery.js"></script>
    <script type="text/javascript" src="_static/underscore.js"></script>
    <script type="text/javascript" src="_static/doctools.js"></script>
    <link rel="top" title="GTK MVC 1.99.1 documentation" href="index.html" />
    <link rel="next" title="The Controller" href="controller.html" />
    <link rel="prev" title="Model Classes" href="model.html" /> 
  </head>
  <body>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             accesskey="I">index</a></li>
        <li class="right" >
          <a href="py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="controller.html" title="The Controller"
             accesskey="N">next</a> |</li>
        <li class="right" >
          <a href="model.html" title="Model Classes"
             accesskey="P">previous</a> |</li>
        <li><a href="index.html">GTK MVC 1.99.1 documentation</a> &raquo;</li> 
      </ul>
    </div>  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body">
            
  <div class="section" id="module-gtkmvc.view">
<span id="the-view"></span><h1>The View<a class="headerlink" href="#module-gtkmvc.view" title="Permalink to this headline"></a></h1>
<dl class="class">
<dt id="gtkmvc.view.View">
<em class="property">class </em><tt class="descclassname">gtkmvc.view.</tt><tt class="descname">View</tt><big>(</big><em>glade=None</em>, <em>top=None</em>, <em>parent=None</em>, <em>builder=None</em><big>)</big><a class="headerlink" href="#gtkmvc.view.View" title="Permalink to this definition"></a></dt>
<dd><p>Only the first three may be given as positional arguments. If an
argument is empty a class attribute of the same name is used. This
does not work for <em>parent</em>.</p>
<p><em>glade</em> is a path to an XML file defining widgets in libglade format.</p>
<blockquote>
<div><p class="deprecated">
<span class="versionmodified">Deprecated since version 1.99.1.</span></p>
</div></blockquote>
<p><em>builder</em> is a path to an XML file defining widgets in GtkBuilder
format.</p>
<blockquote>
<div><p class="versionadded">
<span class="versionmodified">New in version 1.99.1.</span></p>
</div></blockquote>
<p><em>top</em> is a string or a list of strings containing the names of our top
level widgets. When using libglade only their children are loaded.</p>
<p><em>parent</em> is used to call <a class="reference internal" href="#gtkmvc.view.View.set_parent_view" title="gtkmvc.view.View.set_parent_view"><tt class="xref py py-meth docutils literal"><span class="pre">set_parent_view()</span></tt></a>.</p>
<p>The last two only work if <em>glade</em> or <em>builder</em> are used, not if you
intend to create widgets later from code.</p>
<p class="deprecated">
<span class="versionmodified">Deprecated since version 1.99.1: </span>In future versions the functionality will be split into the new class
<tt class="xref py py-class docutils literal"><span class="pre">ManualView</span></tt> and its child <tt class="xref py py-class docutils literal"><span class="pre">BuilderView</span></tt>.</p>
<dl class="method">
<dt id="gtkmvc.view.View.__getitem__">
<tt class="descname">__getitem__</tt><big>(</big><em>key</em><big>)</big><a class="headerlink" href="#gtkmvc.view.View.__getitem__" title="Permalink to this definition"></a></dt>
<dd><p>Return the widget named <em>key</em>, or <tt class="docutils literal"><span class="pre">None</span></tt>.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">In future versions this will likely change to raise <tt class="docutils literal"><span class="pre">KeyError</span></tt>.</p>
</div>
</dd></dl>

<dl class="method">
<dt id="gtkmvc.view.View.__setitem__">
<tt class="descname">__setitem__</tt><big>(</big><em>key</em>, <em>wid</em><big>)</big><a class="headerlink" href="#gtkmvc.view.View.__setitem__" title="Permalink to this definition"></a></dt>
<dd><p>Add a widget. This overrides widgets of the same name that were loaded
fom XML. It does not affect GTK container/child relations.</p>
<p>If no top widget is known, this sets it.</p>
</dd></dl>

<dl class="method">
<dt id="gtkmvc.view.View.__iter__">
<tt class="descname">__iter__</tt><big>(</big><big>)</big><a class="headerlink" href="#gtkmvc.view.View.__iter__" title="Permalink to this definition"></a></dt>
<dd><p>Return an iterator over widgets added with <a class="reference internal" href="#gtkmvc.view.View.__setitem__" title="gtkmvc.view.View.__setitem__"><tt class="xref py py-meth docutils literal"><span class="pre">__setitem__()</span></tt></a> and
those loaded from XML.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">In case of name conflicts this yields widgets that are not 
accessible via <a class="reference internal" href="#gtkmvc.view.View.__getitem__" title="gtkmvc.view.View.__getitem__"><tt class="xref py py-meth docutils literal"><span class="pre">__getitem__()</span></tt></a>.</p>
</div>
</dd></dl>

<dl class="method">
<dt id="gtkmvc.view.View.get_top_widget">
<tt class="descname">get_top_widget</tt><big>(</big><big>)</big><a class="headerlink" href="#gtkmvc.view.View.get_top_widget" title="Permalink to this definition"></a></dt>
<dd><p>Return a widget or list of widgets.</p>
</dd></dl>

<dl class="method">
<dt id="gtkmvc.view.View.hide">
<tt class="descname">hide</tt><big>(</big><big>)</big><a class="headerlink" href="#gtkmvc.view.View.hide" title="Permalink to this definition"></a></dt>
<dd><p>Call <cite>hide_all()</cite> on all known top widgets.</p>
</dd></dl>

<dl class="method">
<dt id="gtkmvc.view.View.set_parent_view">
<tt class="descname">set_parent_view</tt><big>(</big><em>parent_view</em><big>)</big><a class="headerlink" href="#gtkmvc.view.View.set_parent_view" title="Permalink to this definition"></a></dt>
<dd><p>Set <tt class="docutils literal"><span class="pre">self.</span></tt><a class="reference internal" href="#gtkmvc.view.View.get_top_widget" title="gtkmvc.view.View.get_top_widget"><tt class="xref py py-meth docutils literal"><span class="pre">get_top_widget()</span></tt></a> transient for 
<tt class="docutils literal"><span class="pre">parent_view.get_top_widget()</span></tt>.</p>
</dd></dl>

<dl class="method">
<dt id="gtkmvc.view.View.set_transient">
<tt class="descname">set_transient</tt><big>(</big><em>transient_view</em><big>)</big><a class="headerlink" href="#gtkmvc.view.View.set_transient" title="Permalink to this definition"></a></dt>
<dd><p>Set <tt class="docutils literal"><span class="pre">transient_view.get_top_widget()</span></tt> transient for
<tt class="docutils literal"><span class="pre">self.</span></tt><a class="reference internal" href="#gtkmvc.view.View.get_top_widget" title="gtkmvc.view.View.get_top_widget"><tt class="xref py py-meth docutils literal"><span class="pre">get_top_widget()</span></tt></a>.</p>
</dd></dl>

<dl class="method">
<dt id="gtkmvc.view.View.show">
<tt class="descname">show</tt><big>(</big><big>)</big><a class="headerlink" href="#gtkmvc.view.View.show" title="Permalink to this definition"></a></dt>
<dd><p>Call <cite>show()</cite> on each top widget or <cite>show_all()</cite> if only one is known. 
Otherwise does nothing.</p>
</dd></dl>

</dd></dl>

</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar">
        <div class="sphinxsidebarwrapper">
  <h4>Previous topic</h4>
  <p class="topless"><a href="model.html"
                        title="previous chapter">Model Classes</a></p>
  <h4>Next topic</h4>
  <p class="topless"><a href="controller.html"
                        title="next chapter">The Controller</a></p>
  <h3>This Page</h3>
  <ul class="this-page-menu">
    <li><a href="_sources/view.txt"
           rel="nofollow">Show Source</a></li>
  </ul>
<div id="searchbox" style="display: none">
  <h3>Quick search</h3>
    <form class="search" action="search.html" method="get">
      <input type="text" name="q" />
      <input type="submit" value="Go" />
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
    <p class="searchtip" style="font-size: 90%">
    Enter search terms or a module, class or function name.
    </p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             >index</a></li>
        <li class="right" >
          <a href="py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="controller.html" title="The Controller"
             >next</a> |</li>
        <li class="right" >
          <a href="model.html" title="Model Classes"
             >previous</a> |</li>
        <li><a href="index.html">GTK MVC 1.99.1 documentation</a> &raquo;</li> 
      </ul>
    </div>
    <div class="footer">
        &copy; Copyright 2010, Roberto Cavada.
      Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
    </div>
  </body>
</html>