| | |
Another PyQt Question (Easier this time)
Thread Solved |
•
•
Join Date: Dec 2006
Posts: 1,197
Reputation:
Solved Threads: 341
A Google codesearch came up with only the do it yourself, the gist of which used textChanged. This snippet was in one of the hits
Python Syntax (Toggle Plain Text)
searchLabel = QtGui.QLabel(" Search", self) hLayout.addWidget(searchLabel) self.searchText = QtGui.QLineEdit() searchLabel.setBuddy(self.searchText) hLayout.addWidget(self.searchText) self.treeWidget = self.createTreeWidget() vLayout.addWidget(self.treeWidget) self.connect(self.searchText, QtCore.SIGNAL('textChanged(QString)'), self.treeWidget.searchItemName)
Last edited by woooee; Aug 28th, 2008 at 3:56 pm.
•
•
Join Date: Aug 2008
Posts: 19
Reputation:
Solved Threads: 2
Hmm well it turned out a little harder than I was expecting, I am using a QListWidget, I am trying to search for items in the list, but I have a problem, I plan on clearing the list and showing the ones that match, but If i clear the list I'll delete the existing entries, should I put them in a list, dictionary, etc...?
•
•
Join Date: Dec 2006
Posts: 1,197
Reputation:
Solved Threads: 341
In pseudo-code it would be something like this assuming a class format (ignoring case for now) I thought that someone would have posted code to do this, but coding this could become so funky that no one wants to put it out there on the internet I guess.
Python Syntax (Toggle Plain Text)
def __init__(self): self.orig_list=[ "Original", "words", "you", "want", "to", "test"] self.new_list = orig_list[:] ## first pass - to be used by test_list def compare_when_text_changed(): test_list=self.new_list[:] self.new_list=[] for word in test_list: if word.startswith(self.entered_in_qt_edit_box): self.new_list.append(word) ## self.new_list now contains the words that match so far ## update list box from self.new_list ## not necessary to return anything since self. is used.
Last edited by woooee; Aug 29th, 2008 at 8:33 pm.
![]() |
Other Threads in the Python Forum
- Previous Thread: help with file reading
- Next Thread: reading in multiple arrays from a single file
Views: 670 | Replies: 5
| Thread Tools | Search this Thread |
Tag cloud for Python
application array beginner c++ c/c++ change character class client code command convert count create csv ctypes database dictionary django dll error examples excel exe extensions fdlib file float format framework ftp function graphics gui homework image images import input leftmouse library line linux list lists logging loop loops microcontroller mouse mousewheel mysql mysqldb number numbers output parse parsing path port prime processing program programming py2exe pygame pygtk pyqt python random raw_input recursion recursive redirect remote scripting scrolledtext server socket ssh stdout string strings syntax table terminal text thread threading tkinter transparency tuple tutorial ubuntu unicode variable variables web windows wxpython






