Mercurial > hg > Feedworm
view AddFeed.py @ 47:a8442c3487b5
add an option to Feed that allows loading an entry's link right away instead of displaying a feed's summary
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Sun, 16 May 2010 08:13:07 +0200 |
parents | bdd1296a4b8c |
children | 6eba4168fd54 |
line wrap: on
line source
from PyQt4 import QtGui from Ui_AddFeed import Ui_AddFeed class AddFeed(QtGui.QDialog): def __init__(self, session=None): QtGui.QWidget.__init__(self, None) self.session = session self.ui = Ui_AddFeed() self.ui.setupUi(self) self.ui.url.setFocus() def getUrl(self): text = self.ui.url.text() # the content of a QLineEdit is a QString, convert it to a Python string return str(text)