Created
November 2, 2012 14:57
-
-
Save nicolasblanco/4001841 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [$]nicolas@MacBook-Air-de-Nicolas-Blanco:[git:master] /Users/nicolas/projects/weboob-> ack urlEdit /usr/local/Cellar/python/2.7.3/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/weboob-0.e-py2.7.egg/weboob/applications/qvideoob | |
| /usr/local/Cellar/python/2.7.3/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/weboob-0.e-py2.7.egg/weboob/applications/qvideoob/main_window.py | |
| 47: self.connect(self.ui.urlEdit, SIGNAL("returnPressed()"), self.openURL) | |
| 74: self.ui.urlEdit.setEnabled(False) | |
| 77: self.ui.urlEdit.setEnabled(True) | |
| 126: url = unicode(self.ui.urlEdit.text()) | |
| 136: self.ui.urlEdit.clear() | |
| /usr/local/Cellar/python/2.7.3/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/weboob-0.e-py2.7.egg/weboob/applications/qvideoob/ui/main_window_ui.py | |
| 96: self.urlEdit = QtGui.QLineEdit(self.frame_3) | |
| 97: self.urlEdit.setObjectName(_fromUtf8("urlEdit")) | |
| 98: self.horizontalLayout.addWidget(self.urlEdit) | |
| /usr/local/Cellar/python/2.7.3/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/weboob-0.e-py2.7.egg/weboob/applications/qvideoob/video.py | |
| 35: self.ui.urlEdit.setText(video.url) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| # Form implementation generated from reading ui file 'video.ui' | |
| # | |
| # Created: Tue Oct 30 17:48:40 2012 | |
| # by: PyQt4 UI code generator 4.9.4 | |
| # | |
| # WARNING! All changes made in this file will be lost! | |
| from PyQt4 import QtCore, QtGui | |
| try: | |
| _fromUtf8 = QtCore.QString.fromUtf8 | |
| except AttributeError: | |
| _fromUtf8 = lambda s: s | |
| class Ui_Video(object): | |
| def setupUi(self, Video): | |
| Video.setObjectName(_fromUtf8("Video")) | |
| Video.resize(647, 404) | |
| self.verticalLayout = QtGui.QVBoxLayout(Video) | |
| self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) | |
| self.titleLabel = QtGui.QLabel(Video) | |
| font = QtGui.QFont() | |
| font.setPointSize(12) | |
| font.setBold(True) | |
| font.setWeight(75) | |
| self.titleLabel.setFont(font) | |
| self.titleLabel.setFrameShape(QtGui.QFrame.Box) | |
| self.titleLabel.setFrameShadow(QtGui.QFrame.Raised) | |
| self.titleLabel.setAlignment(QtCore.Qt.AlignCenter) | |
| self.titleLabel.setObjectName(_fromUtf8("titleLabel")) | |
| self.verticalLayout.addWidget(self.titleLabel) | |
| self.frame = QtGui.QFrame(Video) | |
| sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.MinimumExpanding) | |
| sizePolicy.setHorizontalStretch(0) | |
| sizePolicy.setVerticalStretch(0) | |
| sizePolicy.setHeightForWidth(self.frame.sizePolicy().hasHeightForWidth()) | |
| self.frame.setSizePolicy(sizePolicy) | |
| self.frame.setFrameShape(QtGui.QFrame.StyledPanel) | |
| self.frame.setFrameShadow(QtGui.QFrame.Sunken) | |
| self.frame.setObjectName(_fromUtf8("frame")) | |
| self.verticalLayout_2 = QtGui.QVBoxLayout(self.frame) | |
| self.verticalLayout_2.setObjectName(_fromUtf8("verticalLayout_2")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment