-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui_vector_selectbypoint.py
42 lines (35 loc) · 2 KB
/
ui_vector_selectbypoint.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'ui_vector_selectbypoint.ui'
#
# Created: Tue Apr 15 19:02:09 2014
# by: PyQt4 UI code generator 4.9.1
#
# 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_vector_selectbypoint(object):
def setupUi(self, vector_selectbypoint):
vector_selectbypoint.setObjectName(_fromUtf8("vector_selectbypoint"))
vector_selectbypoint.resize(400, 133)
self.buttonBox = QtGui.QDialogButtonBox(vector_selectbypoint)
self.buttonBox.setGeometry(QtCore.QRect(30, 90, 341, 32))
self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
self.buttonBox.setObjectName(_fromUtf8("buttonBox"))
self.txtFeedback = QtGui.QTextBrowser(vector_selectbypoint)
self.txtFeedback.setGeometry(QtCore.QRect(10, 10, 381, 51))
self.txtFeedback.setObjectName(_fromUtf8("txtFeedback"))
self.chkActivate = QtGui.QCheckBox(vector_selectbypoint)
self.chkActivate.setGeometry(QtCore.QRect(10, 70, 89, 31))
self.chkActivate.setObjectName(_fromUtf8("chkActivate"))
self.retranslateUi(vector_selectbypoint)
QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), vector_selectbypoint.accept)
QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), vector_selectbypoint.reject)
QtCore.QMetaObject.connectSlotsByName(vector_selectbypoint)
def retranslateUi(self, vector_selectbypoint):
vector_selectbypoint.setWindowTitle(QtGui.QApplication.translate("vector_selectbypoint", "vector_selectbypoint", None, QtGui.QApplication.UnicodeUTF8))
self.chkActivate.setText(QtGui.QApplication.translate("vector_selectbypoint", "Activate\n"
" (Check)", None, QtGui.QApplication.UnicodeUTF8))