@@ -1,94 +1,94 | |||
|
1 | 1 | # -*- coding: utf-8 -*- |
|
2 | 2 | |
|
3 | 3 | # Form implementation generated from reading ui file '/home/roj-idl71/SignalChain/initwindowv2.ui' |
|
4 | 4 | # |
|
5 | 5 | # Created: Wed Mar 6 15:32:39 2013 |
|
6 | 6 | # by: PyQt4 UI code generator 4.8.6 |
|
7 | 7 | # |
|
8 | 8 | # WARNING! All changes made in this file will be lost! |
|
9 | 9 | |
|
10 | 10 | from PyQt4 import QtCore, QtGui |
|
11 | 11 | |
|
12 | 12 | try: |
|
13 | 13 | _fromUtf8 = QtCore.QString.fromUtf8 |
|
14 | 14 | except AttributeError: |
|
15 | 15 | _fromUtf8 = lambda s: s |
|
16 | 16 | |
|
17 | 17 | import os |
|
18 | 18 | from schainpy.gui.figures import tools |
|
19 | 19 | |
|
20 | INITIAL_MSG = "Signal Chain GUI - v2.1" | |
|
20 | INITIAL_MSG = "Signal Chain GUI - v2.1.2" | |
|
21 | 21 | FIGURES_PATH = tools.get_path() |
|
22 | 22 | |
|
23 | 23 | class Ui_InitWindow(object): |
|
24 | 24 | def setupUi(self, Dialog): |
|
25 | 25 | Dialog.setObjectName(_fromUtf8("Dialog")) |
|
26 | 26 | Dialog.resize(652, 496) |
|
27 | 27 | Dialog.setWindowTitle(QtGui.QApplication.translate("Dialog", "Dialog", None, QtGui.QApplication.UnicodeUTF8)) |
|
28 | 28 | self.gridLayout = QtGui.QGridLayout(Dialog) |
|
29 | 29 | self.gridLayout.setObjectName(_fromUtf8("gridLayout")) |
|
30 | 30 | self.verticalLayout_3 = QtGui.QVBoxLayout() |
|
31 | 31 | self.verticalLayout_3.setObjectName(_fromUtf8("verticalLayout_3")) |
|
32 | 32 | self.verticalLayout_4 = QtGui.QVBoxLayout() |
|
33 | 33 | self.verticalLayout_4.setObjectName(_fromUtf8("verticalLayout_4")) |
|
34 | 34 | self.label_3 = QtGui.QLabel(Dialog) |
|
35 | 35 | font = QtGui.QFont() |
|
36 | 36 | font.setFamily(_fromUtf8("Cambria")) |
|
37 | 37 | font.setPointSize(22) |
|
38 | 38 | font.setBold(False) |
|
39 | 39 | font.setWeight(50) |
|
40 | 40 | self.label_3.setFont(font) |
|
41 | 41 | self.label_3.setText(QtGui.QApplication.translate("Dialog", INITIAL_MSG, None, QtGui.QApplication.UnicodeUTF8)) |
|
42 | 42 | self.label_3.setObjectName(_fromUtf8("label_3")) |
|
43 | 43 | self.verticalLayout_4.addWidget(self.label_3) |
|
44 | 44 | self.line_2 = QtGui.QFrame(Dialog) |
|
45 | 45 | self.line_2.setFrameShape(QtGui.QFrame.HLine) |
|
46 | 46 | self.line_2.setFrameShadow(QtGui.QFrame.Sunken) |
|
47 | 47 | self.line_2.setObjectName(_fromUtf8("line_2")) |
|
48 | 48 | self.verticalLayout_4.addWidget(self.line_2) |
|
49 | 49 | self.label_4 = QtGui.QLabel(Dialog) |
|
50 | 50 | self.label_4.setText(_fromUtf8("")) |
|
51 | 51 | self.label_4.setPixmap(QtGui.QPixmap(_fromUtf8( os.path.join(FIGURES_PATH,"w.jpg") ))) |
|
52 | 52 | self.label_4.setScaledContents(True) |
|
53 | 53 | self.label_4.setObjectName(_fromUtf8("label_4")) |
|
54 | 54 | self.verticalLayout_4.addWidget(self.label_4) |
|
55 | 55 | self.verticalLayout_3.addLayout(self.verticalLayout_4) |
|
56 | 56 | self.horizontalLayout_3 = QtGui.QHBoxLayout() |
|
57 | 57 | self.horizontalLayout_3.setObjectName(_fromUtf8("horizontalLayout_3")) |
|
58 | 58 | self.horizontalLayout_4 = QtGui.QHBoxLayout() |
|
59 | 59 | self.horizontalLayout_4.setObjectName(_fromUtf8("horizontalLayout_4")) |
|
60 | 60 | spacerItem = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) |
|
61 | 61 | self.horizontalLayout_4.addItem(spacerItem) |
|
62 | 62 | self.ExitBtn = QtGui.QPushButton(Dialog) |
|
63 | 63 | self.ExitBtn.setText(QtGui.QApplication.translate("Dialog", "Exit", None, QtGui.QApplication.UnicodeUTF8)) |
|
64 | 64 | self.ExitBtn.setObjectName(_fromUtf8("ExitBtn")) |
|
65 | 65 | self.horizontalLayout_4.addWidget(self.ExitBtn) |
|
66 | 66 | self.ContinueBtn = QtGui.QPushButton(Dialog) |
|
67 | 67 | self.ContinueBtn.setText(QtGui.QApplication.translate("Dialog", "Continue", None, QtGui.QApplication.UnicodeUTF8)) |
|
68 | 68 | self.ContinueBtn.setObjectName(_fromUtf8("ContinueBtn")) |
|
69 | 69 | self.horizontalLayout_4.addWidget(self.ContinueBtn) |
|
70 | 70 | spacerItem1 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) |
|
71 | 71 | self.horizontalLayout_4.addItem(spacerItem1) |
|
72 | 72 | self.horizontalLayout_3.addLayout(self.horizontalLayout_4) |
|
73 | 73 | self.verticalLayout_3.addLayout(self.horizontalLayout_3) |
|
74 | 74 | self.gridLayout.addLayout(self.verticalLayout_3, 0, 0, 1, 1) |
|
75 | 75 | |
|
76 | 76 | self.retranslateUi(Dialog) |
|
77 | 77 | QtCore.QMetaObject.connectSlotsByName(Dialog) |
|
78 | 78 | |
|
79 | 79 | def retranslateUi(self, Dialog): |
|
80 | 80 | pass |
|
81 | 81 | |
|
82 | 82 | |
|
83 | 83 | if __name__ == "__main__": |
|
84 | 84 | import sys |
|
85 | 85 | app = QtGui.QApplication(sys.argv) |
|
86 | 86 | Dialog = QtGui.QDialog() |
|
87 | 87 | ui = Ui_InitWindow() |
|
88 | 88 | ui.setupUi(Dialog) |
|
89 | 89 | Dialog.show() |
|
90 | 90 | sys.exit(app.exec_()) |
|
91 | 91 | |
|
92 | 92 | |
|
93 | 93 | |
|
94 | 94 |
@@ -1,31 +1,31 | |||
|
1 | 1 | ''' |
|
2 | 2 | Created on Jul 16, 2014 |
|
3 | 3 | |
|
4 | 4 | @author: roj-idl71 |
|
5 | 5 | ''' |
|
6 | 6 | |
|
7 | 7 | from distutils.core import setup, Extension |
|
8 | 8 | |
|
9 | 9 | setup(name="schainpy", |
|
10 |
version="2.1. |
|
|
10 | version="2.1.2", | |
|
11 | 11 | description="Python tools to read, write and process Jicamarca data", |
|
12 | 12 | author="Miguel Urco", |
|
13 | 13 | author_email="miguel.urco@jro.igp.gob.pe", |
|
14 | 14 | url="http://jro.igp.gob.pe", |
|
15 | 15 | packages = {'schainpy', |
|
16 | 16 | 'schainpy.model', |
|
17 | 17 | 'schainpy.model.data', |
|
18 | 18 | 'schainpy.model.graphics', |
|
19 | 19 | 'schainpy.model.io', |
|
20 | 20 | 'schainpy.model.proc', |
|
21 | 21 | 'schainpy.model.utils', |
|
22 | 22 | 'schainpy.gui', |
|
23 | 23 | 'schainpy.gui.figures', |
|
24 | 24 | 'schainpy.gui.viewcontroller', |
|
25 | 25 | 'schainpy.gui.viewer', |
|
26 | 26 | 'schainpy.gui.viewer.windows'}, |
|
27 | 27 | py_modules=['schainpy.serializer.DataTranslate', |
|
28 | 28 | 'schainpy.serializer.JROSerializer'], |
|
29 | 29 | package_data={'schainpy.gui.figures': ['*.jpg', '*.jpeg', '*.png', '*.gif']}, |
|
30 | 30 | include_package_data=True, |
|
31 | 31 | scripts =['schainpy/gui/schainGUI']) No newline at end of file |
General Comments 0
You need to be logged in to leave comments.
Login now