Adding a graphical tool to design and analyze filters.
[debian/gnuradio] / gr-utils / src / python / pyqt_filter_firlpf.py
1 # -*- coding: utf-8 -*-
2
3 # Form implementation generated from reading ui file 'pyqt_filter_firlpf.ui'
4 #
5 # Created: Tue Aug 18 22:19:03 2009
6 #      by: PyQt4 UI code generator 4.4.4
7 #
8 # WARNING! All changes made in this file will be lost!
9
10 from PyQt4 import QtCore, QtGui
11
12 class Ui_firlpfForm(object):
13     def setupUi(self, firlpfForm):
14         firlpfForm.setObjectName("firlpfForm")
15         firlpfForm.resize(335, 300)
16         firlpfForm.setMinimumSize(QtCore.QSize(200, 0))
17         self.formLayout = QtGui.QFormLayout(firlpfForm)
18         self.formLayout.setFieldGrowthPolicy(QtGui.QFormLayout.AllNonFixedFieldsGrow)
19         self.formLayout.setObjectName("formLayout")
20         self.endofPassBandLabel = QtGui.QLabel(firlpfForm)
21         self.endofPassBandLabel.setObjectName("endofPassBandLabel")
22         self.formLayout.setWidget(0, QtGui.QFormLayout.LabelRole, self.endofPassBandLabel)
23         self.endofPassBandEdit = QtGui.QLineEdit(firlpfForm)
24         self.endofPassBandEdit.setObjectName("endofPassBandEdit")
25         self.formLayout.setWidget(0, QtGui.QFormLayout.FieldRole, self.endofPassBandEdit)
26         self.startofStopBandLabel = QtGui.QLabel(firlpfForm)
27         self.startofStopBandLabel.setObjectName("startofStopBandLabel")
28         self.formLayout.setWidget(1, QtGui.QFormLayout.LabelRole, self.startofStopBandLabel)
29         self.stopBandAttenLabel = QtGui.QLabel(firlpfForm)
30         self.stopBandAttenLabel.setObjectName("stopBandAttenLabel")
31         self.formLayout.setWidget(2, QtGui.QFormLayout.LabelRole, self.stopBandAttenLabel)
32         self.stopBandAttenEdit = QtGui.QLineEdit(firlpfForm)
33         self.stopBandAttenEdit.setObjectName("stopBandAttenEdit")
34         self.formLayout.setWidget(2, QtGui.QFormLayout.FieldRole, self.stopBandAttenEdit)
35         self.startofStopBandEdit = QtGui.QLineEdit(firlpfForm)
36         self.startofStopBandEdit.setObjectName("startofStopBandEdit")
37         self.formLayout.setWidget(1, QtGui.QFormLayout.FieldRole, self.startofStopBandEdit)
38
39         self.retranslateUi(firlpfForm)
40         QtCore.QMetaObject.connectSlotsByName(firlpfForm)
41
42     def retranslateUi(self, firlpfForm):
43         firlpfForm.setWindowTitle(QtGui.QApplication.translate("firlpfForm", "Form", None, QtGui.QApplication.UnicodeUTF8))
44         self.endofPassBandLabel.setText(QtGui.QApplication.translate("firlpfForm", "End of Pass Band (Hz)", None, QtGui.QApplication.UnicodeUTF8))
45         self.startofStopBandLabel.setText(QtGui.QApplication.translate("firlpfForm", "Start of Stop Band (Hz)", None, QtGui.QApplication.UnicodeUTF8))
46         self.stopBandAttenLabel.setText(QtGui.QApplication.translate("firlpfForm", "Stop Band Attenuation (dB)", None, QtGui.QApplication.UnicodeUTF8))
47