Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.057 X-Spam-Evidence: '*H*': 0.89; '*S*': 0.00; 'function:': 0.09; 'lambda:': 0.16; 'pyqt,': 0.16; 'skip:q 30': 0.16; 'subject:run': 0.16; 'all,': 0.19; 'widget': 0.19; 'question': 0.24; 'skip:" 40': 0.26; 'code:': 0.26; 'function': 0.29; 'leave': 0.29; 'code': 0.31; 'skip:s 70': 0.31; 'run': 0.32; 'but': 0.35; 'yours,': 0.36; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'signal': 0.60; 'such': 0.63; 'dear': 0.65; 'click': 0.77 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=pahlevanzadeh.org; s=default; h=Content-Transfer-Encoding:Mime-Version:Content-Type:Date:To:From:Subject:Message-ID; bh=u1cWKKuRSnv3fTDxr34AQWdnpJywqrDpfCqi555idD4=; b=J89xtehjvLNUm/xJqr9EJ/K92HAIqeKmQdyKGzU/Xve25osK4J45IhSWB2UhBIUfYfs8L2Wise/2x1ySud2HqnUH9MGzPmADGEr6yeEW9fbZzz+xTGr1RTl6rZqd+JXK0cuzCM6R2j9Xc/Ea9X8owtC7nMBjJK4kIcPhHe+3zzM=; Subject: When i leave a LineEdit widget and run slot From: Mohsen Pahlevanzadeh To: python-list@python.org Date: Fri, 13 Sep 2013 05:03:40 +0430 Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.4.4-4+b1 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - part7.royal-servers.com X-AntiAbuse: Original Domain - python.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - pahlevanzadeh.org X-Get-Message-Sender-Via: part7.royal-servers.com: authenticated_id: mohsen@pahlevanzadeh.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 26 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1379032438 news.xs4all.nl 15946 [2001:888:2000:d::a6]:47634 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:54090 Dear all, QtCore.QObject.connect(self.checkBox, QtCore.SIGNAL(_fromUtf8("clicked(bool)")), lambda: self.interfaceCodesConstructor.setFilterList(self,"name",self.lineEdit.text())) I code pyqt, I have the following code: /////////////////////// QtCore.QObject.connect(self.checkBox, QtCore.SIGNAL(_fromUtf8("clicked(bool)")), lambda: self.interfaceCodesConstructor.setFilterList(self,"name",self.lineEdit.text())) ////////////////////////// Abobe code causes When i click on checkbox, my function : setFilterList will be run. i need to run above function: "setFilterList(self,"name",self.lineEdit.text())" When i leave a LineEdit widget, But i don't know its signal. My question is : What's its signal when you leave a widget such as LineEdit? Yours, Mohsen