src/eric7/UI/FindFileWidget.py

branch
eric7
changeset 10433
328f3ec4b77a
parent 10430
e440aaf179ce
child 10435
c712d09cc839
equal deleted inserted replaced
10432:2fe91fe443dd 10433:328f3ec4b77a
351 """ 351 """
352 Private slot to handle the editTextChanged signal of the find 352 Private slot to handle the editTextChanged signal of the find
353 text combo. 353 text combo.
354 354
355 @param text (ignored) 355 @param text (ignored)
356 @type str
356 """ 357 """
357 self.__enableFindButton() 358 self.__enableFindButton()
358 359
359 @pyqtSlot(str) 360 @pyqtSlot(str)
360 def on_replacetextCombo_editTextChanged(self, text): 361 def on_replacetextCombo_editTextChanged(self, text):
361 """ 362 """
362 Private slot to handle the editTextChanged signal of the replace 363 Private slot to handle the editTextChanged signal of the replace
363 text combo. 364 text combo.
364 365
365 @param text (ignored) 366 @param text (ignored)
367 @type str
366 """ 368 """
367 self.__enableFindButton() 369 self.__enableFindButton()
368 370
369 @pyqtSlot(str) 371 @pyqtSlot(str)
370 def on_dirPicker_editTextChanged(self, text): 372 def on_dirPicker_editTextChanged(self, text):
371 """ 373 """
372 Private slot to handle the textChanged signal of the directory 374 Private slot to handle the textChanged signal of the directory
373 picker. 375 picker.
374 376
375 @param text (ignored) 377 @param text (ignored)
378 @type str
376 """ 379 """
377 self.__enableFindButton() 380 self.__enableFindButton()
378 381
379 @pyqtSlot() 382 @pyqtSlot()
380 def on_projectButton_clicked(self): 383 def on_projectButton_clicked(self):
408 def on_filterEdit_textEdited(self, text): 411 def on_filterEdit_textEdited(self, text):
409 """ 412 """
410 Private slot to handle the textChanged signal of the file filter edit. 413 Private slot to handle the textChanged signal of the file filter edit.
411 414
412 @param text (ignored) 415 @param text (ignored)
416 @type str
413 """ 417 """
414 self.__enableFindButton() 418 self.__enableFindButton()
415 419
416 @pyqtSlot() 420 @pyqtSlot()
417 def __enableFindButton(self): 421 def __enableFindButton(self):

eric ide

mercurial