File: wx.TextCompleter.txt

package info (click to toggle)
wxpython4.0 4.0.4%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 211,112 kB
  • sloc: cpp: 888,355; python: 223,130; makefile: 52,087; ansic: 45,780; sh: 3,012; xml: 1,534; perl: 264
file content (172 lines) | stat: -rw-r--r-- 5,250 bytes parent folder | download
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
.. wxPython Phoenix documentation

   This file was generated by Phoenix's sphinx generator and associated
   tools, do not edit by hand.

   Copyright: (c) 2011-2018 by Total Control Software
   License:   wxWindows License

.. include:: headings.inc



.. _wx.TextCompleter:

==========================================================================================================================================
|phoenix_title|  **wx.TextCompleter**
==========================================================================================================================================

Base class for custom text completer objects.          

Custom completer objects used with :meth:`wx.TextEntry.AutoComplete`   must derive from this class and implement its pure virtual method returning the completions. You would typically use a custom completer when the total number of completions is too big for performance to be acceptable if all of them need to be returned at once but if they can be generated hierarchically, i.e. only the first component initially, then the second one after the user finished entering the first one and so on. 

When inheriting from this class you need to implement its two pure virtual methods. This allows to return the results incrementally and may or not be convenient depending on where do they come from. If you prefer to return all the completions at once, you should inherit from :ref:`wx.TextCompleterSimple`  instead. 

         



.. versionadded:: 2.9.2 
     







|

|class_hierarchy| Class Hierarchy
=================================

.. raw:: html

   <div id="toggleBlock" onclick="return toggleVisibility(this)" class="closed" style="cursor:pointer;">
   <img id="toggleBlock-trigger" src="_static/images/closed.png"/>
   Inheritance diagram for class <strong>TextCompleter</strong>:
   </div>
   <div id="toggleBlock-summary" style="display:block;"></div>
   <div id="toggleBlock-content" style="display:none;">
   <p class="graphviz">
   <center><img src="_static/images/inheritance/wx.TextCompleter_inheritance.png" alt="Inheritance diagram of TextCompleter" usemap="#dummy" class="inheritance"/></center>
   </div>
   <script type="text/javascript">toggleVisibilityOnLoad(document.getElementById('toggleBlock'))</script>
   <map id="dummy" name="dummy"> <area shape="rect" id="node1" href="wx.TextCompleter.html" title="wx.TextCompleter" alt="" coords="5,5,139,35"/> </map> 
   </p>

|


|sub_classes| Known Subclasses
==============================

:ref:`wx.TextCompleterSimple`

|


|method_summary| Methods Summary
================================

================================================================================ ================================================================================
:meth:`~wx.TextCompleter.GetNext`                                                Called to retrieve the next completion.
:meth:`~wx.TextCompleter.Start`                                                  Function called to start iteration over the completions for the given prefix.
================================================================================ ================================================================================


|


|property_summary| Properties Summary
=====================================

================================================================================ ================================================================================
:attr:`~wx.TextCompleter.Next`                                                   See :meth:`~wx.TextCompleter.GetNext`
================================================================================ ================================================================================


|


|api| Class API
===============


.. class:: wx.TextCompleter(object)

   Base class for custom text completer objects.



   .. method:: GetNext(self)

      Called to retrieve the next completion.                  

      All completions returned by this function should start with the prefix passed to the last call to :meth:`Start` . 

      Notice that, as :meth:`Start` , this method is called from a worker thread context under MSW. 

                

      :rtype: `string`







      :returns: 

         The next completion or an empty string to indicate that there are no more of them.   








   .. method:: Start(self, prefix)

      Function called to start iteration over the completions for the given prefix.                  

      This function could start a database query, for example, if the results are read from a database. 

      Notice that under some platforms (currently MSW only) it is called from another thread context and so the appropriate synchronization mechanism should be used to access any data also used by the main UI thread. 




      :param `prefix`: The prefix for which completions are to be generated.   
      :type `prefix`: string






      :rtype: `bool`



                  



      :returns: 

         ``True`` to continue with calling :meth:`GetNext`   or ``False`` to indicate that there are no matches and :meth:`GetNext`   shouldn't be called at all.   








   .. attribute:: Next

      See :meth:`~wx.TextCompleter.GetNext`