Adding a graphical tool to design and analyze filters.
[debian/gnuradio] / gr-utils / src / python / pyqt_filter_firhpf.py
1 # -*- coding: utf-8 -*-
2
3 # Form implementation generated from reading ui file 'pyqt_filter_firhpf.ui'
4 #
5 # Created: Tue Aug 18 22:19:04 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_firhpfForm(object):
13     def setupUi(self, firhpfForm):
14         firhpfForm.setObjectName("firhpfForm")
15         firhpfForm.resize(335, 300)
16         firhpfForm.setMinimumSize(QtCore.QSize(200, 0))
17         self.formLayout = QtGui.QFormLayout(firhpfForm)
18         self.formLayout.setFieldGrowthPolicy(QtGui.QFormLayout.AllNonFixedFieldsGrow)
19         self.formLayout.setObjectName("formLayout")
20         self.endofPassBandLabel = QtGui.QLabel(firhpfForm)
21         self.endofPassBandLabel.setObjectName("endofPassBandLabel")
22         self.formLayout.setWidget(0, QtGui.QFormLayout.LabelRole, self.endofPassBandLabel)
23         self.endofPassBandEdit = QtGui.QLineEdit(firhpfForm)
24         self.endofPassBandEdit.setObjectName("endofPassBandEdit")
25         self.formLayout.setWidget(0, QtGui.QFormLayout.FieldRole, self.endofPassBandEdit)
26         self.startofStopBandLabel = QtGui.QLabel(firhpfForm)
27         self.startofStopBandLabel.setObjectName("startofStopBandLabel")
28         self.formLayout.setWidget(1, QtGui.QFormLayout.LabelRole, self.startofStopBandLabel)
29         self.startofStopBandEdit = QtGui.QLineEdit(firhpfForm)
30         self.startofStopBandEdit.setObjectName("startofStopBandEdit")
31         self.formLayout.setWidget(1, QtGui.QFormLayout.FieldRole, self.startofStopBandEdit)
32         self.stopBandAttenLabel = QtGui.QLabel(firhpfForm)
33         self.stopBandAttenLabel.setObjectName("stopBandAttenLabel")
34         self.formLayout.setWidget(2, QtGui.QFormLayout.LabelRole, self.stopBandAttenLabel)
35         self.stopBandAttenEdit = QtGui.QLineEdit(firhpfForm)
36         self.stopBandAttenEdit.setObjectName("stopBandAttenEdit")
37         self.formLayout.setWidget(2, QtGui.QFormLayout.FieldRole, self.stopBandAttenEdit)
38
39         self.retranslateUi(firhpfForm)
40         QtCore.QMetaObject.connectSlotsByName(firhpfForm)
41
42     def retranslateUi(self, firhpfForm):
43         firhpfForm.setWindowTitle(QtGui.QApplication.translate("firhpfForm", "Form", None, QtGui.QApplication.UnicodeUTF8))
44         self.endofPassBandLabel.setText(QtGui.QApplication.translate("firhpfForm", "End of Stop Band (Hz)", None, QtGui.QApplication.UnicodeUTF8))
45         self.startofStopBandLabel.setText(QtGui.QApplication.translate("firhpfForm", "Start of Pass Band (Hz)", None, QtGui.QApplication.UnicodeUTF8))
46         self.stopBandAttenLabel.setText(QtGui.QApplication.translate("firhpfForm", "Stop Band Attenuation (dB)", None, QtGui.QApplication.UnicodeUTF8))
47