# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file '/Users/epy/Desktop/code/compass/compass_ui.ui'
#
# Created: Thu Nov  4 13:04:38 2010
#      by: PyQt4 UI code generator 4.8
#
# 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_Form(object):
    def setupUi(self, Form):
        Form.setObjectName(_fromUtf8("Form"))
        Form.resize(400, 300)
        self.verticalLayout = QtGui.QVBoxLayout(Form)
        self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
        self.mainLayout = QtGui.QVBoxLayout()
        self.mainLayout.setObjectName(_fromUtf8("mainLayout"))
        self.lineEdit = QtGui.QLineEdit(Form)
        self.lineEdit.setObjectName(_fromUtf8("lineEdit"))
        self.mainLayout.addWidget(self.lineEdit)
        self.verticalLayout.addLayout(self.mainLayout)
        self.horizontalLayout = QtGui.QHBoxLayout()
        self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout"))
        self.rotationAngleLabel = QtGui.QLabel(Form)
        self.rotationAngleLabel.setObjectName(_fromUtf8("rotationAngleLabel"))
        self.horizontalLayout.addWidget(self.rotationAngleLabel)
        self.rotationAngleSpinBox = QtGui.QSpinBox(Form)
        self.rotationAngleSpinBox.setObjectName(_fromUtf8("rotationAngleSpinBox"))
        self.horizontalLayout.addWidget(self.rotationAngleSpinBox)
        self.verticalLayout.addLayout(self.horizontalLayout)

        self.retranslateUi(Form)
        QtCore.QMetaObject.connectSlotsByName(Form)

    def retranslateUi(self, Form):
        Form.setWindowTitle(QtGui.QApplication.translate("Form", "Form", None, QtGui.QApplication.UnicodeUTF8))
        self.rotationAngleLabel.setText(QtGui.QApplication.translate("Form", "Rotation Angle", None, QtGui.QApplication.UnicodeUTF8))

